:root {
  --stage2-green: #0f4430;
  --stage2-green-deep: #0f3323;
  --stage2-gold: #c4a64e;
  --stage2-gold-deep: #b8923a;
  --stage2-gold-readable: #70551d;
  --stage2-cream: #fbf7ec;
  --stage2-cream-bright: #fffdf7;
  --stage2-ink: #26261f;
  --stage2-muted: #6e6a5e;
  --stage2-muted-strong: #575246;
  --stage2-soft: #e8e1ce;
  --stage2-line: #ded5bd;
  --stage2-sage: #c3d3b2;
  --stage2-error: #a35a3e;
  --stage2-shadow: 0 14px 34px rgba(15, 68, 48, 0.08);
  --stage2-shadow-lift: 0 18px 42px rgba(15, 68, 48, 0.12);
  --stage2-surface-shadow: 0 1px 2px rgba(15, 68, 48, 0.04), 0 12px 32px rgba(15, 68, 48, 0.055);
  --stage2-radius: 8px;
  --stage2-radius-card: 10px;
  --stage2-ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --stage2-display: "Bitter", Georgia, serif;
  --stage2-body: "Source Sans 3", Arial, sans-serif;
  --stage2-arabic: "Cairo", "Noto Sans Arabic", sans-serif;
}

@keyframes stage2SignalPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(196, 166, 78, 0.48);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(196, 166, 78, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(196, 166, 78, 0);
  }
}

@keyframes stage2Bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@keyframes stage2Skeleton {
  0% {
    background-position: 180% 0;
  }

  100% {
    background-position: -180% 0;
  }
}

html {
  scroll-behavior: smooth;
}

.stage2-page,
.stage2-feedback,
.stage2-resources {
  min-height: 100vh;
  margin: 0;
  color: var(--stage2-ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.82), rgba(251, 247, 236, 0) 420px),
    var(--stage2-cream);
  font-family: var(--stage2-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.stage2-page *,
.stage2-page *::before,
.stage2-page *::after,
.stage2-feedback *,
.stage2-feedback *::before,
.stage2-feedback *::after,
.stage2-resources *,
.stage2-resources *::before,
.stage2-resources *::after {
  box-sizing: border-box;
}

.stage2-page a,
.stage2-feedback a,
.stage2-resources a {
  color: inherit;
}

.stage2-page :is(a, button, input, select, textarea):focus-visible,
.stage2-feedback :is(a, button, input, select, textarea):focus-visible,
.stage2-resources :is(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #f1cf67;
  outline-offset: 4px;
}

.stage2-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.stage2-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(15, 68, 48, 0.96);
  border-bottom: 1px solid rgba(196, 166, 78, 0.28);
  box-shadow: 0 10px 26px rgba(15, 51, 35, 0.16);
  backdrop-filter: blur(12px);
}

.stage2-header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stage2-header-inner.is-cobrand {
  display: grid;
  grid-template-columns: minmax(320px, auto) minmax(0, 1fr);
  align-items: center;
}

.stage2-header-inner.is-cobrand.is-logo-only {
  grid-template-columns: minmax(0, 1fr);
}

.stage2-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  gap: 16px;
  border: 1px solid rgba(251, 247, 236, 0.1);
  border-radius: 10px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.stage2-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.stage2-brand img {
  display: block;
  width: auto;
  height: 34px;
}

.stage2-brand-lockup .stage2-brand {
  flex: 0 0 auto;
  padding-right: 18px;
  border-right: 1px solid rgba(251, 247, 236, 0.32);
}

.stage2-header-inner.is-cobrand .stage2-nav {
  justify-self: end;
  justify-content: flex-end;
}

.stage2-header-partner {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.stage2-brand-lockup .stage2-header-partner {
  flex: 0 1 auto;
}

.stage2-header-partner img {
  display: block;
  width: auto;
  height: 36px;
  max-width: 150px;
  object-fit: contain;
}

.stage2-page:not(.stage2-guide) .stage2-brand-lockup .stage2-brand img,
.stage2-resources .stage2-brand-lockup .stage2-brand img {
  height: 36px;
}

.stage2-page:not(.stage2-guide) .stage2-brand-lockup .stage2-header-partner img,
.stage2-resources .stage2-brand-lockup .stage2-header-partner img {
  height: 34px;
  max-width: 140px;
}

.stage2-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.stage2-nav a,
.stage2-nav button,
.stage2-link-pill {
  border: 1px solid rgba(251, 247, 236, 0.2);
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--stage2-cream);
  background: transparent;
  font: 700 12px/1 var(--stage2-body);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.18s var(--stage2-ease),
    border-color 0.18s var(--stage2-ease),
    color 0.18s var(--stage2-ease),
    transform 0.18s var(--stage2-ease);
}

.stage2-nav a:hover,
.stage2-nav button:hover,
.stage2-link-pill:hover {
  border-color: rgba(251, 247, 236, 0.42);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-1px);
}

.stage2-nav .is-primary,
.stage2-link-pill.is-primary {
  color: var(--stage2-green);
  background: var(--stage2-gold);
  border-color: var(--stage2-gold);
  box-shadow: 0 8px 18px rgba(196, 166, 78, 0.14);
}

.stage2-guide .stage2-header {
  box-shadow: 0 8px 20px rgba(15, 51, 35, 0.12);
}

.stage2-guide .stage2-header-inner,
.stage2-guide .stage2-container,
.stage2-guide-footer .stage2-container {
  width: min(1180px, calc(100% - 88px));
}

.stage2-guide .stage2-header-inner {
  min-height: 60px;
}

.stage2-guide .stage2-brand img {
  height: 38px;
}

.stage2-guide .stage2-brand {
  min-height: 44px;
}

.stage2-guide .stage2-header-partner img {
  height: 37px;
  max-width: 152px;
}

.stage2-guide .stage2-nav {
  gap: 18px;
}

.stage2-guide .stage2-nav button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-color: transparent;
  border-radius: 0;
  padding: 10px 0 9px;
  color: rgba(251, 247, 236, 0.84);
  background: transparent;
  letter-spacing: 0;
  text-transform: none;
}

.stage2-guide .stage2-nav button.is-active,
.stage2-guide .stage2-nav button[aria-current="page"] {
  color: var(--stage2-cream);
  border-color: transparent;
  background: transparent;
  font-weight: 800;
}

.stage2-guide .stage2-nav button.is-active::after,
.stage2-guide .stage2-nav button[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: min(100%, 64px);
  height: 2px;
  border-radius: 999px;
  background: var(--stage2-gold);
  transform: translateX(-50%);
}

.stage2-guide .stage2-nav button.is-active:hover,
.stage2-guide .stage2-nav button[aria-current="page"]:hover {
  border-color: transparent;
  background: transparent;
}

.stage2-guide .stage2-nav button.is-primary {
  min-width: 144px;
  border: 1px solid var(--stage2-gold);
  border-radius: 8px;
  padding: 13px 18px;
  color: var(--stage2-green);
  background: var(--stage2-gold);
  font-weight: 800;
}

.stage2-view[hidden] {
  display: none !important;
}

.stage2-floatnav {
  position: fixed;
  z-index: 70;
  top: 50%;
  right: 20px;
  width: auto;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.stage2-floatnav::before {
  content: "";
  position: absolute;
  top: 19px;
  right: 18px;
  bottom: 19px;
  width: 2px;
  background: #e0d8c4;
  z-index: 0;
}

.stage2-floatnav button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  padding: 3px;
  color: var(--stage2-green);
  background: transparent;
  font-family: var(--stage2-body);
  text-align: right;
  pointer-events: auto;
  cursor: pointer;
}

.stage2-floatnav button::after {
  content: none;
}

.stage2-floatnav-label,
.stage2-floatnav-label span,
.stage2-floatnav-label small {
  position: static;
  z-index: 1;
  width: auto;
  text-align: right;
}

.stage2-floatnav-label {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border: 1px solid #e7dfcc;
  border-radius: 9px;
  padding: 7px 12px;
  color: #4f4b40;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 9px rgba(15, 68, 48, 0.1);
  font-family: var(--stage2-display);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, transform 0.18s ease;
}

.stage2-floatnav-label span {
  display: block;
}

.stage2-floatnav-label small {
  display: block;
  margin-top: 2px;
  color: var(--stage2-gold-readable);
  font-family: var(--stage2-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.stage2-floatnav button.is-active .stage2-floatnav-label {
  border-color: var(--stage2-gold);
  color: var(--stage2-green);
  background: #fff;
  box-shadow: 0 3px 12px rgba(15, 68, 48, 0.14);
}

.stage2-floatnav button.is-active .stage2-floatnav-label small {
  color: var(--stage2-gold-readable);
}

.stage2-floatnav strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 2px solid #e7dfcc;
  border-radius: 50%;
  color: var(--stage2-gold-readable);
  background: #fff;
  box-shadow: 0 2px 9px rgba(15, 68, 48, 0.12);
  font-family: var(--stage2-display);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.stage2-floatnav button.is-active strong {
  border-color: var(--stage2-gold);
  background: var(--stage2-gold);
  color: var(--stage2-green);
  box-shadow: 0 3px 12px rgba(196, 166, 78, 0.4);
}

.stage2-floatnav button.is-complete strong {
  border-color: var(--stage2-gold);
  background: #ebdcb4;
  color: var(--stage2-green);
}

.stage2-floatnav button:hover > .stage2-floatnav-label {
  box-shadow: 0 4px 16px rgba(15, 68, 48, 0.16);
}

.stage2-floatnav button:hover > strong {
  transform: scale(1.06);
}

.stage2-overview-hero {
  position: relative;
  overflow: hidden;
  color: var(--stage2-cream);
  background:
    linear-gradient(135deg, rgba(12, 51, 33, 0.96) 0%, rgba(15, 68, 48, 0.98) 56%, rgba(7, 48, 30, 0.96) 100%),
    var(--stage2-green);
}

.stage2-overview-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 166, 78, 0.42), transparent);
  pointer-events: none;
}

.stage2-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  mix-blend-mode: screen;
  pointer-events: none;
}

.stage2-overview-hero .stage2-container {
  position: relative;
  z-index: 1;
  padding: clamp(38px, 4.6vw, 58px) 0 34px;
}

.stage2-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
}

.stage2-overview-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--stage2-cream);
  font-family: var(--stage2-display);
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.stage2-guide .stage2-title {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
}

.stage2-overview-copy h1 span,
.stage2-overview-copy .stage2-arabic span {
  color: var(--stage2-gold);
}

.stage2-overview-copy .stage2-arabic {
  max-width: 760px;
  color: rgba(251, 247, 236, 0.9);
  font-size: clamp(22px, 2.8vw, 32px);
}

.stage2-overview-copy .stage2-lede {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(251, 247, 236, 0.86);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.52;
}

.stage2-difference-card {
  position: relative;
  min-height: 0;
  border: 1px solid #eadfca;
  border-radius: 16px;
  padding: 28px 28px;
  color: var(--stage2-green);
  background: var(--stage2-cream-bright);
  box-shadow: 0 18px 40px rgba(6, 35, 22, 0.15);
}

.stage2-difference-card .stage2-kicker {
  margin-left: 46px;
  color: var(--stage2-gold-readable);
}

.stage2-difference-card h2 {
  margin: 20px 0 10px;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
}

.stage2-difference-card p {
  color: var(--stage2-muted);
  font-size: 15.5px;
  line-height: 1.46;
}

.stage2-difference-icon {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  color: var(--stage2-gold);
  background: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 22px;
  font-weight: 700;
}

.stage2-icon-svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage2-difference-card .stage2-journey-list {
  position: relative;
  gap: 14px;
  margin-top: 20px;
}

.stage2-difference-card .stage2-journey-list::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: #e6d8bb;
}

.stage2-difference-card .stage2-number {
  position: relative;
  z-index: 1;
  color: var(--stage2-green);
  background: var(--stage2-cream-bright);
  border: 2px solid #e2d4b8;
}

.stage2-difference-card .stage2-journey-list div:last-child .stage2-number {
  background: var(--stage2-gold);
  border-color: var(--stage2-gold);
}

.stage2-difference-card .stage2-journey-list p {
  margin: 0;
  font-size: 14px;
}

.stage2-difference-card .stage2-journey-list strong {
  color: var(--stage2-green);
  font-size: 15px;
}

.stage2-handoff-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 28px;
  border: 1px solid rgba(196, 166, 78, 0.32);
  border-radius: 16px;
  padding: 8px;
  background: rgba(8, 42, 26, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(196, 166, 78, 0.07),
    0 18px 42px rgba(5, 34, 20, 0.12);
}

.stage2-handoff-strip article {
  position: relative;
  min-height: 112px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 24px 28px 23px 94px;
  background: rgba(24, 71, 47, 0.58);
}

.stage2-handoff-strip article:first-child {
  background: rgba(23, 71, 47, 0.62);
}

.stage2-handoff-strip article:last-child {
  border-color: rgba(196, 166, 78, 0.5);
  background:
    linear-gradient(135deg, rgba(196, 166, 78, 0.14), rgba(196, 166, 78, 0.05) 45%, rgba(42, 73, 30, 0.5)),
    rgba(255, 255, 255, 0.03);
}

.stage2-handoff-strip article::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--stage2-green);
  background: var(--stage2-gold);
}

.stage2-handoff-strip article:first-child::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 45px;
  width: 12px;
  height: 20px;
  border-right: 2.5px solid var(--stage2-green);
  border-bottom: 2.5px solid var(--stage2-green);
  transform: rotate(45deg);
}

.stage2-handoff-strip article:last-child::before {
  content: "";
  border: 3px solid rgba(196, 166, 78, 0.86);
  background:
    radial-gradient(circle, var(--stage2-gold) 0 6px, transparent 7px),
    rgba(196, 166, 78, 0.12);
  animation: stage2SignalPulse 2.2s ease-out infinite;
}

.stage2-handoff-strip article:last-child::after {
  content: none;
}

