:root {
  --a11y-bg: #01030f;
  --a11y-violet: #140c3d;
  --a11y-violet-dark: #08051a;
  --a11y-ink: #f7fbff;
  --a11y-soft: rgba(247, 251, 255, 0.78);
  --a11y-muted: rgba(197, 206, 231, 0.62);
  --a11y-line: rgba(247, 251, 255, 0.15);
  --a11y-line-soft: rgba(247, 251, 255, 0.09);
  --a11y-panel: #071024;
  --a11y-panel-deep: #050b1b;
  --a11y-black: #101116;


  --a11y-lime: #b9c85a;
  --a11y-lime-hover: #c7d765;
  --a11y-blue: #4ea8ff;
  --a11y-red: #ff4d4d;


  --a11y-font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;


  --a11y-hero-left: clamp(44px, 5.5vw, 96px);
  --a11y-hero-right: clamp(28px, 4vw, 72px);
  --a11y-hero-copy-width: 1280px;


  --a11y-cut-a: 86px;
  --a11y-cut-b: 64px;
  --a11y-cut-c: 38px;


  --a11y-preview-bottom-space: clamp(132px, 12vw, 220px);
}


html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--a11y-bg);
  color: var(--a11y-ink);
  font-family: var(--a11y-font);
}


.a11y-main,
.a11y-main * {
  box-sizing: border-box;
}


.a11y-main {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--a11y-bg);
  color: var(--a11y-ink);
  font-family: var(--a11y-font);
  cursor: default;
}


.a11y-main :where(h1, h2, h3, p, span, small, strong, em, li, label) {
  cursor: default;
}


.a11y-main :where(a, button, [role="button"]) {
  cursor: pointer;
}


.a11y-hero {
  isolation: isolate;
  position: relative;
  width: 100%;
  min-height: calc(100svh - var(--cb-header-offset, 0px));
  padding:
    calc(var(--cb-header-offset, 0px) + clamp(34px, 3.5vw, 58px))
    0
    clamp(42px, 4vw, 72px);
  background: var(--a11y-violet);
  color: var(--a11y-ink);
  overflow: hidden;
}


.a11y-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 118px;
  z-index: 0;
  background: var(--a11y-bg);
  clip-path: polygon(
    0 var(--a11y-cut-a),
    25% var(--a11y-cut-a),
    25% var(--a11y-cut-b),
    50% var(--a11y-cut-b),
    50% var(--a11y-cut-c),
    75% var(--a11y-cut-c),
    75% 0,
    100% 0,
    100% 100%,
    0 100%
  );
}


.a11y-hero-shell {
  position: relative;
  z-index: 1;
  width: calc(100vw - var(--a11y-hero-left) - var(--a11y-hero-right));
  max-width: none;
  margin-left: var(--a11y-hero-left);
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(0, var(--a11y-hero-copy-width));
  gap: 0;
  align-items: start;
}


.a11y-hero-copy {
  min-width: 0;
  width: 100%;
  max-width: var(--a11y-hero-copy-width);
}


.a11y-kicker {
  width: fit-content;
  min-height: 54px;
  margin: 0 0 clamp(32px, 3vw, 46px);
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--a11y-black);
  color: var(--a11y-ink);
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.022em;
  white-space: nowrap;
}


.a11y-title {
  width: 100%;
  max-width: 1280px;
  margin: 0;
  color: var(--a11y-ink);
  font-size: clamp(66px, 7vw, 118px);
  line-height: 0.93;
  font-weight: 430;
  letter-spacing: -0.082em;
  text-wrap: balance;
}


.a11y-hero-lower {
  width: min(1040px, 100%);
  margin-top: clamp(34px, 3.4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}


.a11y-lede {
  max-width: 720px;
  margin: 0;
  color: rgba(247, 251, 255, 0.88);
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.27;
  font-weight: 400;
  letter-spacing: -0.045em;
}


.a11y-hero-actions {
  min-width: 260px;
  display: grid;
  gap: 10px;
  justify-items: stretch;
}


.a11y-primary-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--a11y-lime);
  border-radius: 4px;
  background: var(--a11y-lime);
  color: #050711;
  font-family: var(--a11y-font);
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}


.a11y-primary-link:hover,
.a11y-primary-link:focus-visible {
  background: var(--a11y-lime-hover);
  border-color: var(--a11y-lime-hover);
  color: #050711;
  transform: translateY(-2px);
  outline: none;
}


.a11y-plan-note {
  color: rgba(197, 206, 231, 0.56);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.018em;
  text-align: center;
}


.a11y-preview-stage {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 96px));
  margin:
    clamp(64px, 6vw, 96px)
    auto
    var(--a11y-preview-bottom-space);
  overflow: visible;
}


.a11y-preview-frame {
  --a11y-preview-y: 96px;
  --a11y-preview-scale: 0.94;
  --a11y-preview-opacity: 0.74;


  width: 100%;
  opacity: var(--a11y-preview-opacity);
  transform:
    translate3d(0, var(--a11y-preview-y), 0)
    scale(var(--a11y-preview-scale));
  transform-origin: center top;
  will-change: transform, opacity;
}


.a11y-window {
  width: 100%;
  background: var(--a11y-panel);
  overflow: hidden;
}


.a11y-window-bar {
  min-height: 58px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: #081127;
}


.a11y-window-dots {
  display: flex;
  gap: 8px;
}


.a11y-window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 4px;
  background: #ff5f57;
}


.a11y-window-dots span:nth-child(2) {
  background: rgba(247, 251, 255, 0.56);
}


.a11y-window-dots span:nth-child(3) {
  background: var(--a11y-lime);
}


.a11y-window-title {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}


.a11y-window-title span {
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  color: var(--a11y-lime);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}


.a11y-window-title strong {
  min-width: 0;
  overflow: hidden;
  color: rgba(247, 251, 255, 0.78);
  font-size: 12px;
  line-height: 1;
  font-weight: 560;
  letter-spacing: -0.015em;
  white-space: nowrap;
  text-overflow: ellipsis;
}


.a11y-window-body {
  min-height: 660px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 16px;
  background: var(--a11y-panel);
}


.a11y-window-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 16px;
  align-items: stretch;
}


.a11y-window-head span,
.a11y-panel-head span {
  color: var(--a11y-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.a11y-window-head h2 {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--a11y-ink);
  font-size: clamp(22px, 2vw, 42px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.07em;
}


.a11y-score {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  background: rgba(185, 200, 90, 0.07);
}


.a11y-score span {
  color: var(--a11y-lime);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.a11y-score strong {
  color: var(--a11y-ink);
  font-size: 42px;
  line-height: 1;
  font-weight: 560;
  letter-spacing: -0.06em;
}


.a11y-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 12px;
}


.a11y-page-panel,
.a11y-priority-panel,
.a11y-keyboard-panel,
.a11y-health-panel {
  min-width: 0;
  background: rgba(247, 251, 255, 0.03);
  overflow: hidden;
}


.a11y-page-panel {
  min-height: 396px;
  display: grid;
  grid-template-rows: auto 1fr;
}


.a11y-priority-panel,
.a11y-keyboard-panel,
.a11y-health-panel {
  min-height: 150px;
}


.a11y-panel-head {
  min-height: 52px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}


.a11y-panel-head strong {
  color: var(--a11y-muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 650;
}


.a11y-page-visual {
  min-height: 344px;
  height: 100%;
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  
}


.a11y-page-top {
  min-height: 34px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 84px;
  gap: 12px;
  align-items: center;
  background: rgba(247, 251, 255, 0.045);
}


.a11y-page-top i {
  height: 8px;
  display: block;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.22);
}


.a11y-page-top i:nth-child(2) {
  background: rgba(78, 168, 255, 0.32);
}


.a11y-page-layout {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  min-height: 286px;
}


.a11y-page-sidebar {
  padding: 18px 14px;
  display: grid;
  align-content: start;
  gap: 13px;
  background: rgba(247, 251, 255, 0.04);
}


.a11y-page-sidebar span {
  height: 13px;
  display: block;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.14);
}


.a11y-page-sidebar span:nth-child(1) {
  width: 84%;
  background: rgba(185, 200, 90, 0.56);
}


.a11y-page-sidebar span:nth-child(2) {
  width: 64%;
}


.a11y-page-sidebar span:nth-child(3) {
  width: 74%;
}


.a11y-page-sidebar span:nth-child(4) {
  width: 52%;
}


.a11y-page-content {
  display: grid;
  grid-template-rows: minmax(118px, 0.8fr) minmax(88px, 0.72fr) auto;
  gap: 14px;
}


.a11y-page-hero-card {
  position: relative;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: rgba(247, 251, 255, 0.055);
  overflow: hidden;
}


.a11y-page-hero-card strong,
.a11y-page-hero-card span {
  display: block;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.18);
}


.a11y-page-hero-card strong {
  width: 52%;
  height: 18px;
}


.a11y-page-hero-card span {
  height: 12px;
}


.a11y-page-hero-card span:nth-of-type(1) {
  width: 76%;
}


.a11y-page-hero-card span:nth-of-type(2) {
  width: 44%;
  background: rgba(247, 251, 255, 0.10);
}


.a11y-page-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 14px;
}


.a11y-image-block,
.a11y-form-block {
  position: relative;
  min-height: 92px;
  background: rgba(247, 251, 255, 0.045);
  overflow: hidden;
}


.a11y-image-block::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(78, 168, 255, 0.26), rgba(185, 200, 90, 0.16));
}


.a11y-form-block {
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 10px;
}


.a11y-form-block span {
  height: 12px;
  display: block;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.14);
}


.a11y-form-block span:nth-child(1) {
  width: 40%;
}


.a11y-form-block span:nth-child(2) {
  width: 86%;
  height: 22px;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.09);
}


.a11y-form-block span:nth-child(3) {
  width: 62%;
}


.a11y-focus-path {
  min-height: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}


.a11y-focus-path span {
  display: block;
  border: 0px solid rgba(78, 168, 255, 0.34);
  background: rgba(78, 168, 255, 0.06);
}


.a11y-focus-path span:nth-child(2) {
  border-color: rgba(185, 200, 90, 0.72);
  background: rgba(185, 200, 90, 0.10);
}


.a11y-issue-pin {
  position: absolute;
  z-index: 3;
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  background: rgba(255, 77, 77, 0.96);
  color: #ffffff;
  
}


.a11y-issue-pin em {
  font-size: 11px;
  line-height: 1;
  font-style: normal;
  font-weight: 760;
  letter-spacing: -0.01em;
  white-space: nowrap;
}


.a11y-issue-pin--contrast {
  right: 24px;
  top: 24px;
}


.a11y-issue-pin--alt {
  left: 14px;
  bottom: 14px;
}


.a11y-issue-pin--label {
  right: 14px;
  top: 14px;
}


.a11y-priority-list {
  padding: 0 15px 15px;
  display: grid;
  gap: 10px;
}


.a11y-priority-row {
  min-height: 56px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  background: rgba(247, 251, 255, 0.035);
}


.a11y-priority-row.is-hot {
  background: rgba(78, 168, 255, 0.10);
}


.a11y-priority-row span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 251, 255, 0.06);
  color: var(--a11y-blue);
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.06em;
}


.a11y-priority-row strong {
  min-width: 0;
  overflow: hidden;
  color: var(--a11y-ink);
  font-size: 13px;
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: -0.018em;
  white-space: nowrap;
  text-overflow: ellipsis;
}


.a11y-priority-row em {
  min-height: 26px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(185, 200, 90, 0.10);
  color: var(--a11y-lime);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.a11y-keyboard-map {
  padding: 0 15px 15px;
  display: grid;
  grid-template-columns: minmax(78px, 1fr) 22px minmax(92px, 1fr) 22px minmax(82px, 1fr);
  gap: 10px;
  align-items: center;
}


.a11y-key-step {
  min-height: 82px;
  padding: 12px;
  display: grid;
  align-content: center;
  gap: 9px;
  background: rgba(247, 251, 255, 0.045);
}


.a11y-key-step.is-active {
  outline: 0px solid rgba(185, 200, 90, 0.74);
  outline-offset: -1px;
  background: rgba(185, 200, 90, 0.08);
}


.a11y-key-step span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(78, 168, 255, 0.14);
  color: var(--a11y-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
}


.a11y-key-step strong {
  min-width: 0;
  overflow: hidden;
  color: var(--a11y-ink);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
}


.a11y-keyboard-map i {
  height: 5px;
  width: 100%;
  display: block;
  background: rgba(247, 251, 255, 0.22);
  transform-origin: left center;
}


.a11y-health-number {
  padding: 12px 15px 0;
  display: grid;
  gap: 10px;
}


.a11y-health-number strong {
  color: var(--a11y-ink);
  font-size: clamp(36px, 2vw, 60px);
  line-height: 0.9;
  font-weight: 470;
  letter-spacing: -0.07em;
}


.a11y-health-number span {
  color: rgba(197, 206, 231, 0.68);
  font-size: 13px;
  line-height: 1;
  font-weight: 560;
  letter-spacing: -0.02em;
}


.a11y-surface-list {
  padding: 18px 15px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}


.a11y-surface-list span {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  background: rgba(247, 251, 255, 0.055);
  color: rgba(247, 251, 255, 0.76);
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.018em;
}


.a11y-window-footer {
  min-height: 84px;
  padding: 12px 14px 14px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  background: var(--a11y-panel-deep);
}


.a11y-window-footer div {
  min-width: 0;
  padding: 13px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: rgba(247, 251, 255, 0.03);
}


.a11y-window-footer span {
  color: var(--a11y-muted);
  font-size: 11px;
  line-height: 1;
}


.a11y-window-footer strong {
  min-width: 0;
  overflow: hidden;
  color: var(--a11y-ink);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.a11y-hero.is-a11y-visible .a11y-issue-pin {
  animation: a11yPinPulse 4.8s ease-in-out infinite;
}


.a11y-hero.is-a11y-visible .a11y-issue-pin--alt {
  animation-delay: 0.18s;
}


.a11y-hero.is-a11y-visible .a11y-issue-pin--label {
  animation-delay: 0.36s;
}


.a11y-hero.is-a11y-visible .a11y-focus-path span {
  animation: a11yFocusStep 4.8s ease-in-out infinite;
}


.a11y-hero.is-a11y-visible .a11y-focus-path span:nth-child(2) {
  animation-delay: 0.18s;
}


.a11y-hero.is-a11y-visible .a11y-focus-path span:nth-child(3) {
  animation-delay: 0.36s;
}


.a11y-hero.is-a11y-visible .a11y-focus-path span:nth-child(4) {
  animation-delay: 0.54s;
}


.a11y-hero.is-a11y-visible .a11y-keyboard-map i {
  animation: a11yLineBuild 4.8s ease-in-out infinite;
}


.a11y-hero.is-a11y-visible .a11y-keyboard-map i:nth-of-type(2) {
  animation-delay: 0.24s;
}


.a11y-hero.is-a11y-visible .a11y-priority-row {
  animation: a11yRowPulse 5.2s ease-in-out infinite;
}


.a11y-hero.is-a11y-visible .a11y-priority-row:nth-child(2) {
  animation-delay: 0.16s;
}


.a11y-hero.is-a11y-visible .a11y-priority-row:nth-child(3) {
  animation-delay: 0.32s;
}


.a11y-hero.is-a11y-visible .a11y-priority-row:nth-child(4) {
  animation-delay: 0.48s;
}


.a11y-hero.is-a11y-visible .a11y-priority-row:nth-child(5) {
  animation-delay: 0.64s;
}


.a11y-hero.is-a11y-visible .a11y-priority-row:nth-child(6) {
  animation-delay: 0.8s;
}


@keyframes a11yPinPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.78;
  }


  42%,
  74% {
    transform: translate3d(0, -2px, 0) scale(1.04);
    opacity: 1;
  }
}