.stage2-handoff-strip .stage2-kicker {
  margin: 0 0 13px;
  color: var(--stage2-gold);
  font-size: 12.5px;
  letter-spacing: 0.14em;
}

.stage2-handoff-strip h2 {
  margin: 0 0 6px;
  color: var(--stage2-cream);
  font-family: var(--stage2-display);
  font-size: clamp(23px, 1.45vw, 28px);
  line-height: 1.08;
  text-wrap: balance;
}

.stage2-handoff-strip p:not(.stage2-kicker) {
  margin: 0;
  color: rgba(251, 247, 236, 0.8);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.35;
}

.stage2-handoff-strip .stage2-status-arrow {
  align-self: center;
  justify-self: center;
  width: 36px;
  color: var(--stage2-gold);
  font-size: 31px;
  line-height: 1;
  text-align: center;
}

.stage2-partners.stage2-partners-overview {
  margin-top: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stage2-partners.stage2-partners-overview > p {
  margin: 0 0 14px;
  color: rgba(251, 247, 236, 0.74);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-align: left;
}

.stage2-partners.stage2-partners-overview .stage2-partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: 94px;
  align-items: center;
  justify-items: center;
  gap: clamp(16px, 2vw, 34px);
  border-radius: 14px;
  padding: 18px clamp(24px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.98);
}

.stage2-partners.stage2-partners-overview .stage2-partner-grid img {
  max-width: min(132px, 100%);
  max-height: 46px;
}

.stage2-button.is-ghost.is-light {
  color: var(--stage2-cream);
  border-color: rgba(251, 247, 236, 0.32);
}

.stage2-section.stage2-speakers {
  background: var(--stage2-cream);
  padding: 56px 0 42px;
}

.stage2-speakers .stage2-section-head {
  display: block;
  max-width: 980px;
  margin-bottom: 34px;
}

.stage2-speakers .stage2-section-head .stage2-kicker {
  margin-bottom: 10px;
}

.stage2-speakers .stage2-section-head .stage2-title {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 44px);
}

.stage2-speakers .stage2-section-head .stage2-copy {
  max-width: 920px;
  margin-top: 0;
  font-size: 19px;
  line-height: 1.45;
}

.stage2-speaker-group + .stage2-speaker-group {
  margin-top: 42px;
}

.stage2-speaker-group > .stage2-kicker {
  margin-bottom: 22px;
  color: var(--stage2-gold-readable);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.stage2-speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stage2-speaker-grid.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.stage2-speaker-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #eadfca;
  border-radius: 12px;
  padding: 0;
  background: var(--stage2-cream-bright);
  box-shadow: var(--stage2-surface-shadow);
  transition:
    border-color 0.22s var(--stage2-ease),
    box-shadow 0.24s var(--stage2-ease),
    transform 0.24s var(--stage2-ease);
}

.stage2-speaker-card:hover {
  border-color: rgba(196, 166, 78, 0.55);
  box-shadow: var(--stage2-shadow-lift);
  transform: translateY(-2px);
}

.stage2-speaker-grid.is-two .stage2-speaker-card {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  min-height: 176px;
  border: 2px solid var(--stage2-gold);
  box-shadow: none;
}

.stage2-speaker-card img {
  display: block;
  width: 100%;
  min-height: 174px;
  aspect-ratio: 1.52 / 1;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #e7dfcf;
  background: #f2f2f0;
  object-fit: cover;
  transition: transform 0.55s var(--stage2-ease);
}

.stage2-speaker-card:hover img {
  transform: scale(1.025);
}

.stage2-photo-drop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-height: 174px;
  aspect-ratio: 1.52 / 1;
  border-radius: 0;
  border: 1px dashed #bdbdb8;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  color: var(--stage2-muted);
  background:
    linear-gradient(90deg, #f2f2f0 0%, #fbfbf8 48%, #f2f2f0 100%);
  background-size: 220% 100%;
  object-fit: cover;
  font-size: 15px;
  font-weight: 700;
  animation: stage2Skeleton 2.4s ease-in-out infinite;
}

.stage2-photo-drop::before {
  content: "";
  display: block;
  width: 36px;
  height: 30px;
  border: 2px solid #c6c6c2;
  border-radius: 6px;
  background:
    radial-gradient(circle at 32% 35%, #c6c6c2 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 55%, #c6c6c2 56% 64%, transparent 65%);
}

.stage2-speaker-grid.is-two .stage2-speaker-card img,
.stage2-speaker-grid.is-two .stage2-photo-drop {
  grid-column: 1;
  grid-row: 1 / 4;
  min-height: 100%;
  aspect-ratio: auto;
}

.stage2-speaker-grid.is-two .stage2-speaker-card img {
  height: 100%;
  border-right: 1px solid #e7dfcf;
  border-bottom: 0;
}

.stage2-speaker-grid.is-two .stage2-speaker-card img.stage2-speaker-logo-photo {
  box-sizing: border-box;
  padding: clamp(6px, 1vw, 12px);
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.stage2-speaker-grid.is-two .stage2-speaker-card:first-child img {
  object-position: 50% 12%;
}

.stage2-speaker-grid.is-two .stage2-speaker-card img.stage2-speaker-photo.is-khalifa {
  object-position: center 22%;
}

.stage2-speaker-grid.is-two .stage2-photo-drop {
  border: 1px dashed #bdbdb8;
  border-left: 0;
  border-top: 0;
  border-bottom: 0;
}

.stage2-speaker-grid.is-two .stage2-speaker-card > :not(img):not(.stage2-photo-drop):not(.stage2-card-ribbon) {
  grid-column: 2;
  margin-left: 28px;
  margin-right: 24px;
}

.stage2-card-ribbon {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--stage2-green);
  background: var(--stage2-gold);
  font: 800 10px/1 var(--stage2-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage2-speaker-card .stage2-badge {
  width: max-content;
  max-width: 100%;
  margin: 18px 20px 0;
  border-radius: 6px;
  padding: 7px 11px;
  color: var(--stage2-green);
  background: #eef5ef;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.stage2-speaker-grid:not(.is-two) .stage2-speaker-card .stage2-badge {
  margin-top: 18px;
}

.stage2-speaker-grid:not(.is-two) .stage2-speaker-card:first-child .stage2-badge {
  background: #eee6d2;
  color: var(--stage2-gold-readable);
}

.stage2-speaker-grid.is-two .stage2-speaker-card .stage2-badge {
  align-self: end;
  margin-top: 0;
  margin-bottom: 0;
}

.stage2-speaker-grid.is-two .stage2-speaker-card:nth-child(2) .stage2-badge {
  background: #fbf1da;
  color: var(--stage2-gold-readable);
}

.stage2-speaker-card h3 {
  margin: 12px 20px 6px;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 21px;
  line-height: 1.12;
}

.stage2-speaker-grid.is-two .stage2-speaker-card h3 {
  margin-top: 12px;
  font-size: 23px;
}

.stage2-speaker-card p:last-child {
  margin: 0 20px 22px;
  color: var(--stage2-muted);
  font-size: 16px;
  line-height: 1.42;
}

.stage2-speaker-grid.is-two .stage2-speaker-card p:last-child {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.38;
}

.stage2-section.stage2-speakers + .stage2-section.is-tight {
  padding-top: 42px;
}

.stage2-overview-speakers.stage2-section {
  padding: 48px 0 0;
}

.stage2-overview-speakers .stage2-section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.stage2-overview-speakers .stage2-section-head .stage2-title {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.08;
}

.stage2-overview-speakers .stage2-section-head .stage2-copy {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.55;
}

.stage2-overview-speakers .stage2-speaker-group > .stage2-kicker {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.stage2-overview-speakers .stage2-speaker-grid.is-two {
  gap: 18px;
  margin-bottom: 30px;
}

.stage2-overview-speakers .stage2-speaker-grid.is-two .stage2-speaker-card {
  min-height: 170px;
  border-radius: 16px;
  box-shadow: var(--stage2-surface-shadow);
}

.stage2-overview-speakers .stage2-speaker-grid.is-two .stage2-speaker-card > :not(img):not(.stage2-photo-drop):not(.stage2-card-ribbon) {
  margin-left: 18px;
  margin-right: 18px;
}

.stage2-overview-speakers .stage2-card-ribbon {
  top: 9px;
  left: 9px;
  padding: 4px 7px;
  font-size: 9px;
  letter-spacing: 0.07em;
}

.stage2-overview-speakers .stage2-speaker-card .stage2-badge {
  padding: 3px 8px;
  font-size: 9.5px;
  letter-spacing: 0.06em;
}

.stage2-overview-speakers .stage2-speaker-grid.is-two .stage2-speaker-card h3 {
  font-size: 19px;
  line-height: 1.2;
}

.stage2-overview-speakers .stage2-speaker-grid.is-two .stage2-speaker-card p:last-child {
  font-size: 13px;
  line-height: 1.45;
}

.stage2-overview-speakers .stage2-speaker-grid:not(.is-two) {
  gap: 18px;
}

.stage2-overview-speakers .stage2-speaker-grid:not(.is-two) .stage2-speaker-card {
  border-radius: 14px;
  box-shadow: var(--stage2-surface-shadow);
}

.stage2-overview-speakers .stage2-speaker-grid:not(.is-two) .stage2-speaker-card img,
.stage2-overview-speakers .stage2-speaker-grid:not(.is-two) .stage2-photo-drop {
  min-height: 220px;
  height: clamp(220px, 16vw, 250px);
  aspect-ratio: auto;
}

.stage2-overview-speakers .stage2-speaker-photo.is-yasmin {
  object-position: center 38%;
}

.stage2-overview-speakers .stage2-speaker-photo.is-mohamed {
  object-position: center 22%;
}

.stage2-overview-speakers .stage2-speaker-photo.is-hamda {
  object-position: center 22%;
}

.stage2-overview-speakers .stage2-speaker-photo.is-etienne {
  object-position: center 20%;
}

.stage2-overview-speakers .stage2-speaker-grid:not(.is-two) .stage2-speaker-card .stage2-badge {
  margin: 13px 14px 8px;
}

.stage2-overview-speakers .stage2-speaker-grid:not(.is-two) .stage2-speaker-card h3 {
  margin: 0 14px 3px;
  font-size: 16px;
  line-height: 1.2;
}

.stage2-overview-speakers .stage2-speaker-grid:not(.is-two) .stage2-speaker-card p:last-child {
  margin: 0 14px 13px;
  font-size: 12.5px;
  line-height: 1.4;
}

.stage2-benchmark-card,
.stage2-quickscan-card,
.stage2-pulse-card,
.stage2-registration-card {
  border: 1px solid var(--stage2-line);
  border-radius: 12px;
  background: var(--stage2-cream-bright);
  box-shadow: var(--stage2-surface-shadow);
}

.stage2-benchmark-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: 18px;
  background: var(--stage2-green);
}

.stage2-benchmark-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  color: var(--stage2-gold);
  border: 1px solid rgba(196, 166, 78, 0.56);
  background: rgba(196, 166, 78, 0.12);
  font-size: 26px;
}

.stage2-benchmark-card h2 {
  margin: 0 0 10px;
  color: var(--stage2-cream);
  font-family: var(--stage2-display);
  font-size: clamp(25px, 2.6vw, 33px);
  line-height: 1.14;
}

.stage2-benchmark-card p:not(.stage2-kicker) {
  margin: 0;
  color: rgba(251, 247, 236, 0.72);
  font-size: 16px;
  line-height: 1.52;
}

.stage2-overview-benchmark.stage2-section {
  padding: 70px 0 0;
}

.stage2-overview-benchmark .stage2-benchmark-card {
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 34px;
  border-radius: 18px;
}

.stage2-overview-benchmark .stage2-benchmark-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  font-size: 28px;
}

.stage2-overview-benchmark .stage2-benchmark-card h2 {
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.28;
}

.stage2-overview-benchmark .stage2-benchmark-card p:not(.stage2-kicker) {
  max-width: 760px;
  font-size: 12.5px;
  line-height: 1.5;
}

.stage2-choice-card {
  display: block;
  width: 100%;
  border-color: var(--stage2-line);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.stage2-choice-card strong {
  display: block;
  margin-top: 22px;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
}

.stage2-overview-journey.stage2-section {
  padding: 48px 0 20px;
}

.stage2-overview-journey .stage2-section-head {
  display: block;
  max-width: 760px;
  margin-bottom: 24px;
}

.stage2-overview-journey .stage2-title {
  margin: 8px 0 6px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.08;
}

.stage2-overview-journey .stage2-copy {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.55;
}

.stage2-overview-journey .stage2-grid.is-two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.stage2-overview-journey .stage2-choice-card {
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: var(--stage2-surface-shadow);
}

.stage2-overview-journey .stage2-choice-card .stage2-badge {
  position: relative;
  gap: 9px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--stage2-gold-readable);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.stage2-overview-journey .stage2-choice-card .stage2-badge::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--stage2-green);
  background: var(--stage2-gold);
}

.stage2-overview-journey .stage2-choice-card.is-stage1 .stage2-badge::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--stage2-green);
  border-bottom: 2px solid var(--stage2-green);
  transform: rotate(45deg);
}

.stage2-overview-journey .stage2-choice-card.is-next {
  border-color: var(--stage2-green);
  color: var(--stage2-cream);
  background: linear-gradient(150deg, var(--stage2-green), #1c5236);
  box-shadow: 0 4px 14px rgba(15, 68, 48, 0.16);
}

.stage2-overview-journey .stage2-choice-card.is-next .stage2-badge {
  color: var(--stage2-gold);
}

.stage2-overview-journey .stage2-choice-card.is-next .stage2-badge::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--stage2-gold);
  background:
    radial-gradient(circle, var(--stage2-gold) 0 3px, rgba(196, 166, 78, 0.2) 4px);
  animation: stage2SignalPulse 2.2s ease-out infinite;
}

.stage2-overview-journey .stage2-choice-card h3 {
  margin: 12px 0 6px;
  font-size: 23px;
  line-height: 1.15;
}

.stage2-overview-journey .stage2-choice-card p {
  margin-bottom: 16px;
  font-size: 14.5px;
  line-height: 1.55;
}

.stage2-overview-journey .stage2-choice-card strong {
  margin-top: 0;
  font-size: 15px;
}

.stage2-overview-journey .stage2-choice-card.is-next h3,
.stage2-overview-journey .stage2-choice-card.is-next strong {
  color: var(--stage2-cream);
}

.stage2-overview-journey .stage2-choice-card.is-next p {
  color: #d7ddd2;
}

.stage2-overview-journey .stage2-choice-card.is-next strong {
  color: var(--stage2-gold);
}

.stage2-overview-feedback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-top: 16px;
  border: 1px solid rgba(15, 68, 48, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fffaf0;
}

.stage2-overview-feedback p {
  margin: 0;
  color: var(--stage2-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.stage2-overview-feedback .stage2-button {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 13px;
  white-space: nowrap;
}

.stage2-quickscan-card,
.stage2-pulse-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.stage2-quickscan-notes {
  display: grid;
  gap: 14px;
}

.stage2-quickscan-card {
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
}

.stage2-quickscan-card > div:first-child {
  padding: 30px 32px;
}

.stage2-quickscan-card > div:first-child .stage2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--stage2-line);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--stage2-gold-readable);
  background: #f2ecdd;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.stage2-quickscan-card > div:first-child .stage2-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--stage2-gold);
}

.stage2-quickscan-card > div:first-child .stage2-title {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
}

.stage2-quickscan-card > div:first-child .stage2-copy {
  max-width: 460px;
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.6;
}

.stage2-quickscan-card > div:first-child .stage2-button {
  background: var(--stage2-green);
  border-color: var(--stage2-green);
  color: var(--stage2-cream);
  box-shadow: 0 3px 12px rgba(15, 68, 48, 0.16);
}

.stage2-quickscan-card .stage2-quickscan-notes {
  justify-content: center;
  border-left: 1px solid #eee7d6;
  padding: 26px 30px;
  background: #fbf8ef;
}

.stage2-quickscan-notes article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  column-gap: 13px;
  align-items: start;
  border-left: 0;
  padding-left: 0;
}

.stage2-quickscan-notes article span {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: #2a6b47;
  background: #e7f0ea;
  font-size: 18px;
  font-weight: 700;
}

.stage2-quickscan-notes article:nth-child(2) span {
  color: var(--stage2-gold-deep);
  background: #fbf3df;
}

.stage2-quickscan-notes strong {
  color: var(--stage2-green);
  font-size: 14.5px;
  line-height: 1.3;
}

.stage2-quickscan-notes p {
  margin: 2px 0 0;
  color: var(--stage2-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.stage2-pulse-options {
  display: grid;
  gap: 10px;
}

.stage2-pulse-options button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--stage2-line);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--stage2-green);
  background: #fff;
  font: 800 16px/1.2 var(--stage2-body);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.18s var(--stage2-ease),
    background-color 0.18s var(--stage2-ease),
    transform 0.18s var(--stage2-ease);
}

.stage2-pulse-options button:hover {
  border-color: rgba(196, 166, 78, 0.48);
  transform: translateY(-1px);
}

.stage2-pulse-options button.is-active {
  border-color: var(--stage2-gold);
  background: #f3ead3;
}

.stage2-pulse-options strong {
  color: var(--stage2-gold-deep);
  font-family: var(--stage2-display);
  font-size: 22px;
}

.stage2-pulse-options p {
  margin: 6px 0 0;
  color: var(--stage2-muted);
}

.stage2-overview-social.stage2-section.is-tight {
  padding: 34px 0 18px;
}

.stage2-overview-social .stage2-section-head {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.stage2-overview-social .stage2-title {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.08;
}

.stage2-overview-social .stage2-copy {
  max-width: 650px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.55;
}

.stage2-overview-social [data-stage2-social] {
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.stage2-social-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(196, 166, 78, 0.36);
  border-radius: 999px;
  color: var(--stage2-green);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(251, 247, 236, 0.86)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 22px rgba(15, 68, 48, 0.08);
  text-decoration: none;
  transition:
    background-color 0.2s var(--stage2-ease),
    border-color 0.2s var(--stage2-ease),
    color 0.2s var(--stage2-ease),
    box-shadow 0.22s var(--stage2-ease),
    transform 0.22s var(--stage2-ease);
}

.stage2-social-link::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(196, 166, 78, 0.08);
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.22s var(--stage2-ease),
    transform 0.22s var(--stage2-ease);
}

.stage2-social-link:hover,
.stage2-social-link:focus-visible {
  border-color: rgba(196, 166, 78, 0.74);
  color: var(--stage2-green);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(15, 68, 48, 0.14);
  transform: translateY(-2px);
}

.stage2-social-link:hover::before,
.stage2-social-link:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.stage2-social-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
  transition: transform 0.22s var(--stage2-ease);
}

.stage2-social-link:hover .stage2-social-icon,
.stage2-social-link:focus-visible .stage2-social-icon {
  transform: scale(1.08);
}

.stage2-social-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.stage2-next-stop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--stage2-line);
  padding-top: 28px;
}

.stage2-next-stop > div {
  text-align: right;
}

.stage2-next-stop button:not(.stage2-button):not(.stage2-back-button) {
  border: 0;
  padding: 0;
  color: var(--stage2-green);
  background: transparent;
  font-family: var(--stage2-display);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.stage2-overview-next.stage2-section.is-tight {
  padding: 0 0 34px;
}

.stage2-overview-next .stage2-next-stop {
  display: block;
  border-top: 0;
  padding-top: 0;
  text-align: center;
}

.stage2-next-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--stage2-line);
  border-radius: 50%;
  color: var(--stage2-green);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 68, 48, 0.08);
  animation: stage2Bob 1.6s ease-in-out infinite;
}

.stage2-next-cue span {
  display: block;
  margin-top: -6px;
  font-size: 30px;
  line-height: 1;
}

.stage2-overview-next .stage2-kicker {
  margin: 12px 0 8px;
  color: var(--stage2-gold-readable);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.stage2-overview-next .stage2-button {
  min-height: 48px;
  padding: 14px 30px;
  border-color: var(--stage2-green);
  border-radius: 11px;
  background: var(--stage2-green);
  box-shadow: 0 4px 14px rgba(15, 68, 48, 0.16);
  font-size: 16px;
}

.stage2-back-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  padding: 0;
  color: var(--stage2-gold-readable);
  background: transparent;
  font: 800 14px/1.2 var(--stage2-body);
  cursor: pointer;
}

.stage2-note {
  margin-top: 18px;
  border: 1px solid var(--stage2-line);
  border-radius: 10px;
  padding: 18px 20px;
  color: var(--stage2-muted);
  background: #f2eadc;
  line-height: 1.52;
}

.stage2-governance-note {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--stage2-muted);
  text-align: center;
}

.stage2-pathway-section .stage2-section-head {
  display: block;
  max-width: 790px;
  margin-bottom: 26px;
}

.stage2-pathway-section .stage2-title {
  margin: 8px 0 6px;
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.08;
}

.stage2-pathway-section .stage2-copy {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.55;
}

.stage2-pathway-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 42px;
}

.stage2-pathway-track article {
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  text-align: center;
}

.stage2-pathway-track article::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 43px;
  left: 0;
  right: 0;
  height: 3px;
  background: #e0d8c4;
}

.stage2-pathway-track small {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--stage2-gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage2-pathway-track strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 8px auto 9px;
  border: 2px solid var(--stage2-gold);
  border-radius: 50%;
  color: var(--stage2-cream);
  background: #2a6b47;
  font-family: var(--stage2-display);
  font-size: 20px;
  box-shadow: 0 0 0 3px var(--stage2-cream), inset 0 0 0 2px rgba(15, 68, 48, 0.55);
}

.stage2-pathway-track article:nth-child(-n + 3) strong {
  border-color: var(--stage2-gold);
  color: var(--stage2-gold);
  background: #286f49;
  box-shadow: 0 0 0 3px var(--stage2-cream), inset 0 0 0 2px rgba(251, 247, 236, 0.22);
}

.stage2-pathway-track article:nth-child(4) strong {
  border-color: var(--stage2-green);
  color: var(--stage2-green);
  background: var(--stage2-gold);
  box-shadow: 0 0 0 3px var(--stage2-cream), inset 0 0 0 2px rgba(251, 247, 236, 0.32);
}

.stage2-pathway-track span {
  display: block;
  color: var(--stage2-ink);
  font-size: 13px;
  font-weight: 800;
}

.stage2-pathway-list {
  display: grid;
  gap: 16px;
}

.stage2-pathway-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #e0d8c4;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 68, 48, 0.06);
}

.stage2-pathway-card-side {
  display: flex;
  flex-direction: column;
  min-height: 276px;
  padding: 28px 24px;
  color: var(--stage2-cream);
  background: var(--stage2-green);
}

.stage2-pathway-card-side small {
  color: var(--stage2-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.stage2-pathway-card-side strong {
  display: block;
  margin-top: 12px;
  color: var(--stage2-cream);
  font-family: var(--stage2-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 0.95;
}

.stage2-pathway-window {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  border: 1px solid rgba(196, 166, 78, 0.55);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--stage2-cream);
  background: rgba(196, 166, 78, 0.12);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.stage2-pathway-window::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--stage2-gold);
}

.stage2-pathway-card-side p {
  margin: 14px 0 0;
  color: rgba(251, 247, 236, 0.72);
  font-family: var(--stage2-arabic);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.stage2-pathway-card-body {
  padding: 28px 30px 26px;
}

.stage2-pathway-card-body h3 {
  margin: 0 0 6px;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 25px;
  line-height: 1.15;
}

.stage2-pathway-summary {
  max-width: 780px;
  margin: 0;
  color: var(--stage2-muted);
  font-size: 15px;
  line-height: 1.55;
}

.stage2-pathway-card-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 34px;
  margin-top: 24px;
}

.stage2-pathway-label {
  margin: 0 0 10px;
  color: var(--stage2-gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.stage2-pathway-activities ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stage2-pathway-activities li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #3a3a30;
  font-size: 14px;
  line-height: 1.45;
}

.stage2-pathway-activities li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--stage2-gold);
}

.stage2-pathway-meta > strong {
  display: block;
  color: #2d3028;
  font-size: 13px;
  line-height: 1.45;
}

.stage2-pathway-output {
  margin-top: 18px;
  border: 1px solid #e2d4b8;
  border-radius: 9px;
  padding: 14px 15px;
  background: #f8f1df;
}

.stage2-pathway-output .stage2-pathway-label {
  margin-bottom: 8px;
}

.stage2-pathway-output strong {
  display: block;
  color: var(--stage2-green);
  font-size: 13px;
  line-height: 1.5;
}

.stage2-pathway-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 1px solid rgba(15, 68, 48, 0.22);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--stage2-green);
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.stage2-pathway-action:hover,
.stage2-pathway-action:focus-visible {
  border-color: var(--stage2-gold);
  color: var(--stage2-green);
  background: #f5eedf;
}

.stage2-registration-card {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  color: var(--stage2-cream);
  background:
    radial-gradient(circle at 82% 10%, rgba(196, 166, 78, 0.16), transparent 32%),
    var(--stage2-green);
  text-align: center;
}

.stage2-registration-card h2 {
  margin: 0 0 14px;
  color: var(--stage2-cream);
  font-family: var(--stage2-display);
  font-size: clamp(30px, 4vw, 44px);
}