@keyframes a11yFocusStep {
  0%,
  100% {
    border-color: rgba(78, 168, 255, 0.24);
    background: rgba(78, 168, 255, 0.05);
  }


  42%,
  74% {
    border-color: rgba(185, 200, 90, 0.74);
    background: rgba(185, 200, 90, 0.10);
  }
}


@keyframes a11yLineBuild {
  0%,
  100% {
    transform: scaleX(0.22);
    opacity: 0.32;
  }


  36%,
  74% {
    transform: scaleX(1);
    opacity: 1;
  }
}


@keyframes a11yRowPulse {
  0%,
  100% {
    background: rgba(247, 251, 255, 0.035);
  }


  42% {
    background: rgba(78, 168, 255, 0.10);
  }
}


@media (max-width: 1180px) {
  .a11y-preview-grid {
    grid-template-columns: 1fr;
  }


  .a11y-keyboard-map {
    grid-template-columns: 1fr;
  }


  .a11y-keyboard-map i {
    width: 5px;
    height: 28px;
    justify-self: start;
    margin-left: 18px;
    transform-origin: center top;
  }


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


@media (max-width: 980px) {
  .a11y-hero-lower {
    grid-template-columns: 1fr;
    align-items: start;
  }


  .a11y-hero-actions {
    width: min(420px, 100%);
  }


  .a11y-plan-note {
    text-align: left;
  }


  .a11y-preview-stage {
    width: min(920px, calc(100vw - 56px));
    margin-bottom: clamp(124px, 13vw, 190px);
  }
}


@media (max-width: 760px) {
  :root {
    --a11y-preview-bottom-space: 118px;
  }


  .a11y-hero {
    padding:
      calc(var(--cb-header-offset, 0px) + 32px)
      0
      34px;
  }


  .a11y-hero::after {
    height: 82px;
    clip-path: polygon(
      0 72px,
      25% 72px,
      25% 54px,
      50% 54px,
      50% 38px,
      75% 38px,
      75% 24px,
      100% 24px,
      100% 100%,
      0 100%
    );
  }


  .a11y-hero-shell {
    width: min(100% - 36px, 620px);
    margin-left: auto;
    margin-right: auto;
  }


  .a11y-kicker {
    min-height: 50px;
    margin-bottom: 30px;
    font-size: 15px;
  }


  .a11y-title {
    font-size: clamp(52px, 14vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.078em;
  }


  .a11y-lede {
    font-size: 19px;
    line-height: 1.32;
  }


  .a11y-lede br {
    display: none;
  }


  .a11y-hero-actions {
    width: 100%;
  }


  .a11y-primary-link {
    width: 100%;
  }


  .a11y-plan-note {
    text-align: center;
  }


  .a11y-preview-stage {
    width: min(100% - 36px, 620px);
    margin-top: 54px;
    margin-bottom: var(--a11y-preview-bottom-space);
  }


  .a11y-window-bar {
    grid-template-columns: auto minmax(0, 1fr);
  }


  .a11y-window-body {
    min-height: auto;
    padding: 16px;
  }


  .a11y-window-head {
    grid-template-columns: 1fr;
  }


  .a11y-score {
    min-height: 92px;
    justify-items: start;
    padding: 18px;
  }


  .a11y-panel-head {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
  }


  .a11y-page-visual {
    min-height: 430px;
    padding: 18px;
  }


  .a11y-page-layout {
    grid-template-columns: 1fr;
  }


  .a11y-page-sidebar {
    display: none;
  }


  .a11y-page-row {
    grid-template-columns: 1fr;
  }


  .a11y-priority-row {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 14px;
    gap: 8px;
  }


  .a11y-priority-row span,
  .a11y-priority-row em {
    justify-self: start;
  }


  .a11y-window-footer {
    grid-template-columns: 1fr;
  }
}


@media (prefers-reduced-motion: reduce) {
  .a11y-preview-frame,
  .a11y-issue-pin,
  .a11y-focus-path span,
  .a11y-keyboard-map i,
  .a11y-priority-row,
  .a11y-primary-link {
    animation: none !important;
    transition: none !important;
  }


  .a11y-preview-frame {
    opacity: 1 !important;
    transform: none !important;
  }


  .a11y-keyboard-map i {
    transform: none !important;
  }


  .a11y-primary-link:hover,
  .a11y-primary-link:focus-visible {
    transform: none !important;
  }
}

/* ==============================
 ACCESSIBILITY INSIGHT SECTION
============================== */

.a11y-insight-section {
  position: relative;
  isolation: isolate;
  background: #01030f;
  color: var(--a11y-ink);
  padding: clamp(108px, 10vw, 172px) 0 clamp(112px, 10vw, 180px);
  overflow: hidden;
}

.a11y-insight-section::before {
  content: none;
  display: none;
}

.a11y-insight-shell {
  position: relative;
  z-index: 1;
  width: min(1152px, calc(100vw - 96px));
  margin: 0 auto;
}

.a11y-insight-header {
  margin: 0 0 clamp(38px, 4vw, 58px);
}

.a11y-insight-header h2 {
  max-width: 960px;
  margin: 0;
  color: var(--a11y-ink);
  font-size: clamp(32px, 3.25vw, 56px);
  line-height: 1.08;
  font-weight: 430;
  letter-spacing: -0.055em;
}

.a11y-insight-grid {
  min-height: 424px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.08fr) minmax(0, 0.95fr);
  align-items: stretch;
  background: #181818;
  overflow: hidden;
}

.a11y-insight-card {
  position: relative;
  min-height: 424px;
  padding: clamp(28px, 3vw, 42px);
  display: grid;
  align-content: space-between;
  gap: 34px;
  color: var(--a11y-ink);
  overflow: hidden;
}

.a11y-insight-card--early {
  background: #181818;
}

.a11y-insight-card--pages {
  background: #222222;
}

.a11y-insight-card--priority {
  background: #181818;
}

.a11y-insight-copy {
  position: relative;
  z-index: 2;
  max-width: 360px;
}

.a11y-insight-copy h3 {
  margin: 0;
  color: currentColor;
  font-size: clamp(24px, 2.1vw, 38px);
  line-height: 1.05;
  font-weight: 430;
  letter-spacing: -0.055em;
}

.a11y-insight-copy p {
  max-width: 355px;
  margin: clamp(18px, 1.8vw, 24px) 0 0;
  color: rgba(247, 251, 255, 0.82);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.42;
  font-weight: 430;
  letter-spacing: -0.035em;
}

.a11y-insight-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #000000;
  overflow: hidden;
}

.a11y-insight-icon-img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  opacity: 1;
}

.a11y-insight-inline-svg {
  width: 34px;
  height: 34px;
  display: block;
  overflow: visible;
}

.a11y-insight-inline-svg * {
  vector-effect: non-scaling-stroke;
}

.a11y-insight-icon--top {
  align-self: start;
  justify-self: center;
  margin-top: 10px;
}

.a11y-insight-card--early .a11y-insight-icon {
  align-self: end;
}

.a11y-insight-card--priority .a11y-insight-icon {
  align-self: end;
  justify-self: center;
  margin-bottom: 10px;
}

/* ==============================
 ACCESSIBILITY INSIGHT MOTION
============================== */

.a11y-insight-section .a11y-insight-header,
.a11y-insight-section .a11y-insight-card {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

.a11y-insight-section.is-visible .a11y-insight-header,
.a11y-insight-section.is-visible .a11y-insight-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.a11y-insight-section.is-visible .a11y-insight-card:nth-child(1) {
  transition-delay: 70ms;
}

.a11y-insight-section.is-visible .a11y-insight-card:nth-child(2) {
  transition-delay: 140ms;
}

.a11y-insight-section.is-visible .a11y-insight-card:nth-child(3) {
  transition-delay: 210ms;
}

.a11y-insight-section.is-visible .a11y-insight-icon {
  animation: a11yInsightIconFloat 4.8s ease-in-out infinite;
}

.a11y-insight-section.is-visible .a11y-insight-card:nth-child(2) .a11y-insight-icon {
  animation-delay: 0.24s;
}

.a11y-insight-section.is-visible .a11y-insight-card:nth-child(3) .a11y-insight-icon {
  animation-delay: 0.48s;
}

@keyframes a11yInsightIconFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  46%,
  72% {
    transform: translate3d(0, -8px, 0);
  }
}

/* ==============================
 ACCESSIBILITY INSIGHT RESPONSIVE
============================== */