.stage2-registration-card p:not(.stage2-kicker) {
  max-width: 600px;
  margin: 0 auto 26px;
  color: rgba(251, 247, 236, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.stage2-registration-card small {
  display: block;
  margin-top: 18px;
  color: rgba(251, 247, 236, 0.68);
}

.stage2-guide-footer {
  padding: clamp(36px, 4.6vw, 58px) 0;
  color: rgba(251, 247, 236, 0.72);
  background: var(--stage2-green);
  border-top: 1px solid rgba(196, 166, 78, 0.22);
}

.stage2-guide-footer .stage2-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.stage2-guide-footer p {
  max-width: 890px;
  margin: 0;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.65;
}

.stage2-footer-contact {
  justify-self: end;
  width: 100%;
  max-width: 360px;
}

.stage2-guide-footer .stage2-footer-primary {
  display: block;
  color: rgba(251, 247, 236, 0.86);
  font-family: var(--stage2-body);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.stage2-footer-link-list {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.stage2-guide-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.stage2-footer-link-list a {
  min-height: 36px;
  color: rgba(251, 247, 236, 0.76);
  font-family: var(--stage2-body);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.55;
}

.stage2-guide-footer a:hover,
.stage2-guide-footer a:focus-visible {
  color: var(--stage2-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .stage2-footer-contact {
    justify-self: start;
    max-width: none;
  }
}

.stage2-guide .stage2-view:not([data-stage2-view="overview"]) > .stage2-section:first-child {
  padding-top: 56px;
}

.stage2-guide .stage2-view:not([data-stage2-view="overview"]) > .stage2-section:first-child .stage2-section-head {
  display: block;
  max-width: 980px;
  margin-bottom: 30px;
}

.stage2-guide .stage2-view:not([data-stage2-view="overview"]) > .stage2-section:first-child .stage2-copy {
  max-width: 940px;
  margin-top: 18px;
}

.stage2-guide .stage2-view[data-stage2-view="pathway"] > .stage2-section:first-child {
  padding-bottom: 30px;
}

.stage2-guide .stage2-view[data-stage2-view="pathway"] > .stage2-section:first-child .stage2-section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: none;
  margin-bottom: 0;
}

.stage2-guide .stage2-view[data-stage2-view="pathway"] > .stage2-section:first-child .stage2-copy {
  max-width: none;
  margin-top: 0;
}

.stage2-guide .stage2-view[data-stage2-view="pathway"] > .stage2-section:first-child .stage2-note {
  margin-top: 18px;
}

.stage2-guide .stage2-view[data-stage2-view="pathway"] > .stage2-section:nth-child(2) {
  padding-top: 34px;
}

.stage2-pathway > main > .stage2-section:first-child {
  padding-bottom: 34px;
}

.stage2-pathway > main > .stage2-section:nth-child(2) {
  padding-top: 44px;
}

.stage2-guide [data-stage2-view="recap"] section[aria-labelledby="agenda-title"] .stage2-container {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.stage2-guide [data-stage2-view="recap"] section[aria-labelledby="agenda-title"] .stage2-section-head {
  display: block;
  margin-bottom: 0;
}

.stage2-guide [data-stage2-view="recap"] section[aria-labelledby="agenda-title"] .stage2-section-head .stage2-copy {
  margin-top: 16px;
}

.stage2-recap-intro.stage2-section {
  padding-bottom: 28px;
}

.stage2-recap-copy {
  max-width: 1110px;
}

.stage2-recap-copy .stage2-kicker,
.stage2-recap-agenda-copy .stage2-kicker {
  margin-bottom: 8px;
  color: var(--stage2-gold-readable);
}

.stage2-recap-copy .stage2-title {
  max-width: 900px;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.02;
}

.stage2-recap-copy .stage2-copy {
  max-width: 1100px;
  margin-top: 14px;
  color: #5f5a4f;
  font-size: 16.5px;
  line-height: 1.62;
}

.stage2-recap-copy .stage2-copy strong {
  color: var(--stage2-green);
  font-weight: 900;
}

.stage2-recap-intro .stage2-stat-grid {
  gap: 14px;
  margin-top: 34px;
}

.stage2-recap-intro .stage2-stat {
  min-height: 126px;
  padding: 22px 22px 20px;
  border-top: 0;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(15, 68, 48, 0.05);
}

.stage2-recap-intro .stage2-stat strong {
  font-size: 42px;
}

.stage2-recap-intro .stage2-stat span {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.stage2-recap-agenda.stage2-section.is-tight {
  padding-top: 26px;
}

.stage2-recap-agenda .stage2-container {
  display: grid;
  grid-template-columns: minmax(300px, 0.41fr) minmax(0, 0.59fr);
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}

.stage2-recap-agenda-copy {
  max-width: 370px;
}

.stage2-recap-agenda-copy .stage2-title {
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.08;
}

.stage2-recap-agenda-copy .stage2-copy {
  margin-top: 14px;
  color: #6f695e;
  font-size: 15px;
  line-height: 1.58;
}

.stage2-recap-agenda .stage2-timeline {
  gap: 0;
  padding-top: 2px;
}

.stage2-recap-agenda .stage2-timeline:not(.stage2-pathway-list) article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 0;
  border-bottom: 1px solid #e4dac8;
  border-radius: 0;
  padding: 0 0 13px;
  background: transparent;
  box-shadow: none;
}

.stage2-recap-agenda .stage2-timeline:not(.stage2-pathway-list) article + article {
  padding-top: 13px;
}

.stage2-recap-agenda .stage2-number {
  width: 30px;
  height: 30px;
  border: 1px solid #dfd0b5;
  color: #8b7339;
  background: #f5eddb;
  font-family: var(--stage2-body);
  font-size: 13px;
  font-weight: 800;
}

.stage2-recap-agenda .stage2-timeline:not(.stage2-pathway-list) h3 {
  margin: 0;
  color: #2d2a24;
  font-family: var(--stage2-body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.stage2-recap-agenda .stage2-timeline:not(.stage2-pathway-list) p {
  margin: 4px 0 0;
  color: #9b9588;
  font-size: 12px;
  line-height: 1.25;
}

@media (min-width: 981px) and (max-width: 1450px) {
  .stage2-guide .stage2-overview-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 390px);
    gap: 36px;
  }

  .stage2-guide .stage2-difference-card {
    padding-right: 28px;
  }
}

.stage2-section {
  padding: clamp(54px, 8vw, 92px) 0;
}

.stage2-section.is-tight {
  padding: clamp(36px, 6vw, 64px) 0;
}

.stage2-recap > main > .stage2-section,
.stage2-pathway > main > .stage2-section {
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(42px, 5vw, 64px);
}

.stage2-recap > main > .stage2-section.is-tight,
.stage2-pathway > main > .stage2-section.is-tight {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}

.stage2-overview-benchmark.stage2-section.is-tight {
  padding: 33px 0 39px;
}

.stage2-overview-benchmark .stage2-benchmark-card {
  padding: 26px 30px;
}

.stage2-overview-journey.stage2-section.is-tight {
  padding: 0 0 20px;
}

.stage2-overview-journey .stage2-kicker {
  margin-bottom: 0;
}

.stage2-overview-quickscan.stage2-section.is-tight {
  padding: 0 0 50px;
}

.stage2-overview-pulse.stage2-section.is-tight {
  padding: 0 0 50px;
}

.stage2-overview-pulse .stage2-pulse-card {
  border: 0;
  border-radius: 20px;
  padding: 38px 40px;
  color: var(--stage2-cream);
  background: linear-gradient(150deg, var(--stage2-green), #19492f);
  box-shadow: none;
}

.stage2-overview-pulse .stage2-title {
  color: var(--stage2-cream);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
}

.stage2-overview-pulse .stage2-copy {
  max-width: 420px;
  color: #d7ddd2;
  font-size: 16px;
  line-height: 1.6;
}

.stage2-overview-pulse .stage2-arabic {
  max-width: 420px;
  color: #c5d2ca;
  font-size: 14px;
  line-height: 1.6;
}

.stage2-overview-pulse .stage2-pulse-options button {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--stage2-cream);
  background: rgba(255, 255, 255, 0.05);
}

.stage2-overview-pulse .stage2-pulse-options button::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 11px;
  left: 16px;
  height: 5px;
  border-radius: 999px;
  background: rgba(251, 247, 236, 0.22);
  opacity: 0;
  transform: scaleX(var(--pulse-share, 0));
  transform-origin: left center;
  transition: opacity 0.18s ease;
}

.stage2-overview-pulse .stage2-pulse-card:not(.is-revealed) .stage2-pulse-options button::after {
  transform: scaleX(0);
}

.stage2-overview-pulse .stage2-pulse-options button.is-active {
  border-color: rgba(196, 166, 78, 0.65);
  background: rgba(196, 166, 78, 0.16);
}

.stage2-overview-pulse .stage2-pulse-options strong {
  color: var(--stage2-gold);
}

.stage2-overview-pulse .stage2-pulse-card:not(.is-revealed) .stage2-pulse-options strong {
  visibility: hidden;
  opacity: 0;
}

.stage2-overview-pulse .stage2-pulse-card.is-revealed .stage2-pulse-options button {
  padding-bottom: 22px;
}

.stage2-overview-pulse .stage2-pulse-card.is-revealed .stage2-pulse-options button::after {
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.stage2-overview-pulse .stage2-pulse-options p {
  color: #c5d2ca;
}

.stage2-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.stage2-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vw, 88px) 0 36px;
  color: var(--stage2-cream);
  background:
    linear-gradient(135deg, rgba(15, 51, 35, 0.98) 0%, rgba(15, 68, 48, 0.95) 46%, rgba(25, 73, 50, 0.9) 100%),
    url("assets/hero.jpg") center/cover no-repeat;
}

.stage2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.stage2-eyebrow,
.stage2-kicker,
.a2b-kicker {
  margin: 0 0 12px;
  color: var(--stage2-gold-readable);
  font: 800 12px/1.4 var(--stage2-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage2-hero .stage2-eyebrow,
.stage2-overview-hero .stage2-eyebrow,
.stage2-benchmark-card .stage2-kicker,
.stage2-overview-pulse .stage2-kicker,
.stage2-registration-card .stage2-kicker,
.stage2-guide-footer .stage2-kicker {
  color: var(--stage2-gold);
}

.stage2-hero h1,
.stage2-title,
.a2b-title,
.stage2-feedback h1,
.stage2-resources h1 {
  margin: 0;
  font-family: var(--stage2-display);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.stage2-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.98;
}

.stage2-title,
.a2b-title {
  color: var(--stage2-green);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.06;
}

.stage2-arabic {
  margin-top: 14px;
  color: #d9e4d5;
  font-family: var(--stage2-arabic);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.35;
}

.stage2-lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(251, 247, 236, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  text-wrap: pretty;
}

.stage2-rule {
  width: 120px;
  height: 2px;
  margin: 20px 0 0;
  background: var(--stage2-gold);
  border-radius: 999px;
}

.stage2-hero-actions,
.stage2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.stage2-button,
.a2b-button,
.stage2-feedback .feedback-submit,
.stage2-feedback .feedback-header-link,
.stage2-resources .feedback-header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--stage2-green);
  border-radius: 8px;
  padding: 12px 20px;
  color: var(--stage2-cream);
  background: var(--stage2-green);
  font: 700 15px/1.2 var(--stage2-display);
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.18s var(--stage2-ease),
    border-color 0.18s var(--stage2-ease),
    color 0.18s var(--stage2-ease),
    box-shadow 0.22s var(--stage2-ease),
    transform 0.22s var(--stage2-ease);
}

.stage2-button:hover,
.a2b-button:hover,
.stage2-feedback .feedback-submit:hover,
.stage2-feedback .feedback-header-link:hover,
.stage2-resources .feedback-header-link:hover {
  box-shadow: 0 10px 22px rgba(15, 68, 48, 0.14);
  transform: translateY(-1px);
}

.stage2-button:active,
.a2b-button:active,
.stage2-feedback .feedback-submit:active,
.stage2-feedback .feedback-header-link:active,
.stage2-resources .feedback-header-link:active {
  transform: translateY(0);
}

.stage2-inline-icon,
.stage2-button-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage2-inline-icon {
  margin-right: 2px;
}

.stage2-inline-icon.is-end,
.stage2-button-icon.is-end {
  margin-right: 0;
  margin-left: 2px;
}

.stage2-button-icon use,
.stage2-inline-icon use,
.stage2-icon-svg use {
  pointer-events: none;
}

.stage2-button.is-gold,
.a2b-button.is-gold {
  color: var(--stage2-green);
  background: var(--stage2-gold);
  border-color: var(--stage2-gold);
}

.stage2-button.is-gold:hover,
.a2b-button.is-gold:hover {
  background: #d1b861;
  border-color: #d1b861;
  box-shadow: 0 12px 24px rgba(196, 166, 78, 0.2);
}

.stage2-button.is-ghost,
.a2b-button.is-ghost {
  color: var(--stage2-green);
  background: transparent;
  border-color: var(--stage2-line);
}

.stage2-back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(196, 166, 78, 0.42);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--stage2-cream);
  background: rgba(15, 68, 48, 0.96);
  box-shadow: 0 12px 28px rgba(15, 51, 35, 0.22);
  font: 800 12px/1 var(--stage2-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.stage2-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.stage2-journey-card,
.stage2-panel,
.stage2-card,
.a2b-card,
.stage2-feedback .feedback-panel,
.stage2-feedback .feedback-success,
.stage2-resources .resources-panel,
.stage2-resources .resources-card {
  border: 1px solid var(--stage2-line);
  border-radius: var(--stage2-radius-card);
  background: var(--stage2-cream-bright);
  box-shadow: var(--stage2-surface-shadow);
  transition:
    border-color 0.2s var(--stage2-ease),
    box-shadow 0.24s var(--stage2-ease),
    transform 0.24s var(--stage2-ease),
    background-color 0.2s var(--stage2-ease);
}

.stage2-card:hover,
.a2b-card:hover,
.stage2-feedback .feedback-panel:hover,
.stage2-resources .resources-card:hover {
  border-color: rgba(196, 166, 78, 0.48);
  box-shadow: var(--stage2-shadow-lift);
  transform: translateY(-2px);
}

.stage2-journey-card {
  padding: 24px;
}

.stage2-journey-card h2 {
  margin: 8px 0 8px;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 26px;
  line-height: 1.1;
}

.stage2-journey-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.stage2-journey-list div,
.stage2-step-compact {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.stage2-number,
.a2b-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--stage2-gold);
  background: var(--stage2-green);
  font-family: var(--stage2-display);
  font-weight: 700;
}

.stage2-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  margin-bottom: 30px;
}

.stage2-section-head p:not(.stage2-kicker),
.stage2-copy {
  margin: 0;
  color: var(--stage2-muted);
  font-size: 17px;
  line-height: 1.62;
  text-wrap: pretty;
}

.stage2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stage2-grid.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stage2-card {
  padding: 22px;
}

.stage2-card h3 {
  margin: 8px 0 8px;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 22px;
  line-height: 1.2;
}

.stage2-card p {
  margin: 0;
  color: var(--stage2-muted);
  line-height: 1.55;
}

.stage2-readiness-section.stage2-section.is-tight {
  padding: 42px 0 46px;
  background: var(--stage2-cream);
}

.stage2-readiness-section .stage2-section-head {
  display: block;
  max-width: 760px;
  margin-bottom: 22px;
}

.stage2-readiness-section .stage2-kicker {
  margin-bottom: 8px;
  color: var(--stage2-gold-deep);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.stage2-readiness-section .stage2-title {
  margin: 8px 0 6px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.08;
}

.stage2-readiness-section .stage2-copy {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.55;
}

.stage2-readiness-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.stage2-readiness-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid #e4dcc6;
  border-radius: 999px;
  padding: 9px 15px 9px 9px;
  color: #5e5a4f;
  background: #ffffff;
  font: 600 14px/1.2 var(--stage2-body);
  cursor: pointer;
  transition:
    background-color 0.18s var(--stage2-ease),
    border-color 0.18s var(--stage2-ease),
    color 0.18s var(--stage2-ease),
    transform 0.18s var(--stage2-ease);
}

.stage2-readiness-tab:hover {
  border-color: rgba(15, 68, 48, 0.28);
  color: var(--stage2-green);
  transform: translateY(-1px);
}

.stage2-readiness-tab.is-active {
  border-color: var(--stage2-green);
  color: var(--stage2-cream);
  background: var(--stage2-green);
}

.stage2-readiness-tab:focus-visible {
  outline: 3px solid #f1cf67;
  outline-offset: 2px;
}

.stage2-readiness-tab-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--stage2-gold-readable);
  background: #f2ecdd;
  font-family: var(--stage2-display);
  font-size: 12px;
  font-weight: 700;
}

.stage2-readiness-tab.is-active .stage2-readiness-tab-code {
  color: var(--stage2-green);
  background: var(--stage2-gold);
}

.stage2-readiness-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border: 1px solid #eae3d2;
  border-radius: 16px;
  padding: 28px 30px;
  background: #ffffff;
  box-shadow: var(--stage2-surface-shadow);
}

.stage2-readiness-detail-intro {
  flex: 1 1 360px;
}

.stage2-readiness-detail-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.stage2-readiness-detail-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: var(--stage2-gold);
  background: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 21px;
  font-weight: 700;
}

.stage2-readiness-detail h3 {
  margin: 0;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 21px;
  line-height: 1.15;
}

.stage2-readiness-count {
  margin: 2px 0 0;
  color: var(--stage2-gold-deep);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}

.stage2-readiness-description {
  max-width: 530px;
  margin: 0;
  color: #5e5a4f;
  font-size: 15px;
  line-height: 1.6;
}

.stage2-readiness-checks {
  flex: 1 1 300px;
}

.stage2-readiness-checks-title {
  margin: 0 0 10px;
  color: var(--stage2-gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.stage2-readiness-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stage2-readiness-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 6px 0;
  color: #3a3a30;
  font-size: 14px;
  line-height: 1.5;
}

.stage2-readiness-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--stage2-gold);
}

.stage2-signature-section.stage2-section {
  padding: 40px 0 46px;
  background: var(--stage2-cream);
}

.stage2-signature-output {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(380px, 1fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: start;
  border-radius: 16px;
  padding: clamp(30px, 3.2vw, 38px) clamp(28px, 3vw, 36px);
  color: var(--stage2-cream);
  background: var(--stage2-green);
}

.stage2-signature-output .stage2-kicker {
  margin-bottom: 8px;
  color: var(--stage2-gold);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.stage2-signature-output .stage2-title {
  margin: 0 0 14px;
  color: var(--stage2-cream);
  font-size: clamp(27px, 2.6vw, 31px);
  line-height: 1.08;
  white-space: nowrap;
}

.stage2-signature-output .stage2-copy {
  max-width: 480px;
  color: rgba(251, 247, 236, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.stage2-signature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stage2-signature-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 50px;
  border: 1px solid rgba(196, 166, 78, 0.25);
  border-radius: 9px;
  padding: 12px 16px;
  color: rgba(251, 247, 236, 0.88);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  line-height: 1.35;
}

.stage2-signature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--stage2-gold);
}

.stage2-dark-band {
  color: var(--stage2-cream);
  background: var(--stage2-green);
}

.stage2-dark-band .stage2-title,
.stage2-dark-band .stage2-card h3 {
  color: var(--stage2-cream);
}

.stage2-dark-band .stage2-copy,
.stage2-dark-band .stage2-card p {
  color: rgba(251, 247, 236, 0.76);
}

.stage2-dark-band .stage2-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 166, 78, 0.24);
}

.stage2-partners {
  margin-top: 32px;
  border-radius: var(--stage2-radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(196, 166, 78, 0.24);
}

.stage2-partners p {
  margin: 0 0 12px;
  color: var(--stage2-gold-deep);
  font: 800 11px/1 var(--stage2-body);
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.stage2-partner-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  flex-wrap: wrap;
}

.stage2-partner-grid img {
  display: block;
  max-width: 145px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.stage2-status-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

.stage2-status-strip article {
  padding: 20px;
  border-radius: var(--stage2-radius);
  border: 1px solid rgba(196, 166, 78, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.stage2-status-arrow {
  align-self: center;
  color: var(--stage2-gold);
  font-family: var(--stage2-display);
  font-size: 34px;
}

.stage2-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.stage2-stat {
  padding: 18px;
  border-top: 3px solid var(--stage2-gold);
}

.stage2-stat strong {
  display: block;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 34px;
  line-height: 1;
}

.stage2-stat span {
  display: block;
  margin-top: 8px;
  color: var(--stage2-muted);
  line-height: 1.35;
}

.stage2-timeline {
  display: grid;
  gap: 12px;
}

.stage2-timeline:not(.stage2-pathway-list) article,
.stage2-path-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
}

.stage2-timeline:not(.stage2-pathway-list) h3,
.stage2-path-step h3 {
  margin: 0;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 22px;
}

.stage2-timeline:not(.stage2-pathway-list) p,
.stage2-path-step p,
.stage2-path-step li {
  color: var(--stage2-muted);
  line-height: 1.55;
}

.stage2-path-step ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.stage2-path-step small {
  display: block;
  margin-bottom: 6px;
  color: var(--stage2-gold-readable);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage2-path-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.stage2-path-meta div {
  padding: 12px;
  border-radius: 8px;
  background: #f3eddd;
}

.stage2-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stage2-gallery article {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8e1ce;
  box-shadow: 0 1px 2px rgba(15, 68, 48, 0.05);
  transition:
    box-shadow 0.24s var(--stage2-ease),
    transform 0.24s var(--stage2-ease);
}

.stage2-gallery article:hover {
  box-shadow: var(--stage2-shadow-lift);
  transform: translateY(-2px);
}

.stage2-gallery img,
.stage2-gallery video {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: block;
  object-fit: cover;
  transition: transform 0.55s var(--stage2-ease);
}

.stage2-gallery article:hover img,
.stage2-gallery article:hover video {
  transform: scale(1.025);
}

.stage2-media-fallback {
  display: grid;
  min-height: 150px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  color: var(--stage2-muted);
  background:
    linear-gradient(135deg, rgba(196, 166, 78, 0.13), transparent 38%),
    #f0ebdd;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.stage2-media-fallback .stage2-inline-icon {
  width: 28px;
  height: 28px;
  color: var(--stage2-gold-deep);
}

.stage2-gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.stage2-materials-section .stage2-container {
  border-bottom: 1px solid #ded2bd;
  padding-bottom: 28px;
}

.stage2-materials-section.stage2-section {
  padding-bottom: 30px;
}

.stage2-recap-next.stage2-section.is-tight {
  padding: 8px 0 44px;
}

.stage2-recap-next .stage2-next-stop {
  border-top: 0;
  padding-top: 0;
}

.stage2-materials-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.stage2-materials-head .stage2-kicker {
  margin-bottom: 8px;
  color: var(--stage2-gold-readable);
}

.stage2-materials-head .stage2-title {
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.05;
}

.stage2-materials-head .stage2-copy {
  margin-top: 10px;
  color: #6a6459;
  font-size: 16px;
  line-height: 1.55;
}

.stage2-material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stage2-material-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  border: 1px solid #e2d8c6;
  border-radius: 10px;
  padding: 16px 18px;
  background: #fffdf9;
  box-shadow: var(--stage2-surface-shadow);
  transition:
    border-color 0.2s var(--stage2-ease),
    box-shadow 0.24s var(--stage2-ease),
    transform 0.24s var(--stage2-ease);
}

.stage2-material-card:hover {
  border-color: rgba(196, 166, 78, 0.48);
  box-shadow: var(--stage2-shadow-lift);
  transform: translateY(-2px);
}

.stage2-material-type {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 9px;
  color: #a94c31;
  background: #f2e5df;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stage2-material-type.is-docx,
.stage2-material-type.is-doc {
  color: #1d6794;
  background: #e4eef6;
}

.stage2-material-body {
  min-width: 0;
}

.stage2-material-body h3 {
  margin: 0;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 16px;
  line-height: 1.15;
}

.stage2-material-body p {
  margin: 4px 0 0;
  color: #766f64;
  font-size: 13px;
  line-height: 1.35;
}

.stage2-material-download {
  display: grid;
  min-width: 52px;
  min-height: 44px;
  align-items: center;
  justify-items: end;
  color: var(--stage2-green);
  text-decoration: none;
}

.stage2-material-download-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage2-material-download span {
  margin-top: 5px;
  color: #9a9588;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.stage2-material-download:hover,
.stage2-material-download:focus-visible {
  color: var(--stage2-gold-readable);
}

.stage2-material-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.stage2-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(196, 166, 78, 0.44);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--stage2-green);
  background: #f4efdf;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage2-interest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stage2-interest-form.is-compact {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.stage2-registration-card .stage2-interest-form.is-compact label {
  color: var(--stage2-cream);
  text-align: left;
}

.stage2-interest-form label,
.a2b-field label,
.stage2-feedback label {
  display: grid;
  gap: 6px;
  color: var(--stage2-green);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
}

.stage2-interest-form input,
.stage2-interest-form select,
.stage2-interest-form textarea,
.a2b-field input,
.stage2-feedback input[type="text"],
.stage2-feedback textarea {
  width: 100%;
  border: 1px solid var(--stage2-line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--stage2-ink);
  background: var(--stage2-cream-bright);
  font: 500 15px/1.3 var(--stage2-body);
  text-transform: none;
  letter-spacing: 0;
  transition:
    border-color 0.18s var(--stage2-ease),
    box-shadow 0.18s var(--stage2-ease),
    background-color 0.18s var(--stage2-ease);
}

.stage2-interest-form input:focus,
.stage2-interest-form select:focus,
.stage2-interest-form textarea:focus,
.a2b-field input:focus,
.stage2-feedback input[type="text"]:focus,
.stage2-feedback textarea:focus {
  border-color: rgba(15, 68, 48, 0.42);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(196, 166, 78, 0.16);
}

.stage2-interest-form textarea {
  min-height: 110px;
  resize: vertical;
}

.stage2-form-wide {
  grid-column: 1 / -1;
}

.stage2-form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.stage2-interest-form.is-compact .stage2-form-actions {
  display: grid;
  justify-items: center;
  margin-top: 2px;
  justify-content: center;
  text-align: center;
}

.stage2-interest-form.is-compact .stage2-form-status {
  flex: 0 0 100%;
  min-height: 1.4em;
  color: rgba(251, 247, 236, 0.8);
  text-align: center;
}

.stage2-interest-form.is-compact .stage2-form-status.is-error {
  color: #f3c0a8;
}

.stage2-form-status {
  margin: 0;
  color: var(--stage2-green);
  font-weight: 700;
}

.stage2-form-status.is-error {
  color: var(--stage2-error);
}

.stage2-success-overlay {
  position: absolute;
  inset: -10px;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 14px;
  background: rgba(15, 68, 48, 0.88);
  backdrop-filter: blur(4px);
}

.stage2-success-overlay[hidden] {
  display: none;
}

.stage2-success-panel {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(100%, 540px);
  padding: 26px;
  border: 1px solid rgba(196, 166, 78, 0.55);
  border-radius: 14px;
  color: var(--stage2-cream);
  background: rgba(251, 247, 236, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.stage2-success-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: var(--stage2-green);
  background: var(--stage2-gold);
  font-family: var(--stage2-display);
  font-size: 28px;
  line-height: 1;
}

.stage2-success-panel strong {
  color: var(--stage2-cream);
  font-family: var(--stage2-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.stage2-success-panel span:not(.stage2-success-mark) {
  max-width: 420px;
  color: rgba(251, 247, 236, 0.82);
  font-size: 17px;
  line-height: 1.45;
}

.a2b-page {
  padding-bottom: 78px;
}

.a2b-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(15, 68, 48, 0.96);
  border-bottom: 1px solid rgba(196, 166, 78, 0.28);
  box-shadow: 0 10px 26px rgba(15, 51, 35, 0.16);
  backdrop-filter: blur(12px);
}

.a2b-header-inner {
  width: min(1140px, calc(100% - 88px));
  min-height: 59px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(230px, 1fr);
  gap: 20px;
  align-items: center;
}

.a2b-header-inner.is-cobrand {
  grid-template-columns: minmax(320px, auto) minmax(230px, auto) auto;
}

.a2b-header-inner.is-cobrand.is-logo-only {
  grid-template-columns: minmax(0, 1fr);
}

.a2b-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  gap: 16px;
  border: 1px solid rgba(251, 247, 236, 0.1);
  border-radius: 10px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.a2b-header-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

.a2b-brand-lockup .a2b-header-brand {
  flex: 0 0 auto;
  padding-right: 18px;
  border-right: 1px solid rgba(251, 247, 236, 0.32);
}

.a2b-header-brand img {
  display: block;
  width: auto;
  height: 38px;
}

.a2b-header-copy {
  color: var(--stage2-cream);
  text-align: center;
}

.a2b-header-copy strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.a2b-header-copy span {
  display: block;
  margin-top: 7px;
  color: var(--stage2-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.a2b-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.a2b-header-actions span,
.a2b-header-actions button {
  min-height: 28px;
  border: 1px solid rgba(196, 166, 78, 0.42);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--stage2-gold);
  background: transparent;
  font: 800 10px/1 var(--stage2-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.a2b-header-actions button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  color: var(--stage2-gold);
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: none;
  transition:
    background-color 0.18s var(--stage2-ease),
    border-color 0.18s var(--stage2-ease),
    color 0.18s var(--stage2-ease),
    transform 0.18s var(--stage2-ease);
}

.a2b-header-actions button:hover {
  border-color: rgba(196, 166, 78, 0.72);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.a2b-header-partner {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  grid-column: -2 / -1;
  min-height: 44px;
}

.a2b-brand-lockup .a2b-header-partner {
  flex: 0 1 auto;
  justify-self: auto;
  grid-column: auto;
}

.a2b-header-partner img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 140px;
  object-fit: contain;
}

.a2b-shell {
  min-height: calc(100vh - 59px);
}

.a2b-step {
  display: none;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) 0;
}

.a2b-step.is-active {
  display: block;
}

.a2b-welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.a2b-step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.a2b-scan-step {
  width: min(1140px, calc(100% - 88px));
  padding: 40px 0 96px;
}

.a2b-scan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.a2b-scan-head .a2b-kicker {
  margin-top: 8px;
}

.a2b-scan-step .a2b-title {
  font-size: clamp(40px, 4vw, 46px);
  line-height: 1.04;
}

.a2b-scan-step .stage2-rule {
  width: 100%;
  margin: 18px 0 22px;
}

.a2b-scan-step .stage2-copy {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.55;
}

.a2b-scan-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 11px;
  background: var(--stage2-green);
}

.a2b-scan-mark span {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: var(--stage2-cream);
  transform: rotate(45deg);
}

.a2b-field-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 8px;
}

.a2b-field {
  flex: 1 1 180px;
}

.a2b-summary {
  position: sticky;
  top: 64px;
  z-index: 50;
  width: 100vw;
  margin: 14px 0 30px calc(50% - 50vw);
  border-top: 1px solid var(--stage2-line);
  border-bottom: 1px solid var(--stage2-line);
  background: rgba(251, 247, 236, 0.93);
  backdrop-filter: blur(10px);
}

.a2b-summary-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 16px 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.a2b-summary-heading {
  flex: 0 0 auto;
}

.a2b-summary-heading strong {
  display: block;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 15px;
  line-height: 1.1;
}

.a2b-summary-heading span {
  display: block;
  margin-top: 2px;
  color: var(--stage2-gold-readable);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.a2b-area-bars {
  display: flex;
  flex: 1 1 460px;
  flex-wrap: wrap;
  gap: 18px;
}

.a2b-area-bars > div {
  flex: 1 1 140px;
  min-width: 135px;
}

.a2b-bar-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  color: var(--stage2-muted);
  font-size: 12px;
  line-height: 1.1;
}

.a2b-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.a2b-bar-track {
  flex: 1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--stage2-soft);
}

.a2b-bar-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--stage2-green);
  transition: background-color 0.25s ease;
}

.a2b-overall {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-areas:
    "label label actions"
    "pct verdict actions"
    "small small actions";
  column-gap: 9px;
  row-gap: 2px;
  align-items: center;
  flex: 0 0 auto;
  padding-left: 20px;
  border-left: 1px solid var(--stage2-line);
}

.a2b-overall .stage2-kicker {
  grid-area: label;
  margin: 0;
  color: var(--stage2-gold-readable);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.a2b-overall strong {
  grid-area: pct;
  display: inline-block;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 30px;
  line-height: 1;
}

.a2b-overall > span:not(.stage2-kicker) {
  grid-area: verdict;
  display: inline-block;
  margin-left: 0;
  color: var(--stage2-muted);
  font-size: 13px;
  font-weight: 600;
}

.a2b-overall small {
  grid-area: small;
  display: block;
  margin-top: 2px;
  color: var(--stage2-muted);
  font-size: 12px;
}

.a2b-reset-button,
.a2b-tool-button {
  min-height: 44px;
  border: 1px solid #d8cfb8;
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--stage2-muted);
  background: var(--stage2-cream-bright);
  font: 700 13px/1.1 var(--stage2-body);
  cursor: pointer;
  transition:
    border-color 0.18s var(--stage2-ease),
    box-shadow 0.18s var(--stage2-ease),
    color 0.18s var(--stage2-ease),
    transform 0.18s var(--stage2-ease);
}

.a2b-reset-button:hover,
.a2b-tool-button:hover {
  border-color: rgba(196, 166, 78, 0.52);
  color: var(--stage2-green);
  box-shadow: 0 8px 18px rgba(15, 68, 48, 0.09);
  transform: translateY(-1px);
}

.a2b-reset-button {
  background: var(--stage2-cream-bright);
}

.a2b-summary-actions {
  grid-area: actions;
  display: flex;
  gap: 7px;
  margin-left: 6px;
}

.a2b-summary-actions .a2b-button {
  min-height: 44px;
  border-radius: 8px;
  padding: 8px 14px;
  background: var(--stage2-green);
  border-color: var(--stage2-green);
  font-family: var(--stage2-body);
  font-size: 13px;
  font-weight: 700;
}

.a2b-checklist-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
}