@media (max-width: 980px) {
  .a11y-insight-shell {
    width: min(920px, calc(100vw - 56px));
  }

  .a11y-insight-grid {
    grid-template-columns: 1fr;
  }

  .a11y-insight-card {
    min-height: 340px;
  }

  .a11y-insight-icon--top,
  .a11y-insight-card--priority .a11y-insight-icon {
    justify-self: start;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .a11y-insight-section {
    padding: 104px 0 124px;
  }

  .a11y-insight-shell {
    width: min(100% - 36px, 620px);
  }

  .a11y-insight-header h2 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.08;
  }

  .a11y-insight-card {
    min-height: 320px;
    padding: 28px;
  }

  .a11y-insight-copy h3 {
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .a11y-insight-copy p {
    font-size: 17px;
    line-height: 1.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a11y-insight-header,
  .a11y-insight-card,
  .a11y-insight-icon {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .a11y-insight-section .a11y-insight-header,
  .a11y-insight-section .a11y-insight-card {
    opacity: 1 !important;
  }
}

/* ==============================
  ACCESSIBILITY PROOF SECTION
============================== */

.a11y-proof-section {
  --a11y-proof-paper: #f7fbff;
  --a11y-proof-ink: rgba(20, 12, 61, 0.72);
  --a11y-proof-link: #6a52c7;
  --a11y-proof-link-hover: #4ea8ff;
  --a11y-proof-number-bg: #4ea8ff;
  --a11y-proof-number-ink: #f7fbff;

  background: var(--a11y-bg);
  color: #4ea8ff;
  overflow: hidden;
}

.a11y-proof-card {
  background: var(--a11y-proof-paper);
  min-height: clamp(680px, 78vw, 920px);
  clip-path: polygon(
    0 var(--a11y-cut-a),
    25% var(--a11y-cut-a),
    25% var(--a11y-cut-b),
    50% var(--a11y-cut-b),
    50% var(--a11y-cut-c),
    75% var(--a11y-cut-c),
    75% 0,
    100% 0,
    100% calc(100% - var(--a11y-cut-a)),
    75% calc(100% - var(--a11y-cut-a)),
    75% calc(100% - var(--a11y-cut-b)),
    50% calc(100% - var(--a11y-cut-b)),
    50% calc(100% - var(--a11y-cut-c)),
    25% calc(100% - var(--a11y-cut-c)),
    25% 100%,
    0 100%
  );
}

.a11y-proof-inner {
  width: min(1152px, calc(100vw - 96px));
  margin: 0 auto;
  padding: clamp(190px, 19vw, 310px) 0 clamp(190px, 18vw, 280px);
}

.a11y-proof-inner h2 {
  max-width: 1120px;
  margin: 0;
  color: #3f4250;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.05;
  font-weight: 430;
  letter-spacing: -0.06em;
}

.a11y-proof-link {
  color: var(--a11y-proof-link);
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.a11y-proof-link:hover,
.a11y-proof-link:focus-visible {
  color: var(--a11y-proof-link-hover);
  outline: none;
}

.a11y-proof-number {
  width: 1.12em;
  height: 1.12em;
  margin: 0 0.18em 0 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -0.08em;
  border-radius: 999px;
  background: var(--a11y-proof-number-bg);
  color: var(--a11y-proof-number-ink);
  font-size: 0.56em;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.04em;
  vertical-align: middle;
  flex: 0 0 auto;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.a11y-proof-link:hover .a11y-proof-number,
.a11y-proof-link:focus-visible .a11y-proof-number {
  background: var(--a11y-blue);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ==============================
  ACCESSIBILITY PROOF MOTION
============================== */

.a11y-proof-inner h2 {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.a11y-proof-section.is-visible .a11y-proof-inner h2 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ==============================
  ACCESSIBILITY PROOF RESPONSIVE
============================== */

@media (max-width: 760px) {
  .a11y-proof-card {
    min-height: 720px;
  }

  .a11y-proof-inner {
    width: min(100% - 36px, 620px);
    padding-top: 154px;
    padding-bottom: 154px;
  }

  .a11y-proof-inner h2 {
    font-size: clamp(39px, 11vw, 58px);
    line-height: 1.08;
  }

  .a11y-proof-number {
    width: 0.96em;
    height: 0.96em;
    font-size: 0.48em;
    top: -0.08em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a11y-proof-inner h2,
  .a11y-proof-number {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .a11y-proof-inner h2 {
    opacity: 1 !important;
  }
}

/* ==============================
  ACCESSIBILITY LABELS SECTION
============================== */

.a11y-labels-section {
  isolation: isolate;
  position: relative;
  margin-top: -1px;
  background: transparent;
  color: var(--a11y-ink);
  padding: clamp(104px, 9vw, 148px) 0 clamp(178px, 15vw, 250px);
  overflow: hidden;
  --a11y-labels-loader-line: linear-gradient(
    90deg,
    var(--a11y-lime) 0%,
    var(--a11y-blue) 52%,
    #9a86e8 100%
  );
  --a11y-labels-stage-blue: #315cff;
  --a11y-labels-stage-violet: #6a52c7;
  --a11y-labels-image-gradient: linear-gradient(
    135deg,
    rgba(185, 200, 90, 0.34) 0%,
    rgba(78, 168, 255, 0.28) 48%,
    rgba(154, 134, 232, 0.26) 100%
  );
  --a11y-labels-hero-gradient: linear-gradient(
    135deg,
    rgba(154, 134, 232, 0.34) 0%,
    rgba(78, 168, 255, 0.28) 52%,
    rgba(185, 200, 90, 0.22) 100%
  );
  --a11y-labels-quiet-gradient: linear-gradient(
    135deg,
    rgba(20, 24, 36, 0.12) 0%,
    rgba(78, 168, 255, 0.10) 52%,
    rgba(185, 200, 90, 0.10) 100%
  );
}

.a11y-labels-section::before {
  content: none !important;
  display: none !important;
}

.a11y-labels-section::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 118px;
  z-index: 0;
  background: var(--a11y-bg);
  clip-path: polygon(
    0 var(--a11y-cut-a),
    25% var(--a11y-cut-a),
    25% var(--a11y-cut-b),
    50% var(--a11y-cut-b),
    50% var(--a11y-cut-c),
    75% var(--a11y-cut-c),
    75% 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.a11y-labels-shell {
  position: relative;
  z-index: 1;
  width: min(1152px, calc(100vw - 96px));
  margin: 0 auto;
}

.a11y-labels-header {
  max-width: 860px;
  margin: 0 0 clamp(46px, 5vw, 70px);
}

.a11y-labels-kicker {
  width: fit-content;
  min-height: 38px;
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--a11y-ink);
}

.a11y-labels-kicker span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--a11y-blue);
  color: var(--a11y-ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.a11y-labels-kicker strong {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  background: rgba(247, 251, 255, 0.08);
  color: var(--a11y-ink);
  font-size: 12px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-labels-header h2 {
  max-width: 840px;
  margin: 0;
  color: var(--a11y-ink);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
  font-weight: 430;
  letter-spacing: -0.06em;
}

.a11y-labels-header h2 span {
  color: rgba(197, 206, 231, 0.70);
}

.a11y-labels-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: stretch;
}

.a11y-labels-left {
  min-width: 0;
  display: grid;
  align-content: center;
}

.a11y-labels-tabs {
  display: grid;
  border-top: 1px solid rgba(247, 251, 255, 0.24);
}

.a11y-labels-tab {
  position: relative;
  appearance: none;
  min-height: 74px;
  width: 100%;
  padding: 18px 0 20px;
  display: grid;
  gap: 9px;
  border: 0;
  border-bottom: 1px solid rgba(247, 251, 255, 0.24);
  background: transparent;
  color: rgba(247, 251, 255, 0.92);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.a11y-labels-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 3px;
  background: var(--a11y-labels-loader-line);
}

.a11y-labels-tab.is-active::after {
  width: var(--a11y-labels-step-progress, 0%);
}

.a11y-labels-tab * {
  pointer-events: none;
}

.a11y-labels-tab-title {
  color: currentColor;
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.08;
  font-weight: 560;
  letter-spacing: -0.038em;
}

.a11y-labels-tab-copy {
  max-width: 320px;
  color: rgba(197, 206, 231, 0.72);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.42;
  font-weight: 420;
  letter-spacing: -0.03em;
}

.a11y-labels-tab:not(.is-active) .a11y-labels-tab-copy {
  display: none;
}

.a11y-labels-right {
  position: relative;
  min-width: 0;
  min-height: clamp(480px, 40vw, 560px);
  overflow: hidden;
}

.a11y-labels-screen {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translate3d(18px, 0, 0);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.a11y-labels-screen.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.a11y-labels-blue-stage {
  width: 100%;
  height: 100%;
  min-height: clamp(480px, 40vw, 560px);
  padding: clamp(30px, 3.4vw, 46px);
  display: grid;
  place-items: center;
  background: var(--a11y-labels-stage-blue);
  overflow: hidden;
}

.a11y-labels-screen:nth-child(2) .a11y-labels-blue-stage,
.a11y-labels-screen:nth-child(4) .a11y-labels-blue-stage {
  background: var(--a11y-labels-stage-violet);
}

.a11y-labels-window {
  width: min(680px, 100%);
  min-height: 360px;
  background: #eef0f6;
  color: #141824;
  overflow: hidden;
}

.a11y-labels-window-top {
  min-height: 42px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  background: #f7fbff;
  border-bottom: 1px solid rgba(20, 24, 36, 0.10);
}

.a11y-labels-window-dots {
  display: flex;
  gap: 7px;
}

.a11y-labels-window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.28);
}

.a11y-labels-window-top p {
  margin: 0;
  justify-self: end;
  color: rgba(20, 24, 36, 0.56);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.a11y-labels-window-body {
  padding: clamp(18px, 2.2vw, 28px);
  display: grid;
  gap: 18px;
}

.a11y-labels-visual-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.a11y-labels-visual-head span {
  color: rgba(20, 24, 36, 0.54);
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
}

.a11y-labels-visual-head > strong {
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  background: rgba(20, 24, 36, 0.08);
  color: rgba(20, 24, 36, 0.62);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

/* SCREEN 1 */

.a11y-labels-form-board {
  display: grid;
  gap: 10px;
}

.a11y-labels-form-row {
  min-height: 58px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  background: rgba(20, 24, 36, 0.055);
}

.a11y-labels-form-row span {
  color: rgba(20, 24, 36, 0.58);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.a11y-labels-form-row strong {
  min-width: 0;
  overflow: hidden;
  color: #141824;
  font-size: 13px;
  line-height: 1;
  font-weight: 620;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.a11y-labels-form-row em {
  min-height: 26px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  background: rgba(20, 24, 36, 0.07);
  color: rgba(20, 24, 36, 0.58);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 600;
  text-transform: lowercase;
}

.a11y-labels-form-row.is-review {
  background: rgba(78, 168, 255, 0.14);
}

.a11y-labels-form-row.is-review em {
  background: rgba(78, 168, 255, 0.18);
  color: #141824;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-form-row {
  animation: a11yLabelsRowPulse 5.2s ease-in-out infinite;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-form-row:nth-child(2) {
  animation-delay: 0.18s;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-form-row:nth-child(3) {
  animation-delay: 0.36s;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-form-row:nth-child(4) {
  animation-delay: 0.54s;
}

/* SCREEN 2 */

.a11y-labels-button-board {
  min-height: 238px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.a11y-labels-button-card {
  min-height: 108px;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 10px;
  background: rgba(20, 24, 36, 0.055);
}

.a11y-labels-button-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.08);
  overflow: hidden;
}

.a11y-labels-button-icon-img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.a11y-labels-button-card span {
  color: #141824;
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
}

.a11y-labels-button-card strong {
  color: rgba(20, 24, 36, 0.56);
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
}

.a11y-labels-button-card.is-review {
  background: rgba(78, 168, 255, 0.14);
}

.a11y-labels-button-card.is-review i {
  background: rgba(78, 168, 255, 0.18);
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-button-card {
  animation: a11yLabelsBlockLoad 5.2s ease-in-out infinite;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-button-card:nth-child(2) {
  animation-delay: 0.16s;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-button-card:nth-child(3) {
  animation-delay: 0.32s;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-button-card:nth-child(4) {
  animation-delay: 0.48s;
}

/* SCREEN 3 */

.a11y-labels-image-board {
  min-height: 244px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.a11y-labels-image-card {
  min-height: 244px;
  padding: 13px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: rgba(20, 24, 36, 0.055);
}

.a11y-labels-image-card div {
  min-height: 118px;
  background:
    var(--a11y-labels-image-gradient),
    rgba(20, 24, 36, 0.08);
}

.a11y-labels-image-card span {
  color: #141824;
  font-size: 12px;
  line-height: 1;
  font-weight: 650;
}

.a11y-labels-image-card strong {
  color: rgba(20, 24, 36, 0.56);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 650;
}

.a11y-labels-image-card.is-review {
  background: rgba(78, 168, 255, 0.14);
}

.a11y-labels-image-card.is-review div {
  background:
    var(--a11y-labels-hero-gradient),
    rgba(20, 24, 36, 0.08);
}

.a11y-labels-image-card.is-quiet div {
  background:
    var(--a11y-labels-quiet-gradient),
    rgba(20, 24, 36, 0.06);
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-image-card {
  animation: a11yLabelsBlockLoad 5.2s ease-in-out infinite;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-image-card:nth-child(2) {
  animation-delay: 0.18s;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-image-card:nth-child(3) {
  animation-delay: 0.36s;
}

/* SCREEN 4 */

.a11y-labels-report-table {
  display: grid;
  border: 1px solid rgba(20, 24, 36, 0.10);
}

.a11y-labels-report-row {
  min-height: 50px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(100px, 0.52fr) minmax(120px, 0.58fr);
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(20, 24, 36, 0.10);
  color: rgba(20, 24, 36, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 560;
}

.a11y-labels-report-row:first-child {
  border-top: 0;
}

.a11y-labels-report-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.a11y-labels-report-row.is-head {
  min-height: 38px;
  color: rgba(20, 24, 36, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(20, 24, 36, 0.045);
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-report-row:not(.is-head) {
  animation: a11yLabelsRowPulse 5.2s ease-in-out infinite;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-report-row:nth-child(3) {
  animation-delay: 0.20s;
}

.a11y-labels-section.is-visible .a11y-labels-screen.is-active .a11y-labels-report-row:nth-child(4) {
  animation-delay: 0.40s;
}

.a11y-labels-report-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.a11y-labels-report-counts div {
  min-height: 62px;
  padding: 13px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: rgba(20, 24, 36, 0.055);
}

.a11y-labels-report-counts span {
  color: rgba(20, 24, 36, 0.56);
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
}

.a11y-labels-report-counts strong {
  color: #141824;
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1;
  font-weight: 520;
  letter-spacing: -0.055em;
}

/* ANIMATIONS */

@keyframes a11yLabelsRowPulse {
  0%,
  100% {
    background: rgba(20, 24, 36, 0.055);
  }

  42% {
    background: rgba(78, 168, 255, 0.14);
  }
}

@keyframes a11yLabelsBlockLoad {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.72;
  }

  38%,
  72% {
    transform: scale(1);
    opacity: 1;
  }
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .a11y-labels-shell {
    width: min(920px, calc(100vw - 56px));
  }

  .a11y-labels-workspace {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .a11y-labels-left {
    align-content: start;
  }

  .a11y-labels-right {
    min-height: 520px;
  }

  .a11y-labels-blue-stage {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .a11y-labels-section {
    padding: 104px 0 154px;
  }

  .a11y-labels-section::after {
    height: 82px;
  }

  .a11y-labels-shell {
    width: min(100% - 36px, 620px);
  }

  .a11y-labels-header h2 {
    font-size: clamp(34px, 9.6vw, 48px);
    line-height: 1.08;
  }

  .a11y-labels-tab {
    min-height: 78px;
  }

  .a11y-labels-right,
  .a11y-labels-blue-stage {
    min-height: 600px;
  }

  .a11y-labels-blue-stage {
    padding: 24px;
  }

  .a11y-labels-window {
    min-height: 540px;
  }

  .a11y-labels-visual-head {
    grid-template-columns: 1fr;
  }

  .a11y-labels-form-row,
  .a11y-labels-report-row {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 14px;
    gap: 8px;
  }

  .a11y-labels-button-board,
  .a11y-labels-image-board,
  .a11y-labels-report-counts {
    grid-template-columns: 1fr;
  }

  .a11y-labels-image-card {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a11y-labels-screen,
  .a11y-labels-form-row,
  .a11y-labels-button-card,
  .a11y-labels-image-card,
  .a11y-labels-report-row {
    animation: none !important;
    transition: none !important;
  }
}

/* ==============================
  ACCESSIBILITY CONTRAST SECTION
============================== */

.a11y-contrast-section {
  isolation: isolate;
  position: relative;
  margin-top: -1px;
  background: transparent;
  color: var(--a11y-ink);
  padding: clamp(104px, 9vw, 148px) 0 clamp(178px, 15vw, 250px);
  overflow: hidden;
  --a11y-contrast-loader-line: linear-gradient(
    90deg,
    var(--a11y-lime) 0%,
    var(--a11y-blue) 52%,
    #9a86e8 100%
  );
  --a11y-contrast-stage-blue: #315cff;
  --a11y-contrast-stage-violet: #6a52c7;
  --a11y-contrast-card-gradient: linear-gradient(
    135deg,
    rgba(185, 200, 90, 0.32) 0%,
    rgba(78, 168, 255, 0.26) 48%,
    rgba(154, 134, 232, 0.24) 100%
  );
}

.a11y-contrast-section::before {
  content: none !important;
  display: none !important;
}

.a11y-contrast-section::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 118px;
  z-index: 0;
  background: var(--a11y-bg);
  clip-path: polygon(
    0 var(--a11y-cut-a),
    25% var(--a11y-cut-a),
    25% var(--a11y-cut-b),
    50% var(--a11y-cut-b),
    50% var(--a11y-cut-c),
    75% var(--a11y-cut-c),
    75% 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.a11y-contrast-shell {
  position: relative;
  z-index: 1;
  width: min(1152px, calc(100vw - 96px));
  margin: 0 auto;
}

.a11y-contrast-header {
  max-width: 860px;
  margin: 0 0 clamp(46px, 5vw, 70px);
}

.a11y-contrast-kicker {
  width: fit-content;
  min-height: 38px;
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--a11y-ink);
}

.a11y-contrast-kicker span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--a11y-blue);
  color: var(--a11y-ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.a11y-contrast-kicker strong {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  background: rgba(247, 251, 255, 0.08);
  color: var(--a11y-ink);
  font-size: 12px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-contrast-header h2 {
  max-width: 840px;
  margin: 0;
  color: var(--a11y-ink);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
  font-weight: 430;
  letter-spacing: -0.06em;
}

.a11y-contrast-header h2 span {
  color: rgba(197, 206, 231, 0.70);
}

.a11y-contrast-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: stretch;
}

.a11y-contrast-left {
  min-width: 0;
  display: grid;
  align-content: center;
}

.a11y-contrast-tabs {
  display: grid;
  border-top: 1px solid rgba(247, 251, 255, 0.24);
}

.a11y-contrast-tab {
  position: relative;
  appearance: none;
  min-height: 74px;
  width: 100%;
  padding: 18px 0 20px;
  display: grid;
  gap: 9px;
  border: 0;
  border-bottom: 1px solid rgba(247, 251, 255, 0.24);
  background: transparent;
  color: rgba(247, 251, 255, 0.92);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.a11y-contrast-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 3px;
  background: var(--a11y-contrast-loader-line);
}

.a11y-contrast-tab.is-active::after {
  width: var(--a11y-contrast-step-progress, 0%);
}

.a11y-contrast-tab * {
  pointer-events: none;
}

.a11y-contrast-tab-title {
  color: currentColor;
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.08;
  font-weight: 560;
  letter-spacing: -0.038em;
}

.a11y-contrast-tab-copy {
  max-width: 320px;
  color: rgba(197, 206, 231, 0.72);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.42;
  font-weight: 420;
  letter-spacing: -0.03em;
}

.a11y-contrast-tab:not(.is-active) .a11y-contrast-tab-copy {
  display: none;
}

.a11y-contrast-right {
  position: relative;
  min-width: 0;
  min-height: clamp(480px, 40vw, 560px);
  overflow: hidden;
}

.a11y-contrast-screen {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translate3d(18px, 0, 0);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.a11y-contrast-screen.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.a11y-contrast-blue-stage {
  width: 100%;
  height: 100%;
  min-height: clamp(480px, 40vw, 560px);
  padding: clamp(30px, 3.4vw, 46px);
  display: grid;
  place-items: center;
  background: var(--a11y-contrast-stage-blue);
  overflow: hidden;
}

.a11y-contrast-screen:nth-child(2) .a11y-contrast-blue-stage,
.a11y-contrast-screen:nth-child(4) .a11y-contrast-blue-stage {
  background: var(--a11y-contrast-stage-violet);
}

.a11y-contrast-window {
  width: min(680px, 100%);
  min-height: 360px;
  background: #eef0f6;
  color: #141824;
  overflow: hidden;
}

.a11y-contrast-window-top {
  min-height: 42px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  background: #f7fbff;
  border-bottom: 1px solid rgba(20, 24, 36, 0.10);
}

.a11y-contrast-window-dots {
  display: flex;
  gap: 7px;
}

.a11y-contrast-window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.28);
}

.a11y-contrast-window-top p {
  margin: 0;
  justify-self: end;
  color: rgba(20, 24, 36, 0.56);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.a11y-contrast-window-body {
  padding: clamp(18px, 2.2vw, 28px);
  display: grid;
  gap: 18px;
}

.a11y-contrast-visual-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.a11y-contrast-visual-head span {
  color: rgba(20, 24, 36, 0.54);
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
}

.a11y-contrast-visual-head > strong {
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  background: rgba(20, 24, 36, 0.08);
  color: rgba(20, 24, 36, 0.62);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

/* SCREEN 1 */

.a11y-contrast-text-board {
  display: grid;
  gap: 10px;
}

.a11y-contrast-text-row {
  min-height: 58px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  background: rgba(20, 24, 36, 0.055);
}

.a11y-contrast-text-row span {
  color: rgba(20, 24, 36, 0.58);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.a11y-contrast-text-row strong {
  min-width: 0;
  overflow: hidden;
  color: #141824;
  font-size: 13px;
  line-height: 1;
  font-weight: 620;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.a11y-contrast-text-row em {
  min-height: 26px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  background: rgba(20, 24, 36, 0.07);
  color: rgba(20, 24, 36, 0.58);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 600;
  text-transform: lowercase;
}

.a11y-contrast-text-row.is-review {
  background: rgba(78, 168, 255, 0.14);
}

.a11y-contrast-text-row.is-review em {
  background: rgba(78, 168, 255, 0.18);
  color: #141824;
}

/* SCREEN 2 */

.a11y-contrast-button-board {
  min-height: 238px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.a11y-contrast-button-card {
  min-height: 108px;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 10px;
  background: rgba(20, 24, 36, 0.055);
}

.a11y-contrast-button-card span {
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #141824;
  color: #f7fbff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.a11y-contrast-button-card strong {
  color: rgba(20, 24, 36, 0.56);
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
}

.a11y-contrast-button-card.is-review {
  background: rgba(78, 168, 255, 0.14);
}

.a11y-contrast-button-card.is-review span {
  background: rgba(20, 24, 36, 0.14);
  color: rgba(20, 24, 36, 0.54);
}

/* SCREEN 3 */

.a11y-contrast-section-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 0.48fr);
  gap: 14px;
  align-items: stretch;
}

.a11y-contrast-page-map {
  min-height: 236px;
  padding: 14px;
  display: grid;
  gap: 11px;
  background: rgba(20, 24, 36, 0.08);
}

.a11y-contrast-page-map span {
  display: block;
  min-height: 32px;
  background: rgba(20, 24, 36, 0.16);
  transform-origin: left center;
}

.a11y-contrast-page-map span.is-hero {
  min-height: 68px;
  background: var(--a11y-contrast-card-gradient);
}

.a11y-contrast-page-map span.is-review {
  background: rgba(78, 168, 255, 0.20);
}

.a11y-contrast-page-map span.is-quiet {
  background: rgba(20, 24, 36, 0.08);
}

.a11y-contrast-section-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.a11y-contrast-section-list div {
  min-height: 50px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  background: rgba(20, 24, 36, 0.055);
}

.a11y-contrast-section-list span {
  color: #141824;
  font-size: 12px;
  line-height: 1;
  font-weight: 620;
}

.a11y-contrast-section-list strong {
  color: rgba(20, 24, 36, 0.58);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  text-transform: lowercase;
}

/* SCREEN 4 */

.a11y-contrast-report-table {
  display: grid;
  border: 1px solid rgba(20, 24, 36, 0.10);
}

.a11y-contrast-report-row {
  min-height: 50px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(100px, 0.52fr) minmax(120px, 0.58fr);
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(20, 24, 36, 0.10);
  color: rgba(20, 24, 36, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 560;
}

.a11y-contrast-report-row:first-child {
  border-top: 0;
}

.a11y-contrast-report-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.a11y-contrast-report-row.is-head {
  min-height: 38px;
  color: rgba(20, 24, 36, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(20, 24, 36, 0.045);
}

.a11y-contrast-report-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.a11y-contrast-report-counts div {
  min-height: 62px;
  padding: 13px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: rgba(20, 24, 36, 0.055);
}

.a11y-contrast-report-counts span {
  color: rgba(20, 24, 36, 0.56);
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
}

.a11y-contrast-report-counts strong {
  color: #141824;
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1;
  font-weight: 520;
  letter-spacing: -0.055em;
}

/* MOTION */

.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-text-row,
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-report-row:not(.is-head),
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-section-list div {
  animation: a11yContrastRowPulse 5.2s ease-in-out infinite;
}

.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-button-card,
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-page-map span {
  animation: a11yContrastBlockLoad 5.2s ease-in-out infinite;
}

.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-text-row:nth-child(2),
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-button-card:nth-child(2),
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-section-list div:nth-child(2),
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-report-row:nth-child(3) {
  animation-delay: 0.18s;
}

.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-text-row:nth-child(3),
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-button-card:nth-child(3),
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-section-list div:nth-child(3),
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-report-row:nth-child(4) {
  animation-delay: 0.36s;
}

.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-text-row:nth-child(4),
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-button-card:nth-child(4),
.a11y-contrast-section.is-visible .a11y-contrast-screen.is-active .a11y-contrast-section-list div:nth-child(4) {
  animation-delay: 0.54s;
}

@keyframes a11yContrastRowPulse {
  0%,
  100% {
    background: rgba(20, 24, 36, 0.055);
  }

  42% {
    background: rgba(78, 168, 255, 0.14);
  }
}

@keyframes a11yContrastBlockLoad {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.72;
  }

  38%,
  72% {
    transform: scale(1);
    opacity: 1;
  }
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .a11y-contrast-shell {
    width: min(920px, calc(100vw - 56px));
  }

  .a11y-contrast-workspace {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .a11y-contrast-left {
    align-content: start;
  }

  .a11y-contrast-right,
  .a11y-contrast-blue-stage {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .a11y-contrast-section {
    padding: 104px 0 154px;
  }

  .a11y-contrast-section::after {
    height: 82px;
  }

  .a11y-contrast-shell {
    width: min(100% - 36px, 620px);
  }

  .a11y-contrast-header h2 {
    font-size: clamp(34px, 9.6vw, 48px);
    line-height: 1.08;
  }

  .a11y-contrast-tab {
    min-height: 78px;
  }

  .a11y-contrast-right,
  .a11y-contrast-blue-stage {
    min-height: 600px;
  }

  .a11y-contrast-blue-stage {
    padding: 24px;
  }

  .a11y-contrast-window {
    min-height: 540px;
  }

  .a11y-contrast-visual-head {
    grid-template-columns: 1fr;
  }

  .a11y-contrast-text-row,
  .a11y-contrast-report-row {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 14px;
    gap: 8px;
  }

  .a11y-contrast-button-board,
  .a11y-contrast-section-board,
  .a11y-contrast-report-counts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a11y-contrast-screen,
  .a11y-contrast-text-row,
  .a11y-contrast-button-card,
  .a11y-contrast-page-map span,
  .a11y-contrast-section-list div,
  .a11y-contrast-report-row {
    animation: none !important;
    transition: none !important;
  }
}


/* ==============================
  ACCESSIBILITY CONTRAST SECTION
============================== */

.a11y-contrast-v2-section {
  isolation: isolate;
  position: relative;
  margin-top: -1px;
  background: #140c3d;
  color: var(--a11y-ink);
  padding: clamp(156px, 13vw, 218px) 0 clamp(178px, 15vw, 250px);
  overflow: hidden;

  --a11y-contrast-v2-bg: #140c3d;
  --a11y-contrast-v2-bg-dark: #08051a;
  --a11y-contrast-v2-panel-a: #1a104a;
  --a11y-contrast-v2-panel-b: #22145f;
  --a11y-contrast-v2-panel-c: #2b1b74;
  --a11y-contrast-v2-panel-d: #0f092c;
  --a11y-contrast-v2-ink: #f7fbff;
  --a11y-contrast-v2-muted: rgba(197, 206, 231, 0.72);
  --a11y-contrast-v2-soft: rgba(247, 251, 255, 0.14);
  --a11y-contrast-v2-blue: #4ea8ff;
  --a11y-contrast-v2-light-blue: #8dccff;
  --a11y-contrast-v2-lime: #b9c85a;
  --a11y-contrast-v2-red: #ff4d4d;
  --a11y-contrast-v2-orange: #ff8a1f;
  --a11y-contrast-v2-cut-a: var(--a11y-cut-a, 86px);
  --a11y-contrast-v2-cut-b: var(--a11y-cut-b, 64px);
  --a11y-contrast-v2-cut-c: var(--a11y-cut-c, 38px);
  --a11y-contrast-v2-live-bg: #4ea8ff;
  --a11y-contrast-v2-live-ink: #050711;
  --a11y-contrast-v2-fill: 82%;
}

.a11y-contrast-v2-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 118px;
  z-index: 0;
  background: var(--a11y-bg);
  clip-path: polygon(
    0 0,
    100% 0,
    100% var(--a11y-contrast-v2-cut-c),
    75% var(--a11y-contrast-v2-cut-c),
    75% var(--a11y-contrast-v2-cut-b),
    50% var(--a11y-contrast-v2-cut-b),
    50% var(--a11y-contrast-v2-cut-a),
    25% var(--a11y-contrast-v2-cut-a),
    25% 118px,
    0 118px
  );
}

.a11y-contrast-v2-section::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 118px;
  z-index: 0;
  background: var(--a11y-bg);
  clip-path: polygon(
    0 var(--a11y-contrast-v2-cut-a),
    25% var(--a11y-contrast-v2-cut-a),
    25% var(--a11y-contrast-v2-cut-b),
    50% var(--a11y-contrast-v2-cut-b),
    50% var(--a11y-contrast-v2-cut-c),
    75% var(--a11y-contrast-v2-cut-c),
    75% 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.a11y-contrast-v2-shell {
  position: relative;
  z-index: 1;
  width: min(1152px, calc(100vw - 96px));
  margin: 0 auto;
}

.a11y-contrast-v2-head {
  max-width: 820px;
  margin: 0 0 clamp(46px, 5vw, 70px);
}

.a11y-contrast-v2-label {
  width: fit-content;
  min-height: 38px;
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--a11y-ink);
}

.a11y-contrast-v2-label span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--a11y-blue);
  color: var(--a11y-contrast-v2-ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.a11y-contrast-v2-label strong {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  background: rgba(247, 251, 255, 0.08);
  color: var(--a11y-ink);
  font-size: 12px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-contrast-v2-head h2 {
  max-width: 850px;
  margin: 0;
  color: var(--a11y-contrast-v2-ink);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
  font-weight: 430;
  letter-spacing: -0.06em;
}

.a11y-contrast-v2-head h2 span {
  color: rgba(197, 206, 231, 0.74);
}

/* GRID */

.a11y-contrast-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: stretch;
}

.a11y-contrast-v2-panel {
  min-height: 520px;
  overflow: hidden;
}

.a11y-contrast-v2-panel--score {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--a11y-contrast-v2-panel-d);
}

.a11y-contrast-v2-panel--demo {
  display: grid;
  align-content: space-between;
  gap: 42px;
  padding: clamp(32px, 3.6vw, 50px);
  background: var(--a11y-contrast-v2-panel-c);
}

.a11y-contrast-v2-panel--page {
  min-height: 330px;
  padding: clamp(30px, 3.6vw, 46px);
  display: grid;
  align-content: space-between;
  gap: 40px;
  background: var(--a11y-contrast-v2-panel-b);
}

.a11y-contrast-v2-panel--list {
  min-height: 330px;
  padding: clamp(30px, 3.6vw, 46px);
  display: grid;
  align-content: space-between;
  gap: 40px;
  background: var(--a11y-contrast-v2-panel-a);
}

.a11y-contrast-v2-panel-top {
  min-height: 64px;
  padding: 0 clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  background: #10092f;
}

.a11y-contrast-v2-panel-top span {
  color: var(--a11y-contrast-v2-ink);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.a11y-contrast-v2-panel-top strong {
  min-width: 0;
  color: var(--a11y-contrast-v2-light-blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

/* SCORE PANEL */

.a11y-contrast-v2-score-body {
  padding: clamp(28px, 3.6vw, 50px);
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) minmax(280px, 1.42fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: center;
}

.a11y-contrast-v2-meter {
  position: relative;
  width: 170px;
  display: grid;
  gap: 12px;
  padding-top: 30px;
}


.a11y-contrast-v2-meter-track {
  position: relative;
  height: 220px;
  width: 64px;
  background: rgba(247, 251, 255, 0.10);
  overflow: hidden;
}


.a11y-contrast-v2-meter-track span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--a11y-contrast-v2-fill);
  display: block;
  background: var(--a11y-contrast-v2-live-bg);
  transition:
    height 180ms ease,
    background 180ms ease;
}

.a11y-contrast-v2-meter-scale {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 266px;
  display: block;
  color: rgba(197, 206, 231, 0.64);
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.a11y-contrast-v2-meter-scale span:first-child {
  position: absolute;
  left: 0;
  bottom: 0;
}

.a11y-contrast-v2-meter-scale span:last-child {
  position: absolute;
  left: 0;
  top: 0;
}


.a11y-contrast-v2-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.a11y-contrast-v2-check {
  min-height: 112px;
  padding: 16px 18px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  background: rgba(247, 251, 255, 0.055);
}

.a11y-contrast-v2-check img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.a11y-contrast-v2-check span {
  color: rgba(247, 251, 255, 0.62);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.a11y-contrast-v2-check strong {
  color: var(--a11y-contrast-v2-ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 450;
  letter-spacing: -0.05em;
}

.a11y-contrast-v2-check.is-watch strong {
  color: var(--a11y-contrast-v2-light-blue);
}

.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-check {
  animation: a11yContrastV2PanelPulse 5.2s ease-in-out infinite;
}

.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-check:nth-child(2) {
  animation-delay: 0.2s;
}

.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-check:nth-child(3) {
  animation-delay: 0.4s;
}

.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-check:nth-child(4) {
  animation-delay: 0.6s;
}

/* DEMO */

.a11y-contrast-v2-demo-copy {
  max-width: 440px;
}

.a11y-contrast-v2-demo-copy h3 {
  margin: 0;
  color: var(--a11y-contrast-v2-ink);
  font-size: clamp(28px, 2.45vw, 42px);
  line-height: 1.05;
  font-weight: 430;
  letter-spacing: -0.058em;
}

.a11y-contrast-v2-demo-copy p {
  max-width: 420px;
  margin: 17px 0 0;
  color: rgba(247, 251, 255, 0.72);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.44;
  font-weight: 430;
  letter-spacing: -0.03em;
}

.a11y-contrast-v2-demo-box {
  padding: 22px;
  display: grid;
  gap: 22px;
  background: rgba(1, 3, 15, 0.24);
}

.a11y-contrast-v2-demo-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.a11y-contrast-v2-demo-top span {
  color: rgba(247, 251, 255, 0.72);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-contrast-v2-demo-top strong {
  color: var(--a11y-contrast-v2-live-bg);
  font-size: clamp(30px, 2.2vw, 44px);
  line-height: 0.9;
  font-weight: 460;
  letter-spacing: -0.075em;
  transition: color 180ms ease;
}

.a11y-contrast-v2-button-stage {
  min-height: 148px;
  display: grid;
  place-items: center;
  background: rgba(247, 251, 255, 0.045);
}

.a11y-contrast-v2-button {
  appearance: none;
  min-width: 168px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: var(--a11y-contrast-v2-live-bg);
  color: var(--a11y-contrast-v2-live-ink);
  font: inherit;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.025em;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.a11y-contrast-v2-button:hover,
.a11y-contrast-v2-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.a11y-contrast-v2-control {
  display: grid;
  gap: 12px;
}

.a11y-contrast-v2-control label {
  color: rgba(247, 251, 255, 0.70);
  font-size: 12px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.a11y-contrast-v2-control input[type="range"] {
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.16);
  cursor: pointer;
}

.a11y-contrast-v2-control input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 4px;
  background: var(--a11y-contrast-v2-live-bg);
  cursor: pointer;
}

.a11y-contrast-v2-control input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 4px;
  background: var(--a11y-contrast-v2-live-bg);
  cursor: pointer;
}

.a11y-contrast-v2-message {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background: rgba(185, 200, 90, 0.14);
  color: var(--a11y-contrast-v2-lime);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.a11y-contrast-v2-message.is-low {
  background: rgba(255, 77, 77, 0.14);
  color: #ff9b9b;
}

.a11y-contrast-v2-message.is-mid {
  background: rgba(78, 168, 255, 0.14);
  color: var(--a11y-contrast-v2-light-blue);
}

.a11y-contrast-v2-message.is-good {
  background: rgba(185, 200, 90, 0.14);
  color: var(--a11y-contrast-v2-lime);
}

/* PAGE SAMPLE */

.a11y-contrast-v2-page-visual {
  position: relative;
  display: grid;
  gap: 12px;
}

.a11y-contrast-v2-page-head {
  min-height: 44px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 0.35fr 0.8fr;
  align-items: center;
  gap: 14px;
  background: rgba(1, 3, 15, 0.18);
}

.a11y-contrast-v2-page-head span,
.a11y-contrast-v2-page-hero strong,
.a11y-contrast-v2-page-hero span,
.a11y-contrast-v2-page-lines i {
  display: block;
  border-radius: 4px;
}

.a11y-contrast-v2-page-head span {
  height: 11px;
  background: rgba(247, 251, 255, 0.54);
}

.a11y-contrast-v2-page-hero {
  position: relative;
  min-height: 132px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 12px;
  background: rgba(1, 3, 15, 0.20);
  overflow: hidden;
}

.a11y-contrast-v2-page-hero strong {
  width: 58%;
  height: 15px;
  background: rgba(247, 251, 255, 0.92);
}

.a11y-contrast-v2-page-hero span {
  width: 78%;
  height: 11px;
  background: rgba(247, 251, 255, 0.42);
}

.a11y-contrast-v2-page-hero span:nth-of-type(2) {
  width: 46%;
  background: rgba(247, 251, 255, 0.22);
}

.a11y-contrast-v2-page-hero em {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  background: var(--a11y-contrast-v2-red);
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.a11y-contrast-v2-page-lines {
  display: grid;
  gap: 10px;
}

.a11y-contrast-v2-page-lines i {
  height: 13px;
  background: rgba(247, 251, 255, 0.62);
}

.a11y-contrast-v2-page-lines i:nth-child(2) {
  width: 78%;
}

.a11y-contrast-v2-page-lines i:nth-child(3) {
  width: 58%;
}

.a11y-contrast-v2-page-lines i:nth-child(4) {
  width: 70%;
}

.a11y-contrast-v2-page-lines i.is-low {
  background: rgba(247, 251, 255, 0.24);
}

/* LIST */

.a11y-contrast-v2-list {
  display: grid;
  gap: 10px;
}

.a11y-contrast-v2-list-row {
  min-height: 54px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto 48px;
  align-items: center;
  gap: 14px;
  background: rgba(247, 251, 255, 0.045);
}

.a11y-contrast-v2-list-row img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.a11y-contrast-v2-list-row span {
  min-width: 0;
  color: rgba(247, 251, 255, 0.78);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.a11y-contrast-v2-list-row strong {
  color: rgba(197, 206, 231, 0.76);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: lowercase;
}

.a11y-contrast-v2-list-row.is-watch strong {
  color: var(--a11y-contrast-v2-light-blue);
}

.a11y-contrast-v2-list-row.is-low strong {
  color: #ff9b9b;
}

.a11y-contrast-v2-list-row i {
  position: relative;
  width: 48px;
  height: 24px;
  display: block;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.14);
}

.a11y-contrast-v2-list-row i::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--a11y-contrast-v2-lime);
}

.a11y-contrast-v2-list-row.is-watch i::after {
  background: var(--a11y-contrast-v2-light-blue);
}

.a11y-contrast-v2-list-row.is-low i::after {
  background: var(--a11y-contrast-v2-red);
}

.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-list-row i::after {
  animation: a11yContrastV2Switch 5s ease-in-out infinite;
}

.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-list-row:nth-child(2) i::after {
  animation-delay: 0.2s;
}

.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-list-row:nth-child(3) i::after {
  animation-delay: 0.4s;
}

.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-list-row:nth-child(4) i::after {
  animation-delay: 0.6s;
}

.a11y-contrast-v2-card-copy h3 {
  max-width: 440px;
  margin: 0;
  color: var(--a11y-contrast-v2-ink);
  font-size: clamp(26px, 2.15vw, 36px);
  line-height: 1.06;
  font-weight: 430;
  letter-spacing: -0.056em;
}

.a11y-contrast-v2-card-copy p {
  max-width: 440px;
  margin: 17px 0 0;
  color: rgba(247, 251, 255, 0.74);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.44;
  font-weight: 430;
  letter-spacing: -0.03em;
}

/* MOTION */

.a11y-contrast-v2-section .a11y-contrast-v2-head,
.a11y-contrast-v2-section .a11y-contrast-v2-grid {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-head,
.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-grid {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.a11y-contrast-v2-section.is-visible .a11y-contrast-v2-grid {
  transition-delay: 120ms;
}

@keyframes a11yContrastV2PanelPulse {
  0%,
  100% {
    background: rgba(247, 251, 255, 0.055);
  }

  42% {
    background: rgba(247, 251, 255, 0.12);
  }
}

@keyframes a11yContrastV2Switch {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  42%,
  72% {
    transform: translate3d(24px, 0, 0);
  }
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .a11y-contrast-v2-shell {
    width: min(920px, calc(100vw - 56px));
  }

  .a11y-contrast-v2-grid {
    grid-template-columns: 1fr;
  }

  .a11y-contrast-v2-panel {
    min-height: 500px;
  }

  .a11y-contrast-v2-score-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .a11y-contrast-v2-section {
    padding: 138px 0 154px;
  }

  .a11y-contrast-v2-section::before,
  .a11y-contrast-v2-section::after {
    height: 82px;
  }

  .a11y-contrast-v2-shell {
    width: min(100% - 36px, 620px);
  }

  .a11y-contrast-v2-head h2 {
    font-size: clamp(34px, 9.6vw, 48px);
    line-height: 1.08;
  }

  .a11y-contrast-v2-panel {
    min-height: 0;
  }

  .a11y-contrast-v2-panel-top {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 16px 20px;
  }

  .a11y-contrast-v2-score-body,
  .a11y-contrast-v2-panel--demo,
  .a11y-contrast-v2-panel--page,
  .a11y-contrast-v2-panel--list {
    padding: 28px;
  }

  .a11y-contrast-v2-check-grid {
    grid-template-columns: 1fr;
  }

  .a11y-contrast-v2-meter {
    width: 100%;
  }

  .a11y-contrast-v2-meter-track {
    width: 100%;
    height: 54px;
  }

  .a11y-contrast-v2-meter-track span {
    top: 0;
    right: auto;
    height: 100%;
    width: var(--a11y-contrast-v2-fill);
  }

  .a11y-contrast-v2-meter-scale {
    width: 100%;
  }

  .a11y-contrast-v2-list-row {
    grid-template-columns: 18px minmax(0, 1fr);
    align-content: center;
    padding: 14px;
  }

  .a11y-contrast-v2-list-row strong,
  .a11y-contrast-v2-list-row i {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a11y-contrast-v2-head,
  .a11y-contrast-v2-grid,
  .a11y-contrast-v2-check,
  .a11y-contrast-v2-list-row i::after,
  .a11y-contrast-v2-button {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .a11y-contrast-v2-section .a11y-contrast-v2-head,
  .a11y-contrast-v2-section .a11y-contrast-v2-grid {
    opacity: 1 !important;
  }
}


/* ==============================
  CONTRAST CUSTOM COLOR TOOL
============================== */

.a11y-contrast-v2-panel--demo,
.a11y-contrast-v2-demo-box {
  overflow: visible;
}

.a11y-contrast-v2-button-stage {
  position: relative;
  min-height: 148px;
  display: grid;
  place-items: center;
  background: rgba(247, 251, 255, 0.045);
  overflow: visible;
}

.a11y-contrast-v2-color-tool {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.a11y-contrast-v2-color-open {
  appearance: none;
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.a11y-contrast-v2-color-open img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.a11y-contrast-v2-color-open:hover,
.a11y-contrast-v2-color-open:focus-visible {
  outline: none;
  background: rgba(247, 251, 255, 0.08);
  transform: translateY(-2px);
}

.a11y-contrast-v2-color-panel {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: min(380px, calc(100vw - 56px));
  padding: 18px;
  display: none;
  gap: 16px;
  border-radius: 4px;
  background: #08051a;
  color: #f7fbff;
 
  z-index: 50;
}

.a11y-contrast-v2-color-tool.is-open .a11y-contrast-v2-color-panel {
  display: grid;
}

.a11y-contrast-v2-color-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: start;
}

.a11y-contrast-v2-color-panel-head strong {
  display: block;
  color: #f7fbff;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.a11y-contrast-v2-color-close {
  appearance: none;
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.10);
  color: #f7fbff;
  cursor: pointer;
}

.a11y-contrast-v2-color-close img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.a11y-contrast-v2-color-close:hover,
.a11y-contrast-v2-color-close:focus-visible {
  outline: none;
  background: rgba(247, 251, 255, 0.16);
}


.a11y-contrast-v2-color-close:hover,
.a11y-contrast-v2-color-close:focus-visible {
  outline: none;
  background: rgba(247, 251, 255, 0.16);
}

.a11y-contrast-v2-color-targets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.a11y-contrast-v2-target-btn {
  appearance: none;
  min-height: 46px;
  padding: 0 12px;
  display: inline-grid;
  grid-template-columns: 18px auto;
  align-items: center;
  justify-content: start;
  gap: 9px;
  border: 0;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.08);
  color: rgba(247, 251, 255, 0.74);
  font: inherit;
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.a11y-contrast-v2-target-btn img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

.a11y-contrast-v2-target-btn.is-active {
  background: rgba(78, 168, 255, 0.18);
  color: #f7fbff;
}

.a11y-contrast-v2-picker-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.a11y-contrast-v2-color-swatch,
.a11y-contrast-v2-hex-field {
  display: grid;
  gap: 8px;
}

.a11y-contrast-v2-color-swatch input[type="color"] {
  appearance: none;
  width: 92px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.a11y-contrast-v2-color-swatch input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.a11y-contrast-v2-color-swatch input[type="color"]::-webkit-color-swatch {
  border: 0;
  border-radius: 4px;
}

.a11y-contrast-v2-color-swatch input[type="color"]::-moz-color-swatch {
  border: 0;
  border-radius: 4px;
}

.a11y-contrast-v2-hex-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.10);
  color: #f7fbff;
  font: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  outline: none;
}

.a11y-contrast-v2-hex-field input:focus {
  background: rgba(247, 251, 255, 0.14);
}

.a11y-contrast-v2-color-values {
  display: grid;
  gap: 8px;
}

.a11y-contrast-v2-color-values div {
  min-height: 42px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.07);
}

.a11y-contrast-v2-color-values span {
  color: rgba(197, 206, 231, 0.64);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-contrast-v2-color-values strong {
  min-width: 0;
  overflow: hidden;
  color: #f7fbff;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 760px) {
  .a11y-contrast-v2-color-tool {
    right: 14px;
    bottom: 14px;
  }

  .a11y-contrast-v2-color-panel {
    right: 0;
    left: auto;
    bottom: 54px;
    width: min(340px, calc(100vw - 72px));
  }

  .a11y-contrast-v2-picker-row {
    grid-template-columns: 1fr;
  }

  .a11y-contrast-v2-color-swatch input[type="color"] {
    width: 100%;
  }
}

/* ==============================
  ACCESSIBILITY KEYBOARD SECTION
============================== */

.a11y-contrast-v2-section::after {
  background: #eef0f6 !important;
}

.a11y-keyboard-section {
  isolation: isolate;
  position: relative;
  margin-top: -1px;
  background: #eef0f6;
  color: #141824;
  padding: clamp(162px, 13vw, 224px) 0 clamp(166px, 13vw, 230px);
  overflow: hidden;

  --a11y-keyboard-paper: #eef0f6;
  --a11y-keyboard-card: #ffffff;
  --a11y-keyboard-soft: #e4e7ef;
  --a11y-keyboard-ink: #141824;
  --a11y-keyboard-text: rgba(20, 24, 36, 0.72);
  --a11y-keyboard-muted: rgba(20, 24, 36, 0.52);
  --a11y-keyboard-line: rgba(20, 24, 36, 0.10);
  --a11y-keyboard-violet: var(--a11y-violet, #140c3d);
  --a11y-keyboard-violet-dark: var(--a11y-violet-dark, #08051a);
  --a11y-keyboard-panel: var(--a11y-panel, #071024);
  --a11y-keyboard-lime: var(--a11y-lime, #b9c85a);
  --a11y-keyboard-lime-hover: var(--a11y-lime-hover, #c7d765);
  --a11y-keyboard-red: var(--a11y-red, #ff4d4d);
  --a11y-keyboard-cut-a: var(--a11y-cut-a, 86px);
  --a11y-keyboard-cut-b: var(--a11y-cut-b, 64px);
  --a11y-keyboard-cut-c: var(--a11y-cut-c, 38px);
  --a11y-keyboard-loader-progress: 0%;
}

.a11y-keyboard-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 118px;
  z-index: 0;
  background: var(--a11y-keyboard-violet);
  clip-path: polygon(
    0 0,
    100% 0,
    100% var(--a11y-keyboard-cut-c),
    75% var(--a11y-keyboard-cut-c),
    75% var(--a11y-keyboard-cut-b),
    50% var(--a11y-keyboard-cut-b),
    50% var(--a11y-keyboard-cut-a),
    25% var(--a11y-keyboard-cut-a),
    25% 118px,
    0 118px
  );
}

.a11y-keyboard-section::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 118px;
  z-index: 0;
  background: var(--a11y-bg);
  clip-path: polygon(
    0 var(--a11y-keyboard-cut-a),
    25% var(--a11y-keyboard-cut-a),
    25% var(--a11y-keyboard-cut-b),
    50% var(--a11y-keyboard-cut-b),
    50% var(--a11y-keyboard-cut-c),
    75% var(--a11y-keyboard-cut-c),
    75% 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.a11y-keyboard-shell {
  position: relative;
  z-index: 1;
  width: min(1152px, calc(100vw - 96px));
  margin: 0 auto;
}

.a11y-keyboard-head {
  max-width: 900px;
  margin: 0 0 clamp(48px, 5vw, 72px);
}

.a11y-keyboard-label {
  width: fit-content;
  min-height: 38px;
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.a11y-keyboard-label span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--a11y-keyboard-violet);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-label strong {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  background: rgba(20, 12, 61, 0.10);
  color: var(--a11y-keyboard-violet);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-keyboard-head h2 {
  max-width: 900px;
  margin: 0;
  color: var(--a11y-keyboard-ink);
  font-size: clamp(38px, 4.25vw, 68px);
  line-height: 1.06;
  font-weight: 430;
  letter-spacing: -0.06em;
}

.a11y-keyboard-head h2 span {
  color: rgba(20, 24, 36, 0.58);
}

/* STAGE */

.a11y-keyboard-stage {
  position: relative;
  display: grid;
  gap: 28px;
}

.a11y-keyboard-viewport {
  position: relative;
  min-height: clamp(540px, 48vw, 680px);
  background: #e2e5ec;
  overflow: hidden;
}

.a11y-keyboard-slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  margin: 0;
  padding: clamp(34px, 4.2vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  opacity: 0;
  transform: translate3d(24px, 0, 0);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.a11y-keyboard-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.a11y-keyboard-product {
  min-width: 0;
}

.a11y-keyboard-copy {
  align-self: end;
  max-width: 430px;
  padding-bottom: 12px;
}

.a11y-keyboard-copy > span {
  display: block;
  margin: 0 0 18px;
  color: rgba(20, 24, 36, 0.52);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.a11y-keyboard-copy h3 {
  margin: 0;
  color: var(--a11y-keyboard-ink);
  font-size: clamp(30px, 3.1vw, 54px);
  line-height: 1.05;
  font-weight: 430;
  letter-spacing: -0.058em;
}

.a11y-keyboard-copy p {
  max-width: 410px;
  margin: 18px 0 0;
  color: var(--a11y-keyboard-text);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.4;
  font-weight: 430;
  letter-spacing: -0.035em;
}

/* SLIDE 1 */

.a11y-keyboard-browser {
  background: var(--a11y-keyboard-card);
 
  overflow: hidden;
}

.a11y-keyboard-browser-bar {
  min-height: 54px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 9px 9px 9px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--a11y-keyboard-line);
  background: #fbfcff;
}

.a11y-keyboard-browser-bar span {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.22);
}

.a11y-keyboard-browser-bar strong {
  justify-self: end;
  color: rgba(20, 24, 36, 0.48);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-keyboard-page {
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 18px;
}

.a11y-keyboard-nav {
  min-height: 50px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 0.5fr 0.9fr 0.68fr 0.34fr;
  align-items: center;
  gap: 13px;
  background: #f0f2f7;
}

.a11y-keyboard-nav i {
  height: 12px;
  display: block;
  border-radius: 0;
  background: rgba(20, 24, 36, 0.18);
}

.a11y-keyboard-nav i.is-current {
  height: 18px;
  background: var(--a11y-keyboard-violet);
  
}

.a11y-keyboard-canvas {
  display: grid;
  gap: 18px;
}

.a11y-keyboard-path-line {
  min-height: 46px;
  display: grid;
  grid-template-columns: 34px minmax(28px, 1fr) 34px minmax(28px, 1fr) 34px minmax(28px, 1fr) 34px;
  align-items: center;
  gap: 10px;
}

.a11y-keyboard-path-line span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.10);
  color: rgba(20, 24, 36, 0.54);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-path-line span.is-done {
  background: rgba(185, 200, 90, 0.30);
  color: #141824;
}

.a11y-keyboard-path-line span.is-current {
  background: var(--a11y-keyboard-violet);
  color: #ffffff;
}

.a11y-keyboard-path-line i {
  height: 3px;
  display: block;
  background: rgba(20, 24, 36, 0.14);
}

.a11y-keyboard-page-card {
  position: relative;
  min-height: 220px;
  padding: 34px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: #ffffff;
}

.a11y-keyboard-page-card strong,
.a11y-keyboard-page-card p {
  display: block;
  margin: 0;
  border-radius: 0;
}

.a11y-keyboard-page-card strong {
  width: 58%;
  height: 18px;
  background: rgba(20, 24, 36, 0.82);
}

.a11y-keyboard-page-card p {
  width: 82%;
  height: 12px;
  background: rgba(20, 24, 36, 0.20);
}

.a11y-keyboard-page-card p:nth-of-type(2) {
  width: 54%;
}

.a11y-keyboard-page-card button {
  width: fit-content;
  min-height: 42px;
  margin-top: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  background: var(--a11y-keyboard-blue);
  color: #050711;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-focus-box {
  position: absolute;
  right: 34px;
  bottom: 32px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: rgba(20, 12, 61, 0.08);

}

.a11y-keyboard-focus-box span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--a11y-keyboard-violet);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-path-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.a11y-keyboard-path-card {
  min-height: 112px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  background: #f8f9fc;
}

.a11y-keyboard-path-card img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  opacity: 0.78;
}

.a11y-keyboard-path-card span {
  color: rgba(20, 24, 36, 0.56);
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.a11y-keyboard-path-card strong {
  color: var(--a11y-keyboard-ink);
  font-size: 13px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.a11y-keyboard-path-card.is-current {
  background: rgba(20, 12, 61, 0.10);
}

.a11y-keyboard-path-card.is-done {
  background: rgba(185, 200, 90, 0.18);
}

/* SLIDE 2 */

.a11y-keyboard-trace-board {
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 18px;
  background: var(--a11y-keyboard-card);
 
}

.a11y-keyboard-trace-head {
  min-height: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.a11y-keyboard-trace-head span {
  color: rgba(20, 24, 36, 0.52);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-keyboard-trace-head strong {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  background: #eef0f6;
  color: rgba(20, 24, 36, 0.62);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-trace-screen {
  min-height: 302px;
  padding: 18px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  background: #f0f2f7;
}

.a11y-keyboard-trace-sidebar {
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: #ffffff;
}

.a11y-keyboard-trace-sidebar span {
  height: 12px;
  display: block;
  background: rgba(20, 24, 36, 0.16);
}

.a11y-keyboard-trace-sidebar span.is-active {
  height: 18px;
  background: var(--a11y-keyboard-violet);
  
}

.a11y-keyboard-trace-main {
  padding: 18px;
  display: grid;
  gap: 12px;
  background: #ffffff;
}

.a11y-keyboard-trace-row {
  position: relative;
  min-height: 50px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  background: rgba(20, 24, 36, 0.045);
}

.a11y-keyboard-trace-row i {
  width: 22px;
  height: 22px;
  display: block;
  background: rgba(20, 24, 36, 0.18);
}

.a11y-keyboard-trace-row span {
  height: 11px;
  display: block;
  background: rgba(20, 24, 36, 0.18);
}

.a11y-keyboard-trace-row.is-strong {
  background: rgba(185, 200, 90, 0.15);
}

.a11y-keyboard-trace-row.is-strong i {
  background: var(--a11y-keyboard-lime);
}

.a11y-keyboard-trace-row.is-missing {
  background: rgba(255, 77, 77, 0.09);
}

.a11y-keyboard-trace-row.is-missing i {
  background: var(--a11y-keyboard-red);
}

.a11y-keyboard-trace-row em {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  min-height: 28px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  background: rgba(255, 77, 77, 0.14);
  color: var(--a11y-keyboard-red);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.a11y-keyboard-trace-report {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.a11y-keyboard-trace-report div {
  min-height: 88px;
  padding: 14px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  background: #f8f9fc;
}

.a11y-keyboard-trace-report div.is-good {
  background: rgba(185, 200, 90, 0.18);
}

.a11y-keyboard-trace-report div.is-review {
  background: rgba(255, 77, 77, 0.09);
}

.a11y-keyboard-trace-report img {
  width: 17px;
  height: 17px;
  display: block;
  object-fit: contain;
}

.a11y-keyboard-trace-report span {
  color: rgba(20, 24, 36, 0.58);
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.a11y-keyboard-trace-report strong {
  color: var(--a11y-keyboard-ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* SLIDE 3 */

.a11y-keyboard-modal-scene {
  position: relative;
  min-height: 470px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--a11y-keyboard-card);
 
  overflow: hidden;
}

.a11y-keyboard-form-card {
  width: min(420px, 72%);
  padding: 24px;
  display: grid;
  gap: 12px;
  background: #f7f8fb;
}

.a11y-keyboard-form-row {
  min-height: 56px;
  padding: 0 14px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: #ffffff;
}

.a11y-keyboard-form-row span {
  color: rgba(20, 24, 36, 0.52);
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.a11y-keyboard-form-row strong {
  width: 82%;
  height: 10px;
  display: block;
  background: rgba(20, 24, 36, 0.16);
}

.a11y-keyboard-form-row.is-current {
  background: rgba(185, 200, 90, 0.18);
  
}

.a11y-keyboard-form-card button {
  width: fit-content;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  background: var(--a11y-keyboard-lime);
  color: #050711;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-modal-card {
  position: absolute;
  right: clamp(24px, 3vw, 36px);
  bottom: clamp(24px, 3vw, 36px);
  width: min(360px, 52%);
  padding: 22px;
  display: grid;
  gap: 16px;
  background: #ffffff;
  
}

.a11y-keyboard-modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
}

.a11y-keyboard-modal-head strong {
  color: var(--a11y-keyboard-ink);
  font-size: 18px;
  line-height: 1;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.a11y-keyboard-modal-head img {
  width: 18px;
  height: 18px;
  padding: 8px;
  background: #eef0f6;
  box-sizing: content-box;
  
}

.a11y-keyboard-modal-card p {
  height: 10px;
  margin: 0;
  display: block;
  background: rgba(20, 24, 36, 0.16);
}

.a11y-keyboard-modal-card p:nth-of-type(2) {
  width: 66%;
}

.a11y-keyboard-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.a11y-keyboard-modal-actions span {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  background: #eef0f6;
  color: rgba(20, 24, 36, 0.72);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.a11y-keyboard-modal-actions span.is-current {
  background: var(--a11y-keyboard-violet);
  color: #ffffff;
  
}

.a11y-keyboard-modal-note {
  position: absolute;
  left: clamp(24px, 3vw, 36px);
  bottom: clamp(24px, 3vw, 36px);
  min-height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 77, 77, 0.10);
  color: #981f1f;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.a11y-keyboard-modal-note img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

/* CONTROLS */

.a11y-keyboard-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.a11y-keyboard-control-btn {
  appearance: none;
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: #d5d8df;
  color: rgba(20, 24, 36, 0.62);
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.a11y-keyboard-control-btn:hover,
.a11y-keyboard-control-btn:focus-visible {
  outline: none;
  background: #c9ccd5;
  color: #141824;
  transform: translateY(-2px);
}

.a11y-keyboard-control-btn svg {
  width: 21px;
  height: 21px;
  display: block;
}

.a11y-keyboard-icon-play {
  display: none !important;
}

.a11y-keyboard-section.is-paused .a11y-keyboard-icon-pause {
  display: none !important;
}

.a11y-keyboard-section.is-paused .a11y-keyboard-icon-play {
  display: block !important;
}

.a11y-keyboard-progress-pill {
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 4px;
  background: #dfe2e8;
}

.a11y-keyboard-dot {
  appearance: none;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.34);
  cursor: pointer;
}

.a11y-keyboard-dot.is-active {
  background: var(--a11y-keyboard-violet);
}

.a11y-keyboard-loader {
  position: relative;
  width: 86px;
  height: 8px;
  display: block;
  border-radius: 4px;
  background: rgba(20, 24, 36, 0.16);
  overflow: hidden;
}

.a11y-keyboard-loader i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--a11y-keyboard-loader-progress);
  display: block;
  border-radius: 4px;
  background: var(--a11y-keyboard-lime);
}

/* MOTION */

.a11y-keyboard-section .a11y-keyboard-head,
.a11y-keyboard-section .a11y-keyboard-stage {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.a11y-keyboard-section.is-visible .a11y-keyboard-head,
.a11y-keyboard-section.is-visible .a11y-keyboard-stage {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.a11y-keyboard-section.is-visible .a11y-keyboard-stage {
  transition-delay: 120ms;
}

.a11y-keyboard-section.is-visible .a11y-keyboard-focus-box,
.a11y-keyboard-section.is-visible .a11y-keyboard-nav i.is-current,
.a11y-keyboard-section.is-visible .a11y-keyboard-trace-sidebar span.is-active,
.a11y-keyboard-section.is-visible .a11y-keyboard-modal-head img,
.a11y-keyboard-section.is-visible .a11y-keyboard-modal-actions span.is-current {
  animation: a11yKeyboardCavFocus 4.8s ease-in-out infinite;
}

@keyframes a11yKeyboardCavFocus {
  0%,
  100% {
   
  }

  46%,
  72% {
    
  }
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .a11y-keyboard-shell {
    width: min(920px, calc(100vw - 56px));
  }

  .a11y-keyboard-slide {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .a11y-keyboard-copy {
    align-self: start;
    max-width: 620px;
  }

  .a11y-keyboard-viewport {
    min-height: 860px;
  }
}

@media (max-width: 760px) {
  .a11y-keyboard-section {
    padding: 138px 0 154px;
  }

  .a11y-keyboard-section::before,
  .a11y-keyboard-section::after {
    height: 82px;
  }

  .a11y-keyboard-shell {
    width: min(100% - 36px, 620px);
  }

  .a11y-keyboard-head h2 {
    font-size: clamp(34px, 9.6vw, 48px);
    line-height: 1.08;
  }

  .a11y-keyboard-viewport {
    min-height: 980px;
  }

  .a11y-keyboard-slide {
    padding: 28px;
  }

  .a11y-keyboard-path-cards,
  .a11y-keyboard-trace-report {
    grid-template-columns: 1fr;
  }

  .a11y-keyboard-trace-screen {
    grid-template-columns: 1fr;
  }

  .a11y-keyboard-modal-scene {
    min-height: 720px;
  }

  .a11y-keyboard-form-card {
    width: 100%;
  }

  .a11y-keyboard-modal-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .a11y-keyboard-modal-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 18px;
  }

  .a11y-keyboard-controls {
    flex-wrap: wrap;
  }

  .a11y-keyboard-progress-pill {
    order: -1;
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a11y-keyboard-head,
  .a11y-keyboard-stage,
  .a11y-keyboard-slide,
  .a11y-keyboard-focus-box,
  .a11y-keyboard-nav i.is-current,
  .a11y-keyboard-trace-sidebar span.is-active,
  .a11y-keyboard-modal-head img,
  .a11y-keyboard-modal-actions span.is-current,
  .a11y-keyboard-control-btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .a11y-keyboard-section .a11y-keyboard-head,
  .a11y-keyboard-section .a11y-keyboard-stage {
    opacity: 1 !important;
  }
}


/* ==============================
  ACCESSIBILITY KEYBOARD SECTION
============================== */

.a11y-contrast-v2-section::after {
  background: #eef0f6;
}

.a11y-keyboard-section {
  isolation: isolate;
  position: relative;
  margin-top: -1px;
  background: #eef0f6;
  color: #141824;
  padding: clamp(108px, 9vw, 148px) 0 clamp(166px, 13vw, 230px);
  overflow: hidden;

  --a11y-keyboard-paper: #eef0f6;
  --a11y-keyboard-card: #ffffff;
  --a11y-keyboard-soft: #e4e7ef;
  --a11y-keyboard-ink: #141824;
  --a11y-keyboard-text: rgba(20, 24, 36, 0.72);
  --a11y-keyboard-muted: rgba(20, 24, 36, 0.52);
  --a11y-keyboard-line: rgba(20, 24, 36, 0.10);

  --a11y-keyboard-violet: var(--a11y-violet, #140c3d);
  --a11y-keyboard-violet-dark: var(--a11y-violet-dark, #08051a);
  --a11y-keyboard-panel: var(--a11y-panel, #071024);

  --a11y-keyboard-blue: var(--a11y-blue, #4ea8ff);
  --a11y-keyboard-blue-soft: rgba(78, 168, 255, 0.16);
  --a11y-keyboard-blue-mid: rgba(78, 168, 255, 0.32);
  --a11y-keyboard-blue-strong: rgba(78, 168, 255, 0.48);

  --a11y-keyboard-lime: var(--a11y-lime, #b9c85a);
  --a11y-keyboard-lime-hover: var(--a11y-lime-hover, #c7d765);
  --a11y-keyboard-red: var(--a11y-red, #ff4d4d);

  --a11y-keyboard-cut-a: var(--a11y-cut-a, 86px);
  --a11y-keyboard-cut-b: var(--a11y-cut-b, 64px);
  --a11y-keyboard-cut-c: var(--a11y-cut-c, 38px);
  --a11y-keyboard-loader-progress: 0%;
}

.a11y-keyboard-section::before {
  content: none;
  display: none;
}

.a11y-keyboard-section::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 118px;
  z-index: 0;
  background: var(--a11y-bg);
  clip-path: polygon(
    0 var(--a11y-keyboard-cut-a),
    25% var(--a11y-keyboard-cut-a),
    25% var(--a11y-keyboard-cut-b),
    50% var(--a11y-keyboard-cut-b),
    50% var(--a11y-keyboard-cut-c),
    75% var(--a11y-keyboard-cut-c),
    75% 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.a11y-keyboard-shell {
  position: relative;
  z-index: 1;
  width: min(1152px, calc(100vw - 96px));
  margin: 0 auto;
}

.a11y-keyboard-head {
  max-width: 900px;
  margin: 0 0 clamp(48px, 5vw, 72px);
}

.a11y-keyboard-label {
  width: fit-content;
  min-height: 38px;
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.a11y-keyboard-label span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--a11y-keyboard-blue);
  color: #050711;
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-label strong {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  background: var(--a11y-keyboard-blue);
  color: #050711;
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-keyboard-head h2 {
  max-width: 900px;
  margin: 0;
  color: var(--a11y-keyboard-ink);
  font-size: clamp(38px, 4.25vw, 68px);
  line-height: 1.06;
  font-weight: 430;
  letter-spacing: -0.06em;
}

.a11y-keyboard-head h2 span {
  color: rgba(20, 24, 36, 0.58);
}

/* STAGE */

.a11y-keyboard-stage {
  position: relative;
  display: grid;
  gap: 28px;
}

.a11y-keyboard-viewport {
  position: relative;
  min-height: clamp(540px, 48vw, 680px);
  background: #e2e5ec;
  overflow: hidden;
}

.a11y-keyboard-slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  margin: 0;
  padding: clamp(34px, 4.2vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  opacity: 0;
  transform: translate3d(24px, 0, 0);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.a11y-keyboard-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.a11y-keyboard-product {
  min-width: 0;
}

.a11y-keyboard-copy {
  align-self: end;
  max-width: 430px;
  padding-bottom: 12px;
}

.a11y-keyboard-copy > span {
  display: block;
  margin: 0 0 18px;
  color: rgba(20, 24, 36, 0.52);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.a11y-keyboard-copy h3 {
  margin: 0;
  color: var(--a11y-keyboard-ink);
  font-size: clamp(30px, 3.1vw, 54px);
  line-height: 1.05;
  font-weight: 430;
  letter-spacing: -0.058em;
}

.a11y-keyboard-copy p {
  max-width: 410px;
  margin: 18px 0 0;
  color: var(--a11y-keyboard-text);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.4;
  font-weight: 430;
  letter-spacing: -0.035em;
}

/* SLIDE 1 */

.a11y-keyboard-browser {
  background: var(--a11y-keyboard-card);
 
  overflow: hidden;
}

.a11y-keyboard-browser-bar {
  min-height: 54px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 9px 9px 9px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--a11y-keyboard-line);
  background: #fbfcff;
}

.a11y-keyboard-browser-bar span {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.22);
}

.a11y-keyboard-browser-bar strong {
  justify-self: end;
  color: rgba(20, 24, 36, 0.48);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-keyboard-page {
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 18px;
}

.a11y-keyboard-nav {
  min-height: 50px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 0.5fr 0.9fr 0.68fr 0.34fr;
  align-items: center;
  gap: 13px;
  background: #f0f2f7;
}

.a11y-keyboard-nav i {
  height: 12px;
  display: block;
  border-radius: 0;
  background: rgba(20, 24, 36, 0.18);
}

.a11y-keyboard-nav i.is-current {
  height: 18px;
  background: var(--a11y-keyboard-violet);
  
}

.a11y-keyboard-canvas {
  display: grid;
  gap: 18px;
}

.a11y-keyboard-path-line {
  min-height: 46px;
  display: grid;
  grid-template-columns: 34px minmax(28px, 1fr) 34px minmax(28px, 1fr) 34px minmax(28px, 1fr) 34px;
  align-items: center;
  gap: 10px;
}

.a11y-keyboard-path-line span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.10);
  color: rgba(20, 24, 36, 0.54);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-path-line span.is-done {
  background: var(--a11y-keyboard-blue-soft);
  color: #141824;
}

.a11y-keyboard-path-line span.is-current {
  background: var(--a11y-keyboard-blue);
  color: #050711;
}

.a11y-keyboard-path-line i {
  height: 3px;
  display: block;
  background: rgba(20, 24, 36, 0.14);
}

.a11y-keyboard-page-card {
  position: relative;
  min-height: 220px;
  padding: 34px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: #ffffff;
}

.a11y-keyboard-page-card strong,
.a11y-keyboard-page-card p {
  display: block;
  margin: 0;
  border-radius: 0;
}

.a11y-keyboard-page-card strong {
  width: 58%;
  height: 18px;
  background: rgba(20, 24, 36, 0.82);
}

.a11y-keyboard-page-card p {
  width: 82%;
  height: 12px;
  background: rgba(20, 24, 36, 0.20);
}

.a11y-keyboard-page-card p:nth-of-type(2) {
  width: 54%;
}

.a11y-keyboard-page-card button {
  width: fit-content;
  min-height: 42px;
  margin-top: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  background: var(--a11y-keyboard-lime);
  color: #050711;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-focus-box {
  position: absolute;
  right: 34px;
  bottom: 32px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: rgba(78, 168, 255, 0.08);
  
}

.a11y-keyboard-focus-box span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--a11y-keyboard-blue);
  color: #050711;
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-path-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.a11y-keyboard-path-card {
  min-height: 112px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  background: #f8f9fc;
}

.a11y-keyboard-path-card img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  opacity: 0.78;
}

.a11y-keyboard-path-card span {
  color: rgba(20, 24, 36, 0.56);
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.a11y-keyboard-path-card strong {
  color: var(--a11y-keyboard-ink);
  font-size: 13px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.a11y-keyboard-path-card.is-current {
  background: var(--a11y-keyboard-blue-soft);
}

.a11y-keyboard-path-card.is-done {
  background: rgba(78, 168, 255, 0.10);
}

/* SLIDE 2 */

.a11y-keyboard-trace-board {
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 18px;
  background: var(--a11y-keyboard-card);
 
}

.a11y-keyboard-trace-head {
  min-height: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.a11y-keyboard-trace-head span {
  color: rgba(20, 24, 36, 0.52);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a11y-keyboard-trace-head strong {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  background: #eef0f6;
  color: rgba(20, 24, 36, 0.62);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-trace-screen {
  min-height: 302px;
  padding: 18px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  background: #f0f2f7;
}

.a11y-keyboard-trace-sidebar {
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: #ffffff;
}

.a11y-keyboard-trace-sidebar span {
  height: 12px;
  display: block;
  background: rgba(20, 24, 36, 0.16);
}

.a11y-keyboard-trace-sidebar span.is-active {
  height: 18px;
  background: var(--a11y-keyboard-violet);
 
}

.a11y-keyboard-trace-main {
  padding: 18px;
  display: grid;
  gap: 12px;
  background: #ffffff;
}

.a11y-keyboard-trace-row {
  position: relative;
  min-height: 50px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  background: rgba(20, 24, 36, 0.045);
}

.a11y-keyboard-trace-row i {
  width: 22px;
  height: 22px;
  display: block;
  background: rgba(20, 24, 36, 0.18);
}

.a11y-keyboard-trace-row span {
  height: 11px;
  display: block;
  background: rgba(20, 24, 36, 0.18);
}

.a11y-keyboard-trace-row.is-strong {
  background: var(--a11y-keyboard-blue-soft);
}

.a11y-keyboard-trace-row.is-strong i {
  background: var(--a11y-keyboard-blue);
}

.a11y-keyboard-trace-row.is-missing {
  background: rgba(255, 77, 77, 0.09);
}

.a11y-keyboard-trace-row.is-missing i {
  background: var(--a11y-keyboard-red);
}

.a11y-keyboard-trace-row em {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  min-height: 28px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  background: rgba(255, 77, 77, 0.14);
  color: var(--a11y-keyboard-red);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.a11y-keyboard-trace-report {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.a11y-keyboard-trace-report div {
  min-height: 88px;
  padding: 14px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  background: #f8f9fc;
}

.a11y-keyboard-trace-report div.is-good {
  background: var(--a11y-keyboard-blue-soft);
}

.a11y-keyboard-trace-report div.is-review {
  background: rgba(255, 77, 77, 0.09);
}

.a11y-keyboard-trace-report img {
  width: 17px;
  height: 17px;
  display: block;
  object-fit: contain;
}

.a11y-keyboard-trace-report span {
  color: rgba(20, 24, 36, 0.58);
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.a11y-keyboard-trace-report strong {
  color: var(--a11y-keyboard-ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* SLIDE 3 */

.a11y-keyboard-modal-scene {
  position: relative;
  min-height: 470px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--a11y-keyboard-card);
 
  overflow: hidden;
}

.a11y-keyboard-form-card {
  width: min(420px, 72%);
  padding: 24px;
  display: grid;
  gap: 12px;
  background: #f7f8fb;
}

.a11y-keyboard-form-row {
  min-height: 56px;
  padding: 0 14px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: #ffffff;
}

.a11y-keyboard-form-row span {
  color: rgba(20, 24, 36, 0.52);
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.a11y-keyboard-form-row strong {
  width: 82%;
  height: 10px;
  display: block;
  background: rgba(20, 24, 36, 0.16);
}

.a11y-keyboard-form-row.is-current {
  background: var(--a11y-keyboard-blue-soft);
  
}

.a11y-keyboard-form-card button {
  width: fit-content;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  background: var(--a11y-keyboard-lime);
  color: #050711;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
}

.a11y-keyboard-modal-card {
  position: absolute;
  right: clamp(24px, 3vw, 36px);
  bottom: clamp(24px, 3vw, 36px);
  width: min(360px, 52%);
  padding: 22px;
  display: grid;
  gap: 16px;
  background: #ffffff;
  
}

.a11y-keyboard-modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
}

.a11y-keyboard-modal-head strong {
  color: var(--a11y-keyboard-ink);
  font-size: 18px;
  line-height: 1;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.a11y-keyboard-modal-head img {
  width: 18px;
  height: 18px;
  padding: 8px;
  background: #eef0f6;
  box-sizing: content-box;
 
}

.a11y-keyboard-modal-card p {
  height: 10px;
  margin: 0;
  display: block;
  background: rgba(20, 24, 36, 0.16);
}

.a11y-keyboard-modal-card p:nth-of-type(2) {
  width: 66%;
}

.a11y-keyboard-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.a11y-keyboard-modal-actions span {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  background: #eef0f6;
  color: rgba(20, 24, 36, 0.72);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.a11y-keyboard-modal-actions span.is-current {
  background: var(--a11y-keyboard-violet);
  color: #ffffff;
  
}

.a11y-keyboard-modal-note {
  position: absolute;
  left: clamp(24px, 3vw, 36px);
  bottom: clamp(24px, 3vw, 36px);
  min-height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 77, 77, 0.10);
  color: #981f1f;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.a11y-keyboard-modal-note img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

/* CONTROLS */

.a11y-keyboard-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.a11y-keyboard-control-btn {
  appearance: none;
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: #d5d8df;
  color: rgba(20, 24, 36, 0.62);
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.a11y-keyboard-control-btn:hover,
.a11y-keyboard-control-btn:focus-visible {
  outline: none;
  background: #c9ccd5;
  color: #141824;
  transform: translateY(-2px);
}

.a11y-keyboard-control-btn svg {
  width: 21px;
  height: 21px;
  display: block;
}

.a11y-keyboard-icon-play {
  display: none !important;
}

.a11y-keyboard-section.is-paused .a11y-keyboard-icon-pause {
  display: none !important;
}

.a11y-keyboard-section.is-paused .a11y-keyboard-icon-play {
  display: block !important;
}

.a11y-keyboard-progress-pill {
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 4px;
  background: #dfe2e8;
}

.a11y-keyboard-dot {
  appearance: none;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.34);
  cursor: pointer;
}

.a11y-keyboard-dot.is-active {
  background: var(--a11y-keyboard-blue);
}

.a11y-keyboard-loader {
  position: relative;
  width: 86px;
  height: 8px;
  display: block;
  border-radius: 4px;
  background: rgba(20, 24, 36, 0.16);
  overflow: hidden;
}

.a11y-keyboard-loader i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--a11y-keyboard-loader-progress);
  display: block;
  border-radius: 4px;
  background: var(--a11y-keyboard-blue);
}

/* MOTION */

.a11y-keyboard-section .a11y-keyboard-head,
.a11y-keyboard-section .a11y-keyboard-stage {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.a11y-keyboard-section.is-visible .a11y-keyboard-head,
.a11y-keyboard-section.is-visible .a11y-keyboard-stage {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.a11y-keyboard-section.is-visible .a11y-keyboard-stage {
  transition-delay: 120ms;
}

.a11y-keyboard-section.is-visible .a11y-keyboard-focus-box,
.a11y-keyboard-section.is-visible .a11y-keyboard-nav i.is-current,
.a11y-keyboard-section.is-visible .a11y-keyboard-trace-sidebar span.is-active,
.a11y-keyboard-section.is-visible .a11y-keyboard-modal-head img,
.a11y-keyboard-section.is-visible .a11y-keyboard-modal-actions span.is-current {
  animation: a11yKeyboardCavFocus 4.8s ease-in-out infinite;
}

@keyframes a11yKeyboardCavFocus {
  0%,
  100% {
   
  }

  46%,
  72% {
   
  }
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .a11y-keyboard-shell {
    width: min(920px, calc(100vw - 56px));
  }

  .a11y-keyboard-slide {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .a11y-keyboard-copy {
    align-self: start;
    max-width: 620px;
  }

  .a11y-keyboard-viewport {
    min-height: 860px;
  }
}

@media (max-width: 760px) {
  .a11y-keyboard-section {
    padding: 96px 0 154px;
  }

  .a11y-keyboard-section::after {
    height: 82px;
  }

  .a11y-keyboard-shell {
    width: min(100% - 36px, 620px);
  }

  .a11y-keyboard-head h2 {
    font-size: clamp(34px, 9.6vw, 48px);
    line-height: 1.08;
  }

  .a11y-keyboard-viewport {
    min-height: 980px;
  }

  .a11y-keyboard-slide {
    padding: 28px;
  }

  .a11y-keyboard-path-cards,
  .a11y-keyboard-trace-report {
    grid-template-columns: 1fr;
  }

  .a11y-keyboard-trace-screen {
    grid-template-columns: 1fr;
  }

  .a11y-keyboard-modal-scene {
    min-height: 720px;
  }

  .a11y-keyboard-form-card {
    width: 100%;
  }

  .a11y-keyboard-modal-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .a11y-keyboard-modal-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 18px;
  }

  .a11y-keyboard-controls {
    flex-wrap: wrap;
  }

  .a11y-keyboard-progress-pill {
    order: -1;
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a11y-keyboard-head,
  .a11y-keyboard-stage,
  .a11y-keyboard-slide,
  .a11y-keyboard-focus-box,
  .a11y-keyboard-nav i.is-current,
  .a11y-keyboard-trace-sidebar span.is-active,
  .a11y-keyboard-modal-head img,
  .a11y-keyboard-modal-actions span.is-current,
  .a11y-keyboard-control-btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .a11y-keyboard-section .a11y-keyboard-head,
  .a11y-keyboard-section .a11y-keyboard-stage {
    opacity: 1 !important;
  }
}
/* ==============================
  KEYBOARD LABEL FIX
============================== */

.a11y-keyboard-label span {
  background: var(--a11y-blue, #4ea8ff);
  color: #050711;
}

.a11y-keyboard-label strong {
  background: #dfe2e8;
  color: #140c3d;
  border-radius: 0;
}

/* ==============================
  KEYBOARD MISSING FOCUS LABEL POSITION FIX
============================== */

.a11y-keyboard-trace-screen,
.a11y-keyboard-trace-main,
.a11y-keyboard-trace-row {
  overflow: visible !important;
}

.a11y-keyboard-trace-row.is-missing {
  margin-bottom: 26px !important;
  background: rgba(20, 24, 36, 0.045) !important;
}

.a11y-keyboard-trace-row.is-missing em {
  position: absolute !important;
  top: auto !important;
  right: 14px !important;
  bottom: -22px !important;
  transform: none !important;

  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;

  background: transparent !important;
  color: var(--a11y-red, #ff4d4d) !important;

  font-size: 10px !important;
  line-height: 1 !important;
  font-style: normal !important;
  font-weight: 760 !important;
  letter-spacing: 0.03em !important;
  text-transform: lowercase !important;
  white-space: nowrap !important;

  z-index: 5 !important;
  pointer-events: none !important;
}

/* ==============================
  ACCESSIBILITY NEXT STEPS + FINAL CTA
============================== */

/* Connect Keyboard into the navy section */
.a11y-keyboard-section::after {
  background: var(--a11y-bg, #01030f) !important;
}

/* ==============================
  ACCESSIBILITY NEXT STEPS SECTION
  navy section with violet cutout bottom
============================== */

.a11y-next-section {
  isolation: isolate;
  position: relative;
  margin-top: -1px;
  background: var(--a11y-bg, #01030f);
  color: var(--a11y-ink, #f7fbff);
  overflow: hidden;
  padding: clamp(132px, 12vw, 210px) 0 clamp(178px, 14vw, 260px);
}

.a11y-next-section::before {
  content: none;
  display: none;
}

.a11y-next-section::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 118px;
  z-index: 1;
  background: var(--a11y-violet, #140c3d);
  clip-path: polygon(
    0 var(--a11y-cut-a),
    25% var(--a11y-cut-a),
    25% var(--a11y-cut-b),
    50% var(--a11y-cut-b),
    50% var(--a11y-cut-c),
    75% var(--a11y-cut-c),
    75% 0,
    100% 0,
    100% 100%,
    0 100%
  );
  pointer-events: none;
}

.a11y-next-shell {
  position: relative;
  z-index: 2;
  width: min(1152px, calc(100vw - 96px));
  margin: 0 auto;
}

.a11y-next-copy {
  max-width: 860px;
}

.a11y-next-copy h2 {
  margin: 0;
  max-width: 760px;
  color: var(--a11y-ink, #f7fbff);
  font-size: clamp(38px, 4.4vw, 70px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.062em;
}

.a11y-next-links {
  margin-top: clamp(42px, 4.8vw, 70px);
  display: grid;
  gap: clamp(24px, 2.4vw, 34px);
}

.a11y-next-links a {
  width: fit-content;
  max-width: 100%;
  display: inline-grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: rgba(197, 206, 231, 0.72);
  cursor: pointer;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.a11y-next-links a * {
  cursor: pointer;
}

.a11y-next-links a span {
  color: var(--a11y-blue, #4ea8ff);
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1;
  font-weight: 780;
  transform: translateY(-1px);
}

.a11y-next-links a strong {
  min-width: 0;
  overflow: hidden;
  color: currentColor;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.18;
  font-weight: 520;
  letter-spacing: -0.034em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.a11y-next-links a:hover,
.a11y-next-links a:focus-visible {
  color: var(--a11y-ink, #f7fbff);
  transform: translateX(4px);
  outline: none;
}

.a11y-next-links a:hover span,
.a11y-next-links a:focus-visible span {
  color: var(--a11y-lime, #b9c85a);
}

/* ==============================
  ACCESSIBILITY FINAL CTA SECTION
  violet section connected directly to navy cutout
============================== */

.a11y-final-section {
  isolation: isolate;
  position: relative;
  margin-top: -1px;
  background: var(--a11y-violet, #140c3d);
  color: var(--a11y-ink, #f7fbff);
  overflow: hidden;
  padding: clamp(150px, 14vw, 230px) 0 clamp(150px, 12vw, 220px);
}

.a11y-final-section::before,
.a11y-final-section::after {
  content: none;
  display: none;
}

.a11y-final-shell {
  position: relative;
  z-index: 2;
  width: min(1152px, calc(100vw - 96px));
  margin: 0 auto;
  min-height: clamp(330px, 32vw, 440px);
}

.a11y-final-copy {
  min-width: 0;
  max-width: min(100%, 1040px);
}

/* ==============================
  FINAL CTA TITLE LINE FIX
============================== */


.a11y-final-copy h2 {
  margin: 0;
  max-width: 1040px;
  color: rgba(197, 206, 231, 0.76);
  font-size: clamp(34px, 3.35vw, 60px);
  line-height: 1.02;
  font-weight: 430;
  letter-spacing: -0.06em;
}


.a11y-final-copy h2 span {
  display: inline;
  margin: 0;
  max-width: none;
}


.a11y-final-copy h2 .a11y-final-title-line {
  color: var(--a11y-ink, #f7fbff);
  white-space: normal;

}


.a11y-final-actions {
  margin-top: clamp(42px, 4.5vw, 66px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.a11y-final-button {
  min-width: 178px;
}

.a11y-final-secondary {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.75px solid rgba(185, 200, 90, 0.54);
  border-radius: 4px;
  background: rgba(247, 251, 255, 0.025);
  color: var(--a11y-ink, #f7fbff);
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.018em;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.a11y-final-secondary:hover,
.a11y-final-secondary:focus-visible {
  background: rgba(185, 200, 90, 0.10);
  border-color: rgba(185, 200, 90, 0.76);
  color: var(--a11y-ink, #f7fbff);
  outline: none;
}

.a11y-final-proof {
  position: absolute;
  top: clamp(-14px, -0.8vw, -6px);
  right: clamp(-24px, -1.4vw, -10px);
  min-width: 0;
  width: min(230px, 26vw);
  padding-top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  color: rgba(247, 251, 255, 0.82);
}

.a11y-final-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  line-height: 0;
}

.a11y-final-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.74;
  filter:
    brightness(0)
    saturate(100%)
    invert(82%)
    sepia(11%)
    saturate(412%)
    hue-rotate(185deg)
    brightness(96%)
    contrast(91%);
}

.a11y-final-proof-copy {
  display: grid;
  gap: 8px;
}

.a11y-final-proof-copy strong {
  margin: 0;
  color: var(--a11y-ink, #f7fbff);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.a11y-final-proof-copy span {
  color: rgba(247, 251, 255, 0.78);
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.38;
  font-weight: 500;
}

/* Scroll reveal */

.a11y-next-copy,
.a11y-final-copy,
.a11y-final-proof {
  opacity: var(--a11y-end-opacity, 0.18);
  transform: translate3d(0, var(--a11y-end-y, 32px), 0);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.a11y-next-section.is-visible .a11y-next-copy,
.a11y-final-section.is-visible .a11y-final-copy,
.a11y-final-section.is-visible .a11y-final-proof {
  --a11y-end-opacity: 1;
  --a11y-end-y: 0px;
}

/* Responsive */

@media (max-width: 1120px) {
  .a11y-next-shell,
  .a11y-final-shell {
    width: min(920px, calc(100vw - 56px));
  }

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

  .a11y-final-proof {
    position: static;
    width: auto;
    max-width: 460px;
    padding-top: 0;
    margin-top: clamp(38px, 6vw, 64px);
  }

  .a11y-final-proof-copy span {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .a11y-next-section {
    padding: 104px 0 154px;
  }

  .a11y-next-section::after {
    height: 82px;
  }

  .a11y-final-section {
    padding: 128px 0 150px;
  }

  .a11y-next-shell,
  .a11y-final-shell {
    width: min(100% - 36px, 620px);
  }

  .a11y-next-copy h2,
  .a11y-final-copy h2 {
    font-size: clamp(39px, 11vw, 58px);
    line-height: 1.07;
  }

  .a11y-final-copy h2 .a11y-final-title-line {
    white-space: normal;
  }

  .a11y-next-links a {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .a11y-next-links a strong {
    white-space: normal;
  }

  .a11y-final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .a11y-final-button,
  .a11y-final-secondary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a11y-next-copy,
  .a11y-final-copy,
  .a11y-final-proof {
    opacity: 1;
    transform: none;
    transition: none;
  }
}






























































































































