.a2b-checklist-toolbar h2 {
  margin: 0;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 22px;
  line-height: 1.1;
}

.a2b-checklist-toolbar > div {
  display: flex;
  gap: 8px;
}

.a2b-accordion {
  display: grid;
  gap: 12px;
}

.a2b-accordion-card {
  overflow: hidden;
}

.a2b-accordion-head {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.a2b-scan-step .a2b-accordion-card {
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 68, 48, 0.04);
}

.a2b-scan-step .a2b-accordion-head {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  padding: 16px 20px;
}

.a2b-scan-step .a2b-accordion-head > span:nth-child(2) {
  flex: 1 1 auto;
  min-width: 0;
}

.a2b-scan-step .a2b-accordion-head .stage2-kicker {
  display: block;
  margin: 0 0 2px;
  color: var(--stage2-gold-readable);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.a2b-scan-step .a2b-accordion-head strong {
  color: var(--stage2-ink);
  font-family: var(--stage2-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.a2b-scan-step .a2b-accordion-head > span:nth-child(3) {
  flex: 0 0 auto;
  color: #8a8578;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.a2b-scan-step .a2b-accordion-head .a2b-chevron {
  flex: 0 0 auto;
  color: var(--stage2-gold-deep);
  font-size: 13px;
}

.a2b-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--stage2-gold-deep);
  transition: transform 0.18s ease;
}

.a2b-chevron.is-open {
  transform: rotate(90deg);
}

.a2b-chevron-icon,
.a2b-mark-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a2b-mark-icon {
  width: 15px;
  height: 15px;
}

.a2b-scan-step .a2b-number {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--stage2-green);
  color: var(--stage2-gold);
  font-family: var(--stage2-display);
  font-size: 19px;
  font-weight: 700;
}

.a2b-accordion-body {
  border-top: 1px solid #f0e7d4;
  padding: 0 18px 14px;
}

.a2b-scan-step .a2b-accordion-body {
  padding: 4px 20px 20px;
}

.a2b-scan-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #f0e7d4;
}

.a2b-scan-step .a2b-scan-row {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 12px 2px;
  color: #3a3a30;
  font-size: 15px;
  line-height: 1.35;
}

.a2b-scan-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.a2b-scan-item strong {
  flex: 0 0 auto;
  width: 22px;
  color: #c2b488;
  font-size: 12px;
  font-weight: 800;
}

.a2b-segments {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.a2b-segment {
  min-height: 44px;
  border: 1px solid var(--stage2-line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--stage2-muted);
  background: #fff;
  font: 700 13px/1.1 var(--stage2-body);
  cursor: pointer;
  transition:
    border-color 0.18s var(--stage2-ease),
    background-color 0.18s var(--stage2-ease),
    color 0.18s var(--stage2-ease),
    transform 0.18s var(--stage2-ease);
}

.a2b-segment:hover {
  border-color: rgba(196, 166, 78, 0.55);
  color: var(--stage2-green);
  transform: translateY(-1px);
}

.a2b-scan-step .a2b-segments {
  flex: 0 0 auto;
  gap: 7px;
}

.a2b-scan-step .a2b-segment {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
}

.a2b-scan-step .a2b-segment:not(.is-ready):not(.is-partial):not(.is-none) {
  background: #ffffff;
}

.a2b-scan-step .a2b-segment:not(.is-ready):not(.is-partial):not(.is-none)[data-a2b-status="ready"] {
  border-color: #cfe0d5;
  color: #5e7a68;
}

.a2b-scan-step .a2b-segment:not(.is-ready):not(.is-partial):not(.is-none)[data-a2b-status="partial"] {
  border-color: #e6d9b8;
  color: var(--stage2-gold-readable);
}

.a2b-scan-step .a2b-segment:not(.is-ready):not(.is-partial):not(.is-none)[data-a2b-status="none"] {
  border-color: var(--stage2-line);
  color: var(--stage2-muted);
}

.a2b-segment.is-ready {
  color: var(--stage2-cream);
  background: var(--stage2-green);
  border-color: var(--stage2-green);
}

.a2b-segment.is-partial,
.a2b-segment.is-progress {
  color: #fff;
  background: var(--stage2-gold-deep);
  border-color: var(--stage2-gold-deep);
}

.a2b-segment.is-none,
.a2b-segment.is-na {
  color: var(--stage2-cream);
  background: #7a756a;
  border-color: #7a756a;
}

.a2b-roster-list {
  display: grid;
  gap: 9px;
  padding-top: 12px;
}

.a2b-roster-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid #ece5d3;
  border-radius: 9px;
  padding: 11px 13px;
  color: var(--stage2-ink);
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.18s var(--stage2-ease),
    background-color 0.18s var(--stage2-ease),
    transform 0.18s var(--stage2-ease);
}

.a2b-roster-row:hover {
  border-color: rgba(196, 166, 78, 0.5);
  transform: translateY(-1px);
}

.a2b-roster-row.is-active {
  border-color: #bfd6c7;
  background: #f0f6f1;
}

.a2b-roster-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid #d8cfb8;
  border-radius: 6px;
  color: var(--stage2-cream);
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.a2b-roster-row.is-active span {
  border-color: var(--stage2-green);
  background: var(--stage2-green);
}

.a2b-output-panel {
  display: grid;
  gap: 16px;
  padding-top: 14px;
}

.a2b-output-panel p {
  margin: 0;
  color: #3a3a30;
  font-size: 15px;
  line-height: 1.6;
}

.a2b-output-box {
  border: 1px solid #eae0c6;
  border-radius: 11px;
  padding: 16px 18px;
  background: #f7f3e6;
}

.a2b-output-box .stage2-kicker {
  margin-bottom: 4px;
  color: var(--stage2-gold-readable);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.a2b-output-box strong {
  display: inline-block;
  margin-right: 10px;
  color: var(--stage2-green);
  font-family: var(--stage2-display);
  font-size: 34px;
  line-height: 1;
}

.a2b-output-box span {
  color: var(--stage2-muted);
  font-size: 13px;
  font-weight: 700;
}

.a2b-output-box small {
  display: block;
  margin-top: 4px;
  color: var(--stage2-muted);
  font-size: 13px;
}

.a2b-muted-note {
  margin: 6px 0 0;
  color: #8a8578;
  font-size: 13px;
  line-height: 1.55;
}

.a2b-scan-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  border-top: 1px solid #e7e1d0;
  padding-top: 18px;
  color: #9a958a;
  font-size: 13px;
}

.a2b-scan-footer .stage2-actions {
  margin-top: 0;
}

.a2b-map {
  margin-top: 30px;
  border-radius: 16px;
  padding: 26px 28px;
  color: var(--stage2-cream);
  background: var(--stage2-green);
}

.a2b-map-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.a2b-map h2 {
  margin: 4px 0 0;
  color: var(--stage2-cream);
  font-family: var(--stage2-display);
  font-size: 26px;
  line-height: 1.1;
}

.a2b-map-overall {
  text-align: right;
}

.a2b-map-overall strong {
  display: block;
  color: var(--stage2-cream);
  font-family: var(--stage2-display);
  font-size: 30px;
  line-height: 1;
}

.a2b-map-overall span {
  color: var(--stage2-gold);
  font-size: 13px;
  font-weight: 700;
}

.a2b-map-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.a2b-map-card {
  padding: 16px;
  border: 1px solid rgba(196, 166, 78, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.a2b-map-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.a2b-map-card strong {
  color: var(--stage2-gold);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.a2b-map-card span {
  color: var(--stage2-cream);
  font-family: var(--stage2-display);
  font-size: 22px;
  font-weight: 700;
}

.a2b-map-card p,
.a2b-map > p {
  margin: 0;
  color: #cfd8cf;
  font-size: 12.5px;
  line-height: 1.5;
}

.a2b-map > p {
  margin-top: 18px;
  color: #a9b6aa;
  font-size: 12px;
  line-height: 1.55;
}

.a2b-intake-grid,
.a2b-playbook-grid,
.a2b-role-grid {
  display: grid;
  gap: 12px;
}

.a2b-minimum {
  padding: 22px;
  color: var(--stage2-cream);
  background: var(--stage2-green);
}

.a2b-minimum button,
.a2b-role-button {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(251, 247, 236, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.18s var(--stage2-ease),
    background-color 0.18s var(--stage2-ease),
    transform 0.18s var(--stage2-ease);
}

.a2b-minimum button:hover,
.a2b-role-button:hover {
  border-color: rgba(196, 166, 78, 0.45);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.a2b-minimum button.is-active,
.a2b-role-button.is-active {
  border-color: rgba(196, 166, 78, 0.6);
  background: rgba(196, 166, 78, 0.16);
}

.a2b-feedback-screen {
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vh, 28px);
  text-align: center;
}

.a2b-feedback-screen .stage2-arabic {
  color: var(--stage2-gold-readable);
  font-weight: 800;
  opacity: 1;
}

.a2b-qr-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}

.a2b-qr-card {
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--stage2-line);
  box-shadow: var(--stage2-shadow);
}

.a2b-qr-card img {
  display: block;
  width: 230px;
  max-width: min(62vw, 30vh);
  height: auto;
}

.a2b-qr-steps {
  display: grid;
  gap: 14px;
  max-width: 340px;
  text-align: left;
}

.a2b-qr-steps article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.a2b-bottom-nav {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(15, 68, 48, 0.98);
  box-shadow: 0 -10px 24px rgba(15, 51, 35, 0.18);
}

.a2b-bottom-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.a2b-bottom-nav .a2b-button.is-ghost {
  color: var(--stage2-cream);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(251, 247, 236, 0.78);
}

.a2b-bottom-nav .a2b-button.is-ghost:hover,
.a2b-bottom-nav .a2b-button.is-ghost:focus-visible {
  color: var(--stage2-green);
  background: var(--stage2-cream);
  outline: none;
}

.a2b-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.a2b-dot {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.a2b-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(251, 247, 236, 0.42);
  transform: translate(-50%, -50%);
  content: "";
}

.a2b-dot.is-active {
  width: 44px;
}

.a2b-dot.is-active::before {
  width: 28px;
  background: var(--stage2-gold);
}

.a2b-dot:focus-visible {
  outline: 3px solid #f1cf67;
  outline-offset: 1px;
}

.stage2-feedback .feedback-hero,
.stage2-resources .feedback-hero {
  position: relative;
  overflow: hidden;
  color: var(--stage2-cream);
  background:
    linear-gradient(135deg, rgba(12, 51, 33, 0.96) 0%, rgba(15, 68, 48, 0.98) 58%, rgba(7, 48, 30, 0.96) 100%),
    var(--stage2-green);
  padding-bottom: 34px;
}

.stage2-feedback .feedback-hero::after,
.stage2-resources .feedback-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 166, 78, 0.42), transparent);
  pointer-events: none;
}

.stage2-feedback .feedback-kicker,
.stage2-resources .feedback-kicker {
  margin: 0 0 12px;
  color: var(--stage2-gold);
  font: 800 12px/1.4 var(--stage2-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage2-feedback .feedback-kicker::before,
.stage2-resources .feedback-kicker::before {
  display: none;
}

.stage2-resources .stage2-header-inner {
  width: min(1180px, calc(100% - 88px));
  min-height: 60px;
}

.stage2-resources .stage2-brand img {
  height: 38px;
}

.stage2-resources .stage2-nav a {
  min-height: 44px;
  padding: 12px 20px;
  letter-spacing: 0;
  text-transform: none;
}

.resources-breadcrumb,
.feedback-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 16px;
  color: rgba(251, 247, 236, 0.78);
  font: 800 12px/1.4 var(--stage2-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resources-breadcrumb a,
.feedback-breadcrumb a {
  color: var(--stage2-gold);
  text-decoration: none;
}

.resources-breadcrumb a:hover,
.feedback-breadcrumb a:hover {
  color: var(--stage2-cream);
}

.resources-breadcrumb span:last-child,
.feedback-breadcrumb span:last-child {
  color: rgba(251, 247, 236, 0.72);
}

.stage2-feedback .feedback-header,
.stage2-resources .feedback-header {
  width: min(1180px, calc(100% - 40px));
}

.stage2-feedback .feedback-brand img,
.stage2-resources .feedback-brand img {
  height: 34px;
  width: auto;
}

.stage2-feedback .feedback-header.is-cobrand {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.feedback-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  gap: 16px;
  border: 1px solid rgba(251, 247, 236, 0.1);
  border-radius: 10px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.feedback-brand-lockup .feedback-brand {
  flex: 0 0 auto;
  padding-right: 18px;
  border-right: 1px solid rgba(251, 247, 236, 0.32);
}

.feedback-header-partner {
  display: inline-flex;
  align-items: center;
}

.feedback-brand-lockup .feedback-header-partner {
  flex: 0 1 auto;
}

.feedback-header-partner img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 140px;
  object-fit: contain;
}

.stage2-feedback .feedback-header-link,
.stage2-resources .feedback-header-link {
  color: var(--stage2-green);
  background: var(--stage2-gold);
  border-color: var(--stage2-gold);
}

.stage2-feedback .feedback-hero h1,
.stage2-resources .feedback-hero h1 {
  font-family: var(--stage2-display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.06;
  white-space: normal;
}

.stage2-feedback .feedback-intro h2,
.stage2-feedback .feedback-section-heading h2,
.stage2-feedback .feedback-success h2 {
  font-family: var(--stage2-display);
  letter-spacing: 0;
}

.stage2-feedback .feedback-section-heading .section-title-en {
  color: var(--stage2-green);
  font: 800 12px/1.4 var(--stage2-body);
  letter-spacing: 0.12em;
}

.stage2-feedback .feedback-section-heading .section-title-ar {
  color: var(--stage2-green-deep);
  font-family: var(--stage2-arabic);
}

.stage2-feedback .feedback-hero .feedback-sponsors,
.stage2-resources .feedback-hero .feedback-sponsors {
  width: min(1180px, calc(100% - 40px));
  margin: 10px auto 0;
  padding: 0;
  border-top: 0;
}

.stage2-feedback .feedback-hero .feedback-sponsors p,
.stage2-resources .feedback-hero .feedback-sponsors p {
  margin: 0 0 14px;
  color: rgba(251, 247, 236, 0.74);
  font: 800 13px/1 var(--stage2-body);
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.stage2-feedback .feedback-sponsor-grid,
.stage2-resources .feedback-sponsor-grid {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-around;
  gap: clamp(22px, 3vw, 70px);
  flex-wrap: nowrap;
  padding: 18px clamp(30px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 14px;
}

.stage2-feedback .feedback-sponsor-grid span,
.stage2-resources .feedback-sponsor-grid span {
  display: flex;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.stage2-feedback .feedback-sponsor-grid img,
.stage2-resources .feedback-sponsor-grid img,
.stage2-feedback .feedback-sponsor-grid .feedback-logo-edb,
.stage2-resources .feedback-sponsor-grid .feedback-logo-edb {
  width: auto;
  height: auto;
  max-width: 145px;
  max-height: 48px;
  object-fit: contain;
}

.stage2-feedback .feedback-footer-brand img {
  height: 34px;
  width: auto;
}

@media (max-width: 980px) {
  .stage2-feedback .feedback-sponsor-grid,
  .stage2-resources .feedback-sponsor-grid {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 22px;
    padding: 20px;
  }

  .stage2-feedback .feedback-sponsor-grid img,
  .stage2-resources .feedback-sponsor-grid img,
  .stage2-feedback .feedback-sponsor-grid .feedback-logo-edb,
  .stage2-resources .feedback-sponsor-grid .feedback-logo-edb {
    max-width: min(128px, 100%);
    max-height: 42px;
  }
}

@media (max-width: 640px) {
  .stage2-feedback .feedback-hero .feedback-sponsors,
  .stage2-resources .feedback-hero .feedback-sponsors {
    width: min(100% - 28px, 1180px);
    margin-top: 8px;
  }

  .stage2-feedback .feedback-sponsor-grid,
  .stage2-resources .feedback-sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    padding: 18px;
  }

  .stage2-feedback .feedback-sponsor-grid img,
  .stage2-resources .feedback-sponsor-grid img,
  .stage2-feedback .feedback-sponsor-grid .feedback-logo-edb,
  .stage2-resources .feedback-sponsor-grid .feedback-logo-edb {
    max-width: min(118px, 100%);
    max-height: 40px;
  }
}

.stage2-resources .resources-gallery-toolbar {
  display: flex;
}

.stage2-resources .resources-media-preview {
  aspect-ratio: 4 / 3;
  background: #e8e1ce;
  overflow: hidden;
}

.stage2-resources .resources-media-preview img,
.stage2-resources .resources-media-preview video {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform 0.55s var(--stage2-ease);
}

.stage2-resources .resources-card:hover .resources-media-preview img,
.stage2-resources .resources-card:hover .resources-media-preview video {
  transform: scale(1.025);
}

.stage2-resources .resources-media-open:disabled {
  cursor: default;
}

.stage2-resources .resources-media-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px;
  color: var(--stage2-muted);
  background:
    linear-gradient(135deg, rgba(196, 166, 78, 0.14), transparent 42%),
    #f0ebdd;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.stage2-resources .resources-media-fallback-icon {
  display: block;
  width: 34px;
  height: 28px;
  border: 2px solid var(--stage2-gold-deep);
  border-radius: 6px;
  opacity: 0.78;
  background:
    radial-gradient(circle at 32% 35%, var(--stage2-gold-deep) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 55%, var(--stage2-gold-deep) 56% 64%, transparent 65%);
}

@media (min-width: 1200px) and (max-width: 1560px) {
  .stage2-floatnav {
    right: 14px;
    display: flex !important;
  }

  .stage2-floatnav-label {
    position: absolute;
    right: 48px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
  }

  .stage2-floatnav button.is-active .stage2-floatnav-label,
  .stage2-floatnav button:hover .stage2-floatnav-label,
  .stage2-floatnav button:focus-visible .stage2-floatnav-label {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1199px) {
  .stage2-floatnav {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .a2b-header-inner {
    width: min(100% - 32px, 1140px);
    grid-template-columns: minmax(160px, 1fr) minmax(0, auto);
    gap: 10px 16px;
    padding: 11px 0;
  }

  .a2b-header-inner.is-cobrand {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "copy"
      "actions";
  }

  .a2b-header-inner.is-cobrand.is-logo-only {
    grid-template-areas: "brand";
  }

  .a2b-header-inner.is-cobrand .a2b-brand-lockup {
    grid-area: brand;
  }

  .a2b-header-inner.is-cobrand .a2b-header-copy {
    grid-area: copy;
    grid-column: auto;
    grid-row: auto;
  }

  .a2b-header-inner.is-cobrand .a2b-header-actions {
    grid-area: actions;
  }

  .a2b-header-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .a2b-header-actions {
    justify-self: end;
  }

  .stage2-guide .stage2-header-inner,
  .stage2-guide .stage2-container,
  .stage2-guide-footer .stage2-container {
    width: min(100% - 32px, 1180px);
  }

  .stage2-page:not(.stage2-guide) .stage2-header-inner.is-cobrand,
  .stage2-resources .stage2-header-inner.is-cobrand,
  .stage2-feedback .feedback-header.is-cobrand {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "nav";
    gap: 10px 18px;
    padding: 12px 0;
  }

  .stage2-header-inner.is-cobrand.is-logo-only,
  .stage2-feedback .feedback-header.is-cobrand.is-logo-only {
    grid-template-areas: "brand";
  }

  .stage2-page:not(.stage2-guide) .stage2-header-inner.is-cobrand .stage2-brand-lockup,
  .stage2-resources .stage2-header-inner.is-cobrand .stage2-brand-lockup,
  .stage2-feedback .feedback-header.is-cobrand .feedback-brand-lockup {
    grid-area: brand;
  }

  .stage2-page:not(.stage2-guide) .stage2-header-inner.is-cobrand .stage2-nav,
  .stage2-resources .stage2-header-inner.is-cobrand .stage2-nav,
  .stage2-feedback .feedback-header.is-cobrand .feedback-header-link {
    grid-area: nav;
    width: 100%;
    justify-content: center;
  }

  .stage2-guide .stage2-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .stage2-guide .stage2-header-inner.is-cobrand {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "nav";
    align-items: center;
    gap: 10px 18px;
  }

  .stage2-header-inner.is-cobrand .stage2-brand-lockup {
    grid-area: brand;
  }

  .stage2-header-inner.is-cobrand .stage2-nav {
    grid-area: nav;
    width: 100%;
  }

  .stage2-guide .stage2-brand-lockup .stage2-brand img {
    height: 34px;
  }

  .stage2-guide .stage2-brand-lockup .stage2-header-partner img {
    height: 34px;
    max-width: 136px;
  }

  .stage2-guide .stage2-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .stage2-guide [data-stage2-view="recap"] section[aria-labelledby="agenda-title"] .stage2-container {
    display: block;
  }

  .stage2-recap-agenda .stage2-container {
    display: block;
  }

  .stage2-recap-agenda .stage2-timeline {
    margin-top: 28px;
  }

  .stage2-recap-agenda-copy {
    max-width: 620px;
  }

  .stage2-guide .stage2-nav button {
    border: 1px solid rgba(251, 247, 236, 0.18);
    border-radius: 8px;
    padding: 9px 11px;
  }

  .stage2-guide .stage2-view[data-stage2-view="pathway"] > .stage2-section:first-child .stage2-section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stage2-guide .stage2-view[data-stage2-view="pathway"] > .stage2-section:first-child .stage2-section-head > * {
    min-width: 0;
  }

  .stage2-partners.stage2-partners-overview .stage2-partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 28px;
    padding: 18px 24px;
  }

  .stage2-partners.stage2-partners-overview .stage2-partner-grid img {
    max-width: min(138px, 100%);
  }

  .stage2-hero-grid,
  .stage2-overview-grid,
  .stage2-handoff-strip,
  .stage2-quickscan-card,
  .stage2-pulse-card,
  .stage2-section-head,
  .stage2-grid,
  .stage2-grid.is-two,
  .stage2-status-strip,
  .stage2-material-grid,
  .stage2-speaker-grid,
  .stage2-speaker-grid.is-two,
  .stage2-pathway-track,
  .stage2-guide-footer .stage2-container,
  .a2b-welcome-grid {
    grid-template-columns: 1fr;
  }

  .stage2-status-arrow,
  .stage2-handoff-strip .stage2-status-arrow {
    display: none;
  }

  .stage2-handoff-strip {
    gap: 10px;
  }

  .stage2-handoff-strip article {
    min-height: 128px;
  }

  .stage2-speaker-grid.is-two .stage2-speaker-card {
    grid-template-columns: 1fr;
  }

  .stage2-speaker-grid.is-two .stage2-speaker-card img,
  .stage2-speaker-grid.is-two .stage2-photo-drop {
    grid-column: 1;
    grid-row: auto;
    height: 160px;
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid #e7dfcf;
  }

  .stage2-speaker-grid.is-two .stage2-photo-drop {
    border: 1px dashed #bdbdb8;
    border-left: 0;
    border-right: 0;
    border-top: 0;
  }

  .stage2-speaker-grid.is-two .stage2-speaker-card > :not(img):not(.stage2-photo-drop):not(.stage2-card-ribbon) {
    grid-column: 1;
    margin-left: 14px;
    margin-right: 14px;
  }

  .stage2-speaker-grid.is-two .stage2-speaker-card .stage2-badge {
    align-self: start;
    margin-top: 13px;
  }

  .stage2-speaker-grid.is-two .stage2-speaker-card p:last-child {
    margin-bottom: 14px;
  }

  .stage2-overview-speakers .stage2-speaker-grid:not(.is-two) .stage2-speaker-card img,
  .stage2-overview-speakers .stage2-speaker-grid:not(.is-two) .stage2-photo-drop {
    min-height: 245px;
    height: clamp(245px, 68vw, 315px);
  }

  .stage2-overview-speakers .stage2-speaker-photo.is-yasmin {
    object-position: center 44%;
  }

  .stage2-speaker-grid.is-two .stage2-speaker-card img.stage2-speaker-photo.is-khalifa {
    height: clamp(230px, 70vw, 310px);
    min-height: 230px;
    object-position: center 32%;
  }

  .stage2-overview-speakers .stage2-speaker-photo.is-hamda,
  .stage2-overview-speakers .stage2-speaker-photo.is-etienne {
    object-position: center 21%;
  }

  .stage2-overview-speakers .stage2-speaker-photo.is-mohamed {
    object-position: center 24%;
  }

  .stage2-difference-card {
    min-height: auto;
  }

  .stage2-pathway-card {
    grid-template-columns: 1fr;
  }

  .stage2-pathway-card-side {
    min-height: auto;
  }

  .stage2-pathway-card-side strong {
    font-size: 52px;
  }

  .stage2-pathway-card-details {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .stage2-signature-output {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stage2-signature-output .stage2-copy {
    max-width: none;
  }

  .stage2-signature-output .stage2-title {
    white-space: normal;
  }

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

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

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

  .a2b-field-grid,
  .a2b-summary-inner,
  .a2b-area-bars,
  .a2b-map-grid {
    grid-template-columns: 1fr;
  }

  .a2b-summary {
    position: static;
  }
}

@media (max-width: 700px) {
  .stage2-header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 58px;
  }

  .stage2-page:not(.stage2-guide) .stage2-header-inner.is-cobrand,
  .stage2-resources .stage2-header-inner.is-cobrand,
  .stage2-feedback .feedback-header.is-cobrand {
    gap: 8px 14px;
  }

  .stage2-header-inner.is-cobrand.is-logo-only,
  .stage2-feedback .feedback-header.is-cobrand.is-logo-only {
    grid-template-areas: "brand";
  }

  .stage2-brand-lockup,
  .feedback-brand-lockup,
  .a2b-brand-lockup {
    gap: 10px;
    border-radius: 9px;
    padding: 6px 8px;
  }

  .stage2-brand-lockup .stage2-brand,
  .feedback-brand-lockup .feedback-brand,
  .a2b-brand-lockup .a2b-header-brand {
    padding-right: 12px;
  }

  .stage2-page:not(.stage2-guide) .stage2-brand-lockup .stage2-brand img,
  .stage2-resources .stage2-brand-lockup .stage2-brand img,
  .stage2-feedback .feedback-brand-lockup .feedback-brand img {
    height: 29px;
  }

  .stage2-page:not(.stage2-guide) .stage2-brand-lockup .stage2-header-partner img,
  .stage2-resources .stage2-brand-lockup .stage2-header-partner img,
  .stage2-feedback .feedback-brand-lockup .feedback-header-partner img {
    height: 28px;
    max-width: 108px;
  }

  .stage2-page:not(.stage2-guide) .stage2-nav a:not(.is-primary) {
    display: none;
  }

  .stage2-guide .stage2-header-inner,
  .stage2-guide .stage2-container,
  .stage2-guide-footer .stage2-container {
    width: min(100% - 24px, 1180px);
  }

  .stage2-guide .stage2-header-inner {
    gap: 8px;
    padding: 8px 0;
  }

  .stage2-guide .stage2-header-inner.is-cobrand {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "nav";
    gap: 8px 14px;
  }

  .stage2-header-inner.is-cobrand .stage2-brand-lockup {
    grid-area: brand;
  }

  .stage2-header-inner.is-cobrand .stage2-nav {
    grid-area: nav;
    width: 100%;
  }

  .stage2-guide .stage2-brand-lockup .stage2-brand img,
  .stage2-guide .stage2-brand img {
    height: 29px;
  }

  .stage2-guide .stage2-brand-lockup .stage2-header-partner img,
  .stage2-guide .stage2-header-partner img {
    height: 28px;
    max-width: 108px;
  }

  .stage2-guide .stage2-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .stage2-guide .stage2-nav button {
    min-width: 0;
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 8px 7px;
    font-size: 11px;
    line-height: 1.12;
  }

  .stage2-guide .stage2-nav button.is-primary {
    min-width: 0;
  }

  .stage2-guide .stage2-nav button.is-primary {
    grid-column: 1 / -1;
    padding-inline: 10px;
  }

  .stage2-back-top {
    right: 12px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    justify-content: center;
    gap: 0;
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .stage2-back-top span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .stage2-back-top .stage2-inline-icon {
    margin-right: 0;
  }

  .stage2-pathway-track {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stage2-pathway-track article::before {
    left: 50%;
    right: auto;
    top: 18px;
    bottom: -18px;
    width: 3px;
    height: auto;
    transform: translateX(-50%);
  }

  .stage2-pathway-track article:last-child::before {
    display: none;
  }

  .stage2-signature-section.stage2-section {
    padding: 32px 0 36px;
  }

  .stage2-signature-output {
    border-radius: 14px;
    padding: 24px 20px;
  }

  .stage2-signature-list li {
    align-items: flex-start;
  }

  .stage2-readiness-section.stage2-section.is-tight {
    padding: 34px 0 38px;
  }

  .stage2-readiness-tab {
    width: 100%;
    justify-content: flex-start;
  }

  .stage2-readiness-detail {
    gap: 24px;
    padding: 22px;
  }

  .stage2-readiness-detail-heading {
    align-items: flex-start;
  }

  .stage2-container,
  .a2b-step,
  .a2b-bottom-inner,
  .a2b-summary-inner {
    width: min(100% - 24px, 1180px);
  }

  .stage2-hero {
    min-height: auto;
  }

  .stage2-overview-hero .stage2-container {
    padding: 34px 0 32px;
  }

  .stage2-overview-copy h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .stage2-overview-copy .stage2-arabic {
    font-size: 23px;
  }

  .stage2-partners.stage2-partners-overview > p {
    text-align: center;
  }

  .stage2-partners.stage2-partners-overview .stage2-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    padding: 18px;
  }

  .stage2-partners.stage2-partners-overview .stage2-partner-grid img {
    max-width: min(130px, 100%);
    max-height: 44px;
  }

  .stage2-hero-actions,
  .stage2-actions,
  .stage2-next-stop {
    align-items: stretch;
    flex-direction: column;
  }

  .stage2-overview-social [data-stage2-social] {
    align-items: center;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
  }

  .stage2-social-link {
    width: 42px;
    height: 42px;
  }

  .stage2-social-icon {
    width: 19px;
    height: 19px;
  }

  .stage2-hero-actions .stage2-button,
  .stage2-actions .stage2-button,
  .stage2-next-stop .stage2-button {
    width: 100%;
  }

  .stage2-difference-card,
  .stage2-handoff-strip article,
  .stage2-benchmark-card,
  .stage2-pulse-card,
  .stage2-registration-card {
    padding: 20px;
  }

  .stage2-quickscan-card {
    padding: 0;
  }

  .stage2-quickscan-card > div:first-child,
  .stage2-quickscan-card .stage2-quickscan-notes {
    padding: 22px;
  }

  .stage2-quickscan-card .stage2-quickscan-notes {
    border-top: 1px solid #eee7d6;
    border-left: 0;
  }

  .stage2-handoff-strip {
    border-radius: 16px;
    padding: 8px;
  }

  .stage2-handoff-strip article {
    min-height: 126px;
    border-radius: 12px;
    padding: 22px 20px 20px 74px;
  }

  .stage2-handoff-strip article::before {
    top: 22px;
    left: 20px;
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .stage2-handoff-strip article:first-child::after {
    top: 32px;
    left: 34px;
    width: 10px;
    height: 17px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .stage2-handoff-strip .stage2-kicker {
    margin: 0 0 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .stage2-handoff-strip h2 {
    font-size: 22px;
    line-height: 1.1;
  }

  .stage2-handoff-strip p:not(.stage2-kicker) {
    font-size: 15px;
    line-height: 1.35;
  }

  .stage2-benchmark-card {
    grid-template-columns: 1fr;
  }

  .stage2-next-stop > div {
    text-align: left;
  }

  .stage2-overview-next .stage2-next-stop {
    text-align: center;
  }

  .stage2-overview-next .stage2-next-stop .stage2-button {
    width: auto;
  }

  .stage2-stat-grid,
  .stage2-material-grid,
  .stage2-gallery,
  .a2b-step-list,
  .stage2-interest-form {
    grid-template-columns: 1fr;
  }

  .stage2-material-card {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    padding: 14px;
  }

  .stage2-material-more {
    justify-content: stretch;
  }

  .stage2-material-more .stage2-button {
    width: 100%;
  }

  .a2b-scan-row {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .a2b-segments {
    grid-column: 1 / -1;
  }

  .a2b-bottom-inner {
    min-height: 106px;
    padding: 8px 0 10px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "dots dots"
      "back next";
    gap: 8px 10px;
  }

  .a2b-button {
    min-height: 44px;
    padding-inline: 12px;
  }

  .a2b-bottom-inner > [data-a2b-back] {
    grid-area: back;
    min-width: 0;
  }

  .a2b-bottom-inner > .a2b-dots {
    grid-area: dots;
  }

  .a2b-bottom-inner > [data-a2b-next] {
    grid-area: next;
    min-width: 0;
  }

  .a2b-bottom-inner > [data-a2b-back]:empty {
    display: none;
  }

  .a2b-bottom-inner > [data-a2b-next]:empty {
    display: none;
  }

  .a2b-bottom-inner > [data-a2b-back]:empty ~ [data-a2b-next] {
    grid-column: 1 / -1;
  }

  .a2b-bottom-inner > [data-a2b-back] .a2b-button,
  .a2b-bottom-inner > [data-a2b-next] .a2b-button {
    width: 100%;
    padding-inline: 10px;
  }

  .a2b-feedback-screen {
    min-height: auto;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 22px;
    padding-bottom: 132px;
  }

  .a2b-feedback-screen .a2b-kicker {
    margin-bottom: 6px;
  }

  .a2b-feedback-screen .a2b-title {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.02;
  }

  .a2b-feedback-screen .stage2-arabic {
    margin-top: 6px;
    font-size: 22px;
    line-height: 1.2;
  }

  .a2b-feedback-screen .stage2-copy {
    font-size: 15px;
    line-height: 1.45;
  }

  .a2b-qr-wrap {
    gap: 10px;
  }

  .a2b-qr-card {
    padding: 10px;
  }

  .a2b-qr-card img {
    width: 176px;
    max-width: min(54vw, 21vh);
  }

  .a2b-qr-steps {
    gap: 8px;
  }

  .a2b-qr-steps article {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
  }
}

@media (max-width: 980px) {
  .a2b-scan-step {
    width: min(100% - 32px, 1140px);
  }

  .a2b-summary {
    position: static;
    width: auto;
    margin: 24px 0 30px;
  }

  .a2b-summary-inner {
    width: 100%;
    padding: 16px 0;
  }

  .a2b-overall {
    width: 100%;
    border-top: 1px solid var(--stage2-line);
    border-left: 0;
    padding-top: 14px;
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .a2b-header-brand img {
    height: 31px;
  }

  .a2b-header-partner img {
    height: 28px;
    max-width: 108px;
  }

  .a2b-header-copy strong {
    font-size: 12px;
  }

  .a2b-header-copy span {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .a2b-header-actions {
    gap: 8px;
  }

  .a2b-header-actions span {
    display: none;
  }

  .a2b-header-actions button {
    min-height: 44px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .a2b-scan-step {
    width: min(100% - 24px, 1140px);
    padding-top: 28px;
    padding-bottom: 132px;
  }

  .a2b-scan-head {
    align-items: flex-start;
  }

  .a2b-scan-mark {
    width: 44px;
    height: 44px;
  }

  .a2b-scan-step .a2b-title {
    font-size: clamp(34px, 11vw, 42px);
  }

  .a2b-checklist-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .a2b-scan-step .a2b-accordion-head {
    align-items: flex-start;
    gap: 12px;
    padding: 15px 16px;
  }

  .a2b-scan-step .a2b-accordion-head > span:nth-child(3) {
    margin-left: auto;
  }

  .a2b-scan-step .a2b-accordion-body {
    padding: 2px 16px 18px;
  }

  .a2b-scan-step .a2b-scan-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .a2b-scan-step .a2b-segments {
    grid-column: auto;
    width: 100%;
  }

  .a2b-scan-step .a2b-segment {
    flex: 1 1 92px;
  }

  .a2b-scan-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .stage2-button:hover,
  .a2b-button:hover,
  .stage2-card:hover,
  .a2b-card:hover,
  .stage2-speaker-card:hover,
  .stage2-gallery article:hover,
  .stage2-material-card:hover,
  .stage2-readiness-tab:hover,
  .stage2-pulse-options button:hover,
  .a2b-header-actions button:hover,
  .a2b-reset-button:hover,
  .a2b-tool-button:hover,
  .a2b-segment:hover,
  .a2b-roster-row:hover,
  .a2b-minimum button:hover,
  .a2b-role-button:hover,
  .stage2-resources .resources-card:hover,
  .stage2-feedback .feedback-panel:hover,
  .stage2-speaker-card:hover img,
  .stage2-gallery article:hover img,
  .stage2-gallery article:hover video,
  .stage2-resources .resources-card:hover .resources-media-preview img,
  .stage2-resources .resources-card:hover .resources-media-preview video {
    transform: none !important;
  }

  .stage2-hero-particles {
    display: none !important;
  }
}
