.container, .content-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md, 2rem);
  padding-right: var(--spacing-md, 2rem);
  width: 100%;
}
.bps-flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  --bps-flex-gap: var(--spacing-md, 2rem);
  gap: var(--bps-flex-gap);
}
.bps-flex-row > * {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}
@media (max-width: 768px) {
  .bps-flex-row.bps-stack-mobile {
    flex-direction: column;
    align-items: stretch;
  }
  .bps-flex-row.bps-stack-mobile > [class*="bps-col-"] {
    flex-basis: 100%;
    max-width: 100%;
  }
  .bps-flex-row.bps-nowrap-mobile {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.bps-flex-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md, 2rem);
}
.bps-gap-sm {
  --bps-flex-gap: var(--spacing-sm, 1rem);
  gap: var(--bps-flex-gap);
}
.bps-gap-md {
  --bps-flex-gap: var(--spacing-md, 2rem);
  gap: var(--bps-flex-gap);
}
.bps-gap-lg {
  --bps-flex-gap: var(--spacing-lg, 3rem);
  gap: var(--bps-flex-gap);
}
.bps-align-start {
  align-items: flex-start;
}
.bps-align-center {
  align-items: center;
}
.bps-align-end {
  align-items: flex-end;
}
.bps-align-stretch {
  align-items: stretch;
}
.bps-justify-start {
  justify-content: flex-start;
}
.bps-justify-center {
  justify-content: center;
}
.bps-justify-end {
  justify-content: flex-end;
}
.bps-justify-between {
  justify-content: space-between;
}
.bps-col-25 {
  flex: 1 1 calc(25%     - var(--bps-flex-gap, 1.25rem));
  min-width: 0;
}
.bps-col-33 {
  flex: 1 1 calc(33.333% - var(--bps-flex-gap, 1.25rem));
  min-width: 0;
}
.bps-col-50 {
  flex: 1 1 calc(50%     - var(--bps-flex-gap, 1.25rem));
  min-width: 0;
}
.bps-col-66 {
  flex: 1 1 calc(66.666% - var(--bps-flex-gap, 1.25rem));
  min-width: 0;
}
.bps-col-75 {
  flex: 1 1 calc(75%     - var(--bps-flex-gap, 1.25rem));
  min-width: 0;
}
.bps-flex-row.bps-align-stretch > [class*="bps-col-"] {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.bps-space-sm:not(.bps-bypass), .bps-space-md:not(.bps-bypass), .bps-space-lg:not(.bps-bypass), .bps-space-xl:not(.bps-bypass) {
  display: flex;
  flex-direction: column;
}
.bps-space-sm:not(.bps-bypass) {
  gap: 0.75rem;
}
.bps-space-md:not(.bps-bypass) {
  gap: 1.5rem;
}
.bps-space-lg:not(.bps-bypass) {
  gap: 2.5rem;
}
.bps-space-xl:not(.bps-bypass) {
  gap: 4rem;
}
.bps-text-left:not(.bps-bypass) {
  text-align: left;
}
.bps-text-center:not(.bps-bypass) {
  text-align: center;
}
.bps-text-right:not(.bps-bypass) {
  text-align: right;
}
.bps-text-center:not(.bps-bypass) > * {
  text-align: center;
}
.bps-text-right:not(.bps-bypass) > * {
  text-align: right;
}
.bps-text-center.bps-flex-row {
  justify-content: center;
}
.bps-text-right.bps-flex-row {
  justify-content: flex-end;
}
.prehead:not(.bps-bypass) {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
h1.section-title, h2.section-title, h3.section-title, .section-title:not(.bps-bypass) {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
}
.hero-title:not(.bps-bypass) {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
.hero-subtitle:not(.bps-bypass) {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
}
.stat-number:not(.bps-bypass) {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
}
.stat-label:not(.bps-bypass) {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section.light .btn-primary, .section.light button.btn-primary, .section.light input[type="submit"].btn-primary, .section.light button[type="submit"], .section.light input[type="submit"], .section.light2 .btn-primary, .section.light2 button.btn-primary, .section.light2 input[type="submit"].btn-primary, .section.light2 button[type="submit"], .section.light2 input[type="submit"], .section.dark .btn-primary, .section.dark button.btn-primary, .section.dark input[type="submit"].btn-primary, .section.dark button[type="submit"], .section.dark input[type="submit"], .section.dark2 .btn-primary, .section.dark2 button.btn-primary, .section.dark2 input[type="submit"].btn-primary, .section.dark2 button[type="submit"], .section.dark2 input[type="submit"] {
  background-color: var(--button-color) !important;
  color: var(--button-color-text) !important;
  border-color: var(--button-border-color, var(--button-color)) !important;
}
.section.light .btn-primary:hover, .section.light .btn-primary:focus, .section.light .btn-primary:active, .section.light button.btn-primary:hover, .section.light button.btn-primary:focus, .section.light button.btn-primary:active, .section.light input[type="submit"].btn-primary:hover, .section.light input[type="submit"].btn-primary:focus, .section.light input[type="submit"].btn-primary:active, .section.light button[type="submit"]:hover, .section.light button[type="submit"]:focus, .section.light button[type="submit"]:active, .section.light input[type="submit"]:hover, .section.light input[type="submit"]:focus, .section.light input[type="submit"]:active, .section.light2 .btn-primary:hover, .section.light2 .btn-primary:focus, .section.light2 .btn-primary:active, .section.light2 button.btn-primary:hover, .section.light2 button.btn-primary:focus, .section.light2 button.btn-primary:active, .section.light2 input[type="submit"].btn-primary:hover, .section.light2 input[type="submit"].btn-primary:focus, .section.light2 input[type="submit"].btn-primary:active, .section.light2 button[type="submit"]:hover, .section.light2 button[type="submit"]:focus, .section.light2 button[type="submit"]:active, .section.light2 input[type="submit"]:hover, .section.light2 input[type="submit"]:focus, .section.light2 input[type="submit"]:active, .section.dark .btn-primary:hover, .section.dark .btn-primary:focus, .section.dark .btn-primary:active, .section.dark button.btn-primary:hover, .section.dark button.btn-primary:focus, .section.dark button.btn-primary:active, .section.dark input[type="submit"].btn-primary:hover, .section.dark input[type="submit"].btn-primary:focus, .section.dark input[type="submit"].btn-primary:active, .section.dark button[type="submit"]:hover, .section.dark button[type="submit"]:focus, .section.dark button[type="submit"]:active, .section.dark input[type="submit"]:hover, .section.dark input[type="submit"]:focus, .section.dark input[type="submit"]:active, .section.dark2 .btn-primary:hover, .section.dark2 .btn-primary:focus, .section.dark2 .btn-primary:active, .section.dark2 button.btn-primary:hover, .section.dark2 button.btn-primary:focus, .section.dark2 button.btn-primary:active, .section.dark2 input[type="submit"].btn-primary:hover, .section.dark2 input[type="submit"].btn-primary:focus, .section.dark2 input[type="submit"].btn-primary:active, .section.dark2 button[type="submit"]:hover, .section.dark2 button[type="submit"]:focus, .section.dark2 button[type="submit"]:active, .section.dark2 input[type="submit"]:hover, .section.dark2 input[type="submit"]:focus, .section.dark2 input[type="submit"]:active {
  background-color: var(--cta-hover) !important;
  color: var(--cta-hover-text, var(--button-color-text)) !important;
  border-color: var(--cta-hover-border, var(--cta-hover)) !important;
}
.section.light .wp-block-button__link, .section.light .wp-block-button a.wp-element-button, .section.light a.wp-element-button, .section.light2 .wp-block-button__link, .section.light2 .wp-block-button a.wp-element-button, .section.light2 a.wp-element-button, .section.dark .wp-block-button__link, .section.dark .wp-block-button a.wp-element-button, .section.dark a.wp-element-button, .section.dark2 .wp-block-button__link, .section.dark2 .wp-block-button a.wp-element-button, .section.dark2 a.wp-element-button {
  background-color: var(--button-color);
  color: var(--button-color-text);
  border-color: var(--button-border-color, var(--button-color));
  text-decoration: none;
}
.section.light .wp-block-button__link:hover, .section.light .wp-block-button__link:focus, .section.light .wp-block-button__link:active, .section.light .wp-block-button a.wp-element-button:hover, .section.light .wp-block-button a.wp-element-button:focus, .section.light .wp-block-button a.wp-element-button:active, .section.light a.wp-element-button:hover, .section.light a.wp-element-button:focus, .section.light a.wp-element-button:active, .section.light2 .wp-block-button__link:hover, .section.light2 .wp-block-button__link:focus, .section.light2 .wp-block-button__link:active, .section.light2 .wp-block-button a.wp-element-button:hover, .section.light2 .wp-block-button a.wp-element-button:focus, .section.light2 .wp-block-button a.wp-element-button:active, .section.light2 a.wp-element-button:hover, .section.light2 a.wp-element-button:focus, .section.light2 a.wp-element-button:active, .section.dark .wp-block-button__link:hover, .section.dark .wp-block-button__link:focus, .section.dark .wp-block-button__link:active, .section.dark .wp-block-button a.wp-element-button:hover, .section.dark .wp-block-button a.wp-element-button:focus, .section.dark .wp-block-button a.wp-element-button:active, .section.dark a.wp-element-button:hover, .section.dark a.wp-element-button:focus, .section.dark a.wp-element-button:active, .section.dark2 .wp-block-button__link:hover, .section.dark2 .wp-block-button__link:focus, .section.dark2 .wp-block-button__link:active, .section.dark2 .wp-block-button a.wp-element-button:hover, .section.dark2 .wp-block-button a.wp-element-button:focus, .section.dark2 .wp-block-button a.wp-element-button:active, .section.dark2 a.wp-element-button:hover, .section.dark2 a.wp-element-button:focus, .section.dark2 a.wp-element-button:active {
  background-color: var(--cta-hover);
  color: var(--cta-hover-text, var(--button-color-text));
  border-color: var(--cta-hover-border, var(--cta-hover));
}
.section.light .wp-block-button.is-style-fill .wp-block-button__link, .section.light .wp-block-button.is-style-fill a.wp-element-button, .section.light2 .wp-block-button.is-style-fill .wp-block-button__link, .section.light2 .wp-block-button.is-style-fill a.wp-element-button, .section.dark .wp-block-button.is-style-fill .wp-block-button__link, .section.dark .wp-block-button.is-style-fill a.wp-element-button, .section.dark2 .wp-block-button.is-style-fill .wp-block-button__link, .section.dark2 .wp-block-button.is-style-fill a.wp-element-button {
  background-color: var(--button-color);
  color: var(--button-color-text);
  border-color: var(--button-border-color, var(--button-color));
}
.section.light .wp-block-button.is-style-fill .wp-block-button__link:hover, .section.light .wp-block-button.is-style-fill .wp-block-button__link:focus, .section.light .wp-block-button.is-style-fill a.wp-element-button:hover, .section.light .wp-block-button.is-style-fill a.wp-element-button:focus, .section.light2 .wp-block-button.is-style-fill .wp-block-button__link:hover, .section.light2 .wp-block-button.is-style-fill .wp-block-button__link:focus, .section.light2 .wp-block-button.is-style-fill a.wp-element-button:hover, .section.light2 .wp-block-button.is-style-fill a.wp-element-button:focus, .section.dark .wp-block-button.is-style-fill .wp-block-button__link:hover, .section.dark .wp-block-button.is-style-fill .wp-block-button__link:focus, .section.dark .wp-block-button.is-style-fill a.wp-element-button:hover, .section.dark .wp-block-button.is-style-fill a.wp-element-button:focus, .section.dark2 .wp-block-button.is-style-fill .wp-block-button__link:hover, .section.dark2 .wp-block-button.is-style-fill .wp-block-button__link:focus, .section.dark2 .wp-block-button.is-style-fill a.wp-element-button:hover, .section.dark2 .wp-block-button.is-style-fill a.wp-element-button:focus {
  background-color: var(--cta-hover);
  color: var(--cta-hover-text, var(--button-color-text));
}
.section.light .wp-block-button.is-style-outline .wp-block-button__link, .section.light .wp-block-button.is-style-outline a.wp-element-button, .section.light2 .wp-block-button.is-style-outline .wp-block-button__link, .section.light2 .wp-block-button.is-style-outline a.wp-element-button, .section.dark .wp-block-button.is-style-outline .wp-block-button__link, .section.dark .wp-block-button.is-style-outline a.wp-element-button, .section.dark2 .wp-block-button.is-style-outline .wp-block-button__link, .section.dark2 .wp-block-button.is-style-outline a.wp-element-button {
  background-color: transparent;
  color: var(--button-ghost-color-text, var(--button-color));
  border: 2px solid var(--button-border-color, var(--button-color));
}
.section.light .wp-block-button.is-style-outline .wp-block-button__link:hover, .section.light .wp-block-button.is-style-outline .wp-block-button__link:focus, .section.light .wp-block-button.is-style-outline a.wp-element-button:hover, .section.light .wp-block-button.is-style-outline a.wp-element-button:focus, .section.light2 .wp-block-button.is-style-outline .wp-block-button__link:hover, .section.light2 .wp-block-button.is-style-outline .wp-block-button__link:focus, .section.light2 .wp-block-button.is-style-outline a.wp-element-button:hover, .section.light2 .wp-block-button.is-style-outline a.wp-element-button:focus, .section.dark .wp-block-button.is-style-outline .wp-block-button__link:hover, .section.dark .wp-block-button.is-style-outline .wp-block-button__link:focus, .section.dark .wp-block-button.is-style-outline a.wp-element-button:hover, .section.dark .wp-block-button.is-style-outline a.wp-element-button:focus, .section.dark2 .wp-block-button.is-style-outline .wp-block-button__link:hover, .section.dark2 .wp-block-button.is-style-outline .wp-block-button__link:focus, .section.dark2 .wp-block-button.is-style-outline a.wp-element-button:hover, .section.dark2 .wp-block-button.is-style-outline a.wp-element-button:focus {
  background-color: var(--button-color);
  color: var(--button-color-text);
  border-color: var(--button-color);
}
.section.light .wp-block-button.button-secondary, .section.light2 .wp-block-button.button-secondary, .section.light3 .wp-block-button.button-secondary, .section.dark .wp-block-button.button-secondary, .section.dark2 .wp-block-button.button-secondary, .section.dark3 .wp-block-button.button-secondary {
  --button-color:        var(--accent-2);
  --button-color-text:   var(--accent-text-2);
  --button-border-color: var(--accent-2-border, var(--accent-2));
}
.section.light .wp-block-button.button-tertiary, .section.light2 .wp-block-button.button-tertiary, .section.light3 .wp-block-button.button-tertiary, .section.dark .wp-block-button.button-tertiary, .section.dark2 .wp-block-button.button-tertiary, .section.dark3 .wp-block-button.button-tertiary {
  --button-color:        var(--accent-3);
  --button-color-text:   var(--accent-text-3);
  --button-border-color: var(--accent-3-border, var(--accent-3));
}
.section.light .wp-block-button.button-outline .wp-block-button__link, .section.light .wp-block-button.button-outline a.wp-element-button, .section.light .wp-block-button.button-outline-secondary .wp-block-button__link, .section.light .wp-block-button.button-outline-secondary a.wp-element-button, .section.light .wp-block-button.button-outline-tertiary .wp-block-button__link, .section.light .wp-block-button.button-outline-tertiary a.wp-element-button, .section.light2 .wp-block-button.button-outline .wp-block-button__link, .section.light2 .wp-block-button.button-outline a.wp-element-button, .section.light2 .wp-block-button.button-outline-secondary .wp-block-button__link, .section.light2 .wp-block-button.button-outline-secondary a.wp-element-button, .section.light2 .wp-block-button.button-outline-tertiary .wp-block-button__link, .section.light2 .wp-block-button.button-outline-tertiary a.wp-element-button, .section.light3 .wp-block-button.button-outline .wp-block-button__link, .section.light3 .wp-block-button.button-outline a.wp-element-button, .section.light3 .wp-block-button.button-outline-secondary .wp-block-button__link, .section.light3 .wp-block-button.button-outline-secondary a.wp-element-button, .section.light3 .wp-block-button.button-outline-tertiary .wp-block-button__link, .section.light3 .wp-block-button.button-outline-tertiary a.wp-element-button, .section.dark .wp-block-button.button-outline .wp-block-button__link, .section.dark .wp-block-button.button-outline a.wp-element-button, .section.dark .wp-block-button.button-outline-secondary .wp-block-button__link, .section.dark .wp-block-button.button-outline-secondary a.wp-element-button, .section.dark .wp-block-button.button-outline-tertiary .wp-block-button__link, .section.dark .wp-block-button.button-outline-tertiary a.wp-element-button, .section.dark2 .wp-block-button.button-outline .wp-block-button__link, .section.dark2 .wp-block-button.button-outline a.wp-element-button, .section.dark2 .wp-block-button.button-outline-secondary .wp-block-button__link, .section.dark2 .wp-block-button.button-outline-secondary a.wp-element-button, .section.dark2 .wp-block-button.button-outline-tertiary .wp-block-button__link, .section.dark2 .wp-block-button.button-outline-tertiary a.wp-element-button, .section.dark3 .wp-block-button.button-outline .wp-block-button__link, .section.dark3 .wp-block-button.button-outline a.wp-element-button, .section.dark3 .wp-block-button.button-outline-secondary .wp-block-button__link, .section.dark3 .wp-block-button.button-outline-secondary a.wp-element-button, .section.dark3 .wp-block-button.button-outline-tertiary .wp-block-button__link, .section.dark3 .wp-block-button.button-outline-tertiary a.wp-element-button {
  background-color: transparent;
  background-image: none;
  color: var(--button-border-color, var(--button-color));
  border: 2px solid var(--button-border-color, var(--button-color));
}
.section.light .wp-block-button.button-outline .wp-block-button__link:hover, .section.light .wp-block-button.button-outline .wp-block-button__link:focus, .section.light .wp-block-button.button-outline a.wp-element-button:hover, .section.light .wp-block-button.button-outline a.wp-element-button:focus, .section.light .wp-block-button.button-outline-secondary .wp-block-button__link:hover, .section.light .wp-block-button.button-outline-secondary .wp-block-button__link:focus, .section.light .wp-block-button.button-outline-secondary a.wp-element-button:hover, .section.light .wp-block-button.button-outline-secondary a.wp-element-button:focus, .section.light .wp-block-button.button-outline-tertiary .wp-block-button__link:hover, .section.light .wp-block-button.button-outline-tertiary .wp-block-button__link:focus, .section.light .wp-block-button.button-outline-tertiary a.wp-element-button:hover, .section.light .wp-block-button.button-outline-tertiary a.wp-element-button:focus, .section.light2 .wp-block-button.button-outline .wp-block-button__link:hover, .section.light2 .wp-block-button.button-outline .wp-block-button__link:focus, .section.light2 .wp-block-button.button-outline a.wp-element-button:hover, .section.light2 .wp-block-button.button-outline a.wp-element-button:focus, .section.light2 .wp-block-button.button-outline-secondary .wp-block-button__link:hover, .section.light2 .wp-block-button.button-outline-secondary .wp-block-button__link:focus, .section.light2 .wp-block-button.button-outline-secondary a.wp-element-button:hover, .section.light2 .wp-block-button.button-outline-secondary a.wp-element-button:focus, .section.light2 .wp-block-button.button-outline-tertiary .wp-block-button__link:hover, .section.light2 .wp-block-button.button-outline-tertiary .wp-block-button__link:focus, .section.light2 .wp-block-button.button-outline-tertiary a.wp-element-button:hover, .section.light2 .wp-block-button.button-outline-tertiary a.wp-element-button:focus, .section.light3 .wp-block-button.button-outline .wp-block-button__link:hover, .section.light3 .wp-block-button.button-outline .wp-block-button__link:focus, .section.light3 .wp-block-button.button-outline a.wp-element-button:hover, .section.light3 .wp-block-button.button-outline a.wp-element-button:focus, .section.light3 .wp-block-button.button-outline-secondary .wp-block-button__link:hover, .section.light3 .wp-block-button.button-outline-secondary .wp-block-button__link:focus, .section.light3 .wp-block-button.button-outline-secondary a.wp-element-button:hover, .section.light3 .wp-block-button.button-outline-secondary a.wp-element-button:focus, .section.light3 .wp-block-button.button-outline-tertiary .wp-block-button__link:hover, .section.light3 .wp-block-button.button-outline-tertiary .wp-block-button__link:focus, .section.light3 .wp-block-button.button-outline-tertiary a.wp-element-button:hover, .section.light3 .wp-block-button.button-outline-tertiary a.wp-element-button:focus, .section.dark .wp-block-button.button-outline .wp-block-button__link:hover, .section.dark .wp-block-button.button-outline .wp-block-button__link:focus, .section.dark .wp-block-button.button-outline a.wp-element-button:hover, .section.dark .wp-block-button.button-outline a.wp-element-button:focus, .section.dark .wp-block-button.button-outline-secondary .wp-block-button__link:hover, .section.dark .wp-block-button.button-outline-secondary .wp-block-button__link:focus, .section.dark .wp-block-button.button-outline-secondary a.wp-element-button:hover, .section.dark .wp-block-button.button-outline-secondary a.wp-element-button:focus, .section.dark .wp-block-button.button-outline-tertiary .wp-block-button__link:hover, .section.dark .wp-block-button.button-outline-tertiary .wp-block-button__link:focus, .section.dark .wp-block-button.button-outline-tertiary a.wp-element-button:hover, .section.dark .wp-block-button.button-outline-tertiary a.wp-element-button:focus, .section.dark2 .wp-block-button.button-outline .wp-block-button__link:hover, .section.dark2 .wp-block-button.button-outline .wp-block-button__link:focus, .section.dark2 .wp-block-button.button-outline a.wp-element-button:hover, .section.dark2 .wp-block-button.button-outline a.wp-element-button:focus, .section.dark2 .wp-block-button.button-outline-secondary .wp-block-button__link:hover, .section.dark2 .wp-block-button.button-outline-secondary .wp-block-button__link:focus, .section.dark2 .wp-block-button.button-outline-secondary a.wp-element-button:hover, .section.dark2 .wp-block-button.button-outline-secondary a.wp-element-button:focus, .section.dark2 .wp-block-button.button-outline-tertiary .wp-block-button__link:hover, .section.dark2 .wp-block-button.button-outline-tertiary .wp-block-button__link:focus, .section.dark2 .wp-block-button.button-outline-tertiary a.wp-element-button:hover, .section.dark2 .wp-block-button.button-outline-tertiary a.wp-element-button:focus, .section.dark3 .wp-block-button.button-outline .wp-block-button__link:hover, .section.dark3 .wp-block-button.button-outline .wp-block-button__link:focus, .section.dark3 .wp-block-button.button-outline a.wp-element-button:hover, .section.dark3 .wp-block-button.button-outline a.wp-element-button:focus, .section.dark3 .wp-block-button.button-outline-secondary .wp-block-button__link:hover, .section.dark3 .wp-block-button.button-outline-secondary .wp-block-button__link:focus, .section.dark3 .wp-block-button.button-outline-secondary a.wp-element-button:hover, .section.dark3 .wp-block-button.button-outline-secondary a.wp-element-button:focus, .section.dark3 .wp-block-button.button-outline-tertiary .wp-block-button__link:hover, .section.dark3 .wp-block-button.button-outline-tertiary .wp-block-button__link:focus, .section.dark3 .wp-block-button.button-outline-tertiary a.wp-element-button:hover, .section.dark3 .wp-block-button.button-outline-tertiary a.wp-element-button:focus {
  background-color: var(--button-border-color, var(--button-color));
  background-image: none;
  color: var(--button-color-text);
}
.section.light .wp-block-button.button-outline-secondary, .section.light2 .wp-block-button.button-outline-secondary, .section.light3 .wp-block-button.button-outline-secondary, .section.dark .wp-block-button.button-outline-secondary, .section.dark2 .wp-block-button.button-outline-secondary, .section.dark3 .wp-block-button.button-outline-secondary {
  --button-color:        var(--accent-2);
  --button-color-text:   var(--accent-text-2);
  --button-border-color: var(--accent-2);
}
.section.light .wp-block-button.button-outline-tertiary, .section.light2 .wp-block-button.button-outline-tertiary, .section.light3 .wp-block-button.button-outline-tertiary, .section.dark .wp-block-button.button-outline-tertiary, .section.dark2 .wp-block-button.button-outline-tertiary, .section.dark3 .wp-block-button.button-outline-tertiary {
  --button-color:        var(--accent-3);
  --button-color-text:   var(--accent-text-3);
  --button-border-color: var(--accent-3);
}
.section.light .wp-block-button.bps-ghost .wp-block-button__link, .section.light .wp-block-button.bps-ghost a.wp-element-button, .section.light .wp-block-button.bps-ghost-2 .wp-block-button__link, .section.light .wp-block-button.bps-ghost-2 a.wp-element-button, .section.light .wp-block-button.bps-ghost-secondary .wp-block-button__link, .section.light .wp-block-button.bps-ghost-secondary a.wp-element-button, .section.light .wp-block-button.bps-ghost-3 .wp-block-button__link, .section.light .wp-block-button.bps-ghost-3 a.wp-element-button, .section.light .wp-block-button.bps-ghost-text .wp-block-button__link, .section.light .wp-block-button.bps-ghost-text a.wp-element-button, .section.light2 .wp-block-button.bps-ghost .wp-block-button__link, .section.light2 .wp-block-button.bps-ghost a.wp-element-button, .section.light2 .wp-block-button.bps-ghost-2 .wp-block-button__link, .section.light2 .wp-block-button.bps-ghost-2 a.wp-element-button, .section.light2 .wp-block-button.bps-ghost-secondary .wp-block-button__link, .section.light2 .wp-block-button.bps-ghost-secondary a.wp-element-button, .section.light2 .wp-block-button.bps-ghost-3 .wp-block-button__link, .section.light2 .wp-block-button.bps-ghost-3 a.wp-element-button, .section.light2 .wp-block-button.bps-ghost-text .wp-block-button__link, .section.light2 .wp-block-button.bps-ghost-text a.wp-element-button, .section.light3 .wp-block-button.bps-ghost .wp-block-button__link, .section.light3 .wp-block-button.bps-ghost a.wp-element-button, .section.light3 .wp-block-button.bps-ghost-2 .wp-block-button__link, .section.light3 .wp-block-button.bps-ghost-2 a.wp-element-button, .section.light3 .wp-block-button.bps-ghost-secondary .wp-block-button__link, .section.light3 .wp-block-button.bps-ghost-secondary a.wp-element-button, .section.light3 .wp-block-button.bps-ghost-3 .wp-block-button__link, .section.light3 .wp-block-button.bps-ghost-3 a.wp-element-button, .section.light3 .wp-block-button.bps-ghost-text .wp-block-button__link, .section.light3 .wp-block-button.bps-ghost-text a.wp-element-button, .section.dark .wp-block-button.bps-ghost .wp-block-button__link, .section.dark .wp-block-button.bps-ghost a.wp-element-button, .section.dark .wp-block-button.bps-ghost-2 .wp-block-button__link, .section.dark .wp-block-button.bps-ghost-2 a.wp-element-button, .section.dark .wp-block-button.bps-ghost-secondary .wp-block-button__link, .section.dark .wp-block-button.bps-ghost-secondary a.wp-element-button, .section.dark .wp-block-button.bps-ghost-3 .wp-block-button__link, .section.dark .wp-block-button.bps-ghost-3 a.wp-element-button, .section.dark .wp-block-button.bps-ghost-text .wp-block-button__link, .section.dark .wp-block-button.bps-ghost-text a.wp-element-button, .section.dark2 .wp-block-button.bps-ghost .wp-block-button__link, .section.dark2 .wp-block-button.bps-ghost a.wp-element-button, .section.dark2 .wp-block-button.bps-ghost-2 .wp-block-button__link, .section.dark2 .wp-block-button.bps-ghost-2 a.wp-element-button, .section.dark2 .wp-block-button.bps-ghost-secondary .wp-block-button__link, .section.dark2 .wp-block-button.bps-ghost-secondary a.wp-element-button, .section.dark2 .wp-block-button.bps-ghost-3 .wp-block-button__link, .section.dark2 .wp-block-button.bps-ghost-3 a.wp-element-button, .section.dark2 .wp-block-button.bps-ghost-text .wp-block-button__link, .section.dark2 .wp-block-button.bps-ghost-text a.wp-element-button, .section.dark3 .wp-block-button.bps-ghost .wp-block-button__link, .section.dark3 .wp-block-button.bps-ghost a.wp-element-button, .section.dark3 .wp-block-button.bps-ghost-2 .wp-block-button__link, .section.dark3 .wp-block-button.bps-ghost-2 a.wp-element-button, .section.dark3 .wp-block-button.bps-ghost-secondary .wp-block-button__link, .section.dark3 .wp-block-button.bps-ghost-secondary a.wp-element-button, .section.dark3 .wp-block-button.bps-ghost-3 .wp-block-button__link, .section.dark3 .wp-block-button.bps-ghost-3 a.wp-element-button, .section.dark3 .wp-block-button.bps-ghost-text .wp-block-button__link, .section.dark3 .wp-block-button.bps-ghost-text a.wp-element-button {
  background-color: transparent;
  background-image: none;
  color: var(--ghost-color);
  border-width: 2px;
  border-style: solid;
  border-color: var(--ghost-color);
}
.section.light .wp-block-button.bps-ghost .wp-block-button__link:hover, .section.light .wp-block-button.bps-ghost .wp-block-button__link:focus, .section.light .wp-block-button.bps-ghost a.wp-element-button:hover, .section.light .wp-block-button.bps-ghost a.wp-element-button:focus, .section.light .wp-block-button.bps-ghost-2 .wp-block-button__link:hover, .section.light .wp-block-button.bps-ghost-2 .wp-block-button__link:focus, .section.light .wp-block-button.bps-ghost-2 a.wp-element-button:hover, .section.light .wp-block-button.bps-ghost-2 a.wp-element-button:focus, .section.light .wp-block-button.bps-ghost-secondary .wp-block-button__link:hover, .section.light .wp-block-button.bps-ghost-secondary .wp-block-button__link:focus, .section.light .wp-block-button.bps-ghost-secondary a.wp-element-button:hover, .section.light .wp-block-button.bps-ghost-secondary a.wp-element-button:focus, .section.light .wp-block-button.bps-ghost-3 .wp-block-button__link:hover, .section.light .wp-block-button.bps-ghost-3 .wp-block-button__link:focus, .section.light .wp-block-button.bps-ghost-3 a.wp-element-button:hover, .section.light .wp-block-button.bps-ghost-3 a.wp-element-button:focus, .section.light .wp-block-button.bps-ghost-text .wp-block-button__link:hover, .section.light .wp-block-button.bps-ghost-text .wp-block-button__link:focus, .section.light .wp-block-button.bps-ghost-text a.wp-element-button:hover, .section.light .wp-block-button.bps-ghost-text a.wp-element-button:focus, .section.light2 .wp-block-button.bps-ghost .wp-block-button__link:hover, .section.light2 .wp-block-button.bps-ghost .wp-block-button__link:focus, .section.light2 .wp-block-button.bps-ghost a.wp-element-button:hover, .section.light2 .wp-block-button.bps-ghost a.wp-element-button:focus, .section.light2 .wp-block-button.bps-ghost-2 .wp-block-button__link:hover, .section.light2 .wp-block-button.bps-ghost-2 .wp-block-button__link:focus, .section.light2 .wp-block-button.bps-ghost-2 a.wp-element-button:hover, .section.light2 .wp-block-button.bps-ghost-2 a.wp-element-button:focus, .section.light2 .wp-block-button.bps-ghost-secondary .wp-block-button__link:hover, .section.light2 .wp-block-button.bps-ghost-secondary .wp-block-button__link:focus, .section.light2 .wp-block-button.bps-ghost-secondary a.wp-element-button:hover, .section.light2 .wp-block-button.bps-ghost-secondary a.wp-element-button:focus, .section.light2 .wp-block-button.bps-ghost-3 .wp-block-button__link:hover, .section.light2 .wp-block-button.bps-ghost-3 .wp-block-button__link:focus, .section.light2 .wp-block-button.bps-ghost-3 a.wp-element-button:hover, .section.light2 .wp-block-button.bps-ghost-3 a.wp-element-button:focus, .section.light2 .wp-block-button.bps-ghost-text .wp-block-button__link:hover, .section.light2 .wp-block-button.bps-ghost-text .wp-block-button__link:focus, .section.light2 .wp-block-button.bps-ghost-text a.wp-element-button:hover, .section.light2 .wp-block-button.bps-ghost-text a.wp-element-button:focus, .section.light3 .wp-block-button.bps-ghost .wp-block-button__link:hover, .section.light3 .wp-block-button.bps-ghost .wp-block-button__link:focus, .section.light3 .wp-block-button.bps-ghost a.wp-element-button:hover, .section.light3 .wp-block-button.bps-ghost a.wp-element-button:focus, .section.light3 .wp-block-button.bps-ghost-2 .wp-block-button__link:hover, .section.light3 .wp-block-button.bps-ghost-2 .wp-block-button__link:focus, .section.light3 .wp-block-button.bps-ghost-2 a.wp-element-button:hover, .section.light3 .wp-block-button.bps-ghost-2 a.wp-element-button:focus, .section.light3 .wp-block-button.bps-ghost-secondary .wp-block-button__link:hover, .section.light3 .wp-block-button.bps-ghost-secondary .wp-block-button__link:focus, .section.light3 .wp-block-button.bps-ghost-secondary a.wp-element-button:hover, .section.light3 .wp-block-button.bps-ghost-secondary a.wp-element-button:focus, .section.light3 .wp-block-button.bps-ghost-3 .wp-block-button__link:hover, .section.light3 .wp-block-button.bps-ghost-3 .wp-block-button__link:focus, .section.light3 .wp-block-button.bps-ghost-3 a.wp-element-button:hover, .section.light3 .wp-block-button.bps-ghost-3 a.wp-element-button:focus, .section.light3 .wp-block-button.bps-ghost-text .wp-block-button__link:hover, .section.light3 .wp-block-button.bps-ghost-text .wp-block-button__link:focus, .section.light3 .wp-block-button.bps-ghost-text a.wp-element-button:hover, .section.light3 .wp-block-button.bps-ghost-text a.wp-element-button:focus, .section.dark .wp-block-button.bps-ghost .wp-block-button__link:hover, .section.dark .wp-block-button.bps-ghost .wp-block-button__link:focus, .section.dark .wp-block-button.bps-ghost a.wp-element-button:hover, .section.dark .wp-block-button.bps-ghost a.wp-element-button:focus, .section.dark .wp-block-button.bps-ghost-2 .wp-block-button__link:hover, .section.dark .wp-block-button.bps-ghost-2 .wp-block-button__link:focus, .section.dark .wp-block-button.bps-ghost-2 a.wp-element-button:hover, .section.dark .wp-block-button.bps-ghost-2 a.wp-element-button:focus, .section.dark .wp-block-button.bps-ghost-secondary .wp-block-button__link:hover, .section.dark .wp-block-button.bps-ghost-secondary .wp-block-button__link:focus, .section.dark .wp-block-button.bps-ghost-secondary a.wp-element-button:hover, .section.dark .wp-block-button.bps-ghost-secondary a.wp-element-button:focus, .section.dark .wp-block-button.bps-ghost-3 .wp-block-button__link:hover, .section.dark .wp-block-button.bps-ghost-3 .wp-block-button__link:focus, .section.dark .wp-block-button.bps-ghost-3 a.wp-element-button:hover, .section.dark .wp-block-button.bps-ghost-3 a.wp-element-button:focus, .section.dark .wp-block-button.bps-ghost-text .wp-block-button__link:hover, .section.dark .wp-block-button.bps-ghost-text .wp-block-button__link:focus, .section.dark .wp-block-button.bps-ghost-text a.wp-element-button:hover, .section.dark .wp-block-button.bps-ghost-text a.wp-element-button:focus, .section.dark2 .wp-block-button.bps-ghost .wp-block-button__link:hover, .section.dark2 .wp-block-button.bps-ghost .wp-block-button__link:focus, .section.dark2 .wp-block-button.bps-ghost a.wp-element-button:hover, .section.dark2 .wp-block-button.bps-ghost a.wp-element-button:focus, .section.dark2 .wp-block-button.bps-ghost-2 .wp-block-button__link:hover, .section.dark2 .wp-block-button.bps-ghost-2 .wp-block-button__link:focus, .section.dark2 .wp-block-button.bps-ghost-2 a.wp-element-button:hover, .section.dark2 .wp-block-button.bps-ghost-2 a.wp-element-button:focus, .section.dark2 .wp-block-button.bps-ghost-secondary .wp-block-button__link:hover, .section.dark2 .wp-block-button.bps-ghost-secondary .wp-block-button__link:focus, .section.dark2 .wp-block-button.bps-ghost-secondary a.wp-element-button:hover, .section.dark2 .wp-block-button.bps-ghost-secondary a.wp-element-button:focus, .section.dark2 .wp-block-button.bps-ghost-3 .wp-block-button__link:hover, .section.dark2 .wp-block-button.bps-ghost-3 .wp-block-button__link:focus, .section.dark2 .wp-block-button.bps-ghost-3 a.wp-element-button:hover, .section.dark2 .wp-block-button.bps-ghost-3 a.wp-element-button:focus, .section.dark2 .wp-block-button.bps-ghost-text .wp-block-button__link:hover, .section.dark2 .wp-block-button.bps-ghost-text .wp-block-button__link:focus, .section.dark2 .wp-block-button.bps-ghost-text a.wp-element-button:hover, .section.dark2 .wp-block-button.bps-ghost-text a.wp-element-button:focus, .section.dark3 .wp-block-button.bps-ghost .wp-block-button__link:hover, .section.dark3 .wp-block-button.bps-ghost .wp-block-button__link:focus, .section.dark3 .wp-block-button.bps-ghost a.wp-element-button:hover, .section.dark3 .wp-block-button.bps-ghost a.wp-element-button:focus, .section.dark3 .wp-block-button.bps-ghost-2 .wp-block-button__link:hover, .section.dark3 .wp-block-button.bps-ghost-2 .wp-block-button__link:focus, .section.dark3 .wp-block-button.bps-ghost-2 a.wp-element-button:hover, .section.dark3 .wp-block-button.bps-ghost-2 a.wp-element-button:focus, .section.dark3 .wp-block-button.bps-ghost-secondary .wp-block-button__link:hover, .section.dark3 .wp-block-button.bps-ghost-secondary .wp-block-button__link:focus, .section.dark3 .wp-block-button.bps-ghost-secondary a.wp-element-button:hover, .section.dark3 .wp-block-button.bps-ghost-secondary a.wp-element-button:focus, .section.dark3 .wp-block-button.bps-ghost-3 .wp-block-button__link:hover, .section.dark3 .wp-block-button.bps-ghost-3 .wp-block-button__link:focus, .section.dark3 .wp-block-button.bps-ghost-3 a.wp-element-button:hover, .section.dark3 .wp-block-button.bps-ghost-3 a.wp-element-button:focus, .section.dark3 .wp-block-button.bps-ghost-text .wp-block-button__link:hover, .section.dark3 .wp-block-button.bps-ghost-text .wp-block-button__link:focus, .section.dark3 .wp-block-button.bps-ghost-text a.wp-element-button:hover, .section.dark3 .wp-block-button.bps-ghost-text a.wp-element-button:focus {
  background-color: transparent;
  background-image: none;
  color: var(--ghost-color);
  border-color: var(--ghost-color);
}
:root {
  --moa-x:    1rem;
  --moa-y-sd: 25px;
  --moa-y-lg: 60px;
  --moa-y-xl: 120px;
  --moa-y-xxl:200px;
  --moa-x-tablet:     15px;
  --moa-y-sd-tablet:  20px;
  --moa-y-lg-tablet:  45px;
  --moa-y-xl-tablet:  90px;
  --moa-y-xxl-tablet: 150px;
  --moa-x-mobile:     10px;
  --moa-y-sd-mobile:  15px;
  --moa-y-lg-mobile:  30px;
  --moa-y-xl-mobile:  60px;
  --moa-y-xxl-mobile: 100px;
}
.moa-sm {
  padding: 10px var(--moa-x);
}
.moa-sd {
  padding: var(--moa-y-sd) var(--moa-x);
}
.moa-lg {
  padding: var(--moa-y-lg) var(--moa-x);
}
.moa-xl {
  padding: var(--moa-y-xl) var(--moa-x);
}
.moa-xxl {
  padding: var(--moa-y-xxl) var(--moa-x);
}
.e-con.moa-width-regular, .moa-width-regular {
  --width: 1000px;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.e-con.moa-width-narrow, .moa-width-narrow {
  --width: 800px;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.section.light, .section.dark, .section.light2, .section.dark2, .section.light3, .section.dark3 {
  background-color: var(--bg);
  color: var(--text-color);
}
.section.light h1:where(:not(.override)):where(:not(.override *)), .section.dark h1:where(:not(.override)):where(:not(.override *)), .section.light2 h1:where(:not(.override)):where(:not(.override *)), .section.dark2 h1:where(:not(.override)):where(:not(.override *)), .section.light3 h1:where(:not(.override)):where(:not(.override *)), .section.dark3 h1:where(:not(.override)):where(:not(.override *)) {
  color: var(--text-color);
}
.section.light h2:where(:not(.override)):where(:not(.override *)), .section.dark h2:where(:not(.override)):where(:not(.override *)), .section.light2 h2:where(:not(.override)):where(:not(.override *)), .section.dark2 h2:where(:not(.override)):where(:not(.override *)), .section.light3 h2:where(:not(.override)):where(:not(.override *)), .section.dark3 h2:where(:not(.override)):where(:not(.override *)) {
  color: var(--text-color);
}
.section.light h3:where(:not(.override)):where(:not(.override *)), .section.dark h3:where(:not(.override)):where(:not(.override *)), .section.light2 h3:where(:not(.override)):where(:not(.override *)), .section.dark2 h3:where(:not(.override)):where(:not(.override *)), .section.light3 h3:where(:not(.override)):where(:not(.override *)), .section.dark3 h3:where(:not(.override)):where(:not(.override *)) {
  color: var(--text-color);
}
.section.light h4:where(:not(.override)):where(:not(.override *)), .section.dark h4:where(:not(.override)):where(:not(.override *)), .section.light2 h4:where(:not(.override)):where(:not(.override *)), .section.dark2 h4:where(:not(.override)):where(:not(.override *)), .section.light3 h4:where(:not(.override)):where(:not(.override *)), .section.dark3 h4:where(:not(.override)):where(:not(.override *)) {
  color: var(--text-color);
}
.section.light h5:where(:not(.override)):where(:not(.override *)), .section.dark h5:where(:not(.override)):where(:not(.override *)), .section.light2 h5:where(:not(.override)):where(:not(.override *)), .section.dark2 h5:where(:not(.override)):where(:not(.override *)), .section.light3 h5:where(:not(.override)):where(:not(.override *)), .section.dark3 h5:where(:not(.override)):where(:not(.override *)) {
  color: var(--text-color);
}
.section.light h6:where(:not(.override)):where(:not(.override *)), .section.dark h6:where(:not(.override)):where(:not(.override *)), .section.light2 h6:where(:not(.override)):where(:not(.override *)), .section.dark2 h6:where(:not(.override)):where(:not(.override *)), .section.light3 h6:where(:not(.override)):where(:not(.override *)), .section.dark3 h6:where(:not(.override)):where(:not(.override *)) {
  color: var(--text-color);
}
.section.light p:where(:not(.override)):where(:not(.override *)), .section.dark p:where(:not(.override)):where(:not(.override *)), .section.light2 p:where(:not(.override)):where(:not(.override *)), .section.dark2 p:where(:not(.override)):where(:not(.override *)), .section.light3 p:where(:not(.override)):where(:not(.override *)), .section.dark3 p:where(:not(.override)):where(:not(.override *)) {
  color: var(--text-color);
}
.section.light a:where(:not(.override)):where(:not(.override *)), .section.dark a:where(:not(.override)):where(:not(.override *)), .section.light2 a:where(:not(.override)):where(:not(.override *)), .section.dark2 a:where(:not(.override)):where(:not(.override *)), .section.light3 a:where(:not(.override)):where(:not(.override *)), .section.dark3 a:where(:not(.override)):where(:not(.override *)) {
  color: var(--link-color, var(--text-color));
}
.bps-ghost {
  --ghost-color: var(--accent);
}
.bps-ghost-2, .bps-ghost-secondary {
  --ghost-color: var(--accent-2);
}
.bps-ghost-3 {
  --ghost-color: var(--accent-3);
}
.bps-ghost-text {
  --ghost-color: var(--text-color);
}
@media screen and (max-width: 967px) {
  :root {
    --moa-x: var(--moa-x-tablet);
    --moa-y-sd: var(--moa-y-sd-tablet);
    --moa-y-lg: var(--moa-y-lg-tablet);
    --moa-y-xl: var(--moa-y-xl-tablet);
    --moa-y-xxl: var(--moa-y-xxl-tablet);
  }
  .moa-sd {
    padding: var(--moa-y-sd-tablet) var(--moa-x-tablet);
  }
  .moa-lg {
    padding: var(--moa-y-lg-tablet) var(--moa-x-tablet);
  }
  .moa-xl {
    padding: var(--moa-y-xl-tablet) var(--moa-x-tablet);
  }
  .moa-xxl {
    padding: var(--moa-y-xxl-tablet) var(--moa-x-tablet);
  }
}
@media screen and (max-width: 512px) {
  :root {
    --moa-x: var(--moa-x-mobile);
    --moa-y-sd: var(--moa-y-sd-mobile);
    --moa-y-lg: var(--moa-y-lg-mobile);
    --moa-y-xl: var(--moa-y-xl-mobile);
    --moa-y-xxl: var(--moa-y-xxl-mobile);
  }
  .moa-sd {
    padding: var(--moa-y-sd-mobile) var(--moa-x-mobile);
  }
  .moa-lg {
    padding: var(--moa-y-lg-mobile) var(--moa-x-mobile);
  }
  .moa-xl {
    padding: var(--moa-y-xl-mobile) var(--moa-x-mobile);
  }
  .moa-xxl {
    padding: var(--moa-y-xxl-mobile) var(--moa-x-mobile);
  }
}

/* ==========================================================================
   MIGRATION SLICE — added 2026-08-04 for the locals fleet port.
   ==========================================================================

   Why this exists
   ---------------
   A scan of all 31 blogs on `bps-locals` found the whole fleet leans on just
   NINE bps- classes. Seven of them were unpainted in Lite — 6,076 of 6,787
   instances, about 90% of the design layer. Ported as-is, those thirty sites
   would have rendered flat and static and nobody would have seen an error.

     bps-shadow-sm      1975     bps-anim-delay-300   598
     bps-anim-slide-up  1975     bps-anim-delay-400   161
     bps-anim-delay-100  608     bps-glass            151
     bps-anim-delay-200  608

   Deliberately PAINTED but NOT OFFERED
   ------------------------------------
   These classes get no control in the Elementor or Gutenberg panels — the
   animation and decorator buckets stay in ::INERT, so authoring motion remains
   a Base-tier feature. Lite only HONOURS the classes when content arrives
   already carrying them. That is what a migration target needs, and it keeps
   the tier boundary where it was.

   So: do not "clean up" these rules as unused because no control emits them.
   The build gate (build/verify-vocabulary.php) asserts offered ⊆ painted; it
   does not object to painted ⊅ offered, which is exactly this case.

   Re-established for Lite, not copied
   -----------------------------------
   Base's `.bps-glass` consumes `--light-bg-rgb`, which Lite has never defined —
   a straight copy would have rendered every pane pure white, the same failure
   that hit the estate on 2026-08-03. Lite's version reads its own `--bg` token
   through color-mix, with a solid fallback for older engines.
   ========================================================================== */

.bps-shadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .06); }

@keyframes bps-slide-in-bottom {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bps-anim-slide-up    { animation: bps-slide-in-bottom .35s ease-out both; }
.bps-anim-delay-100   { animation-delay: .1s; }
.bps-anim-delay-200   { animation-delay: .2s; }
.bps-anim-delay-300   { animation-delay: .3s; }
.bps-anim-delay-400   { animation-delay: .4s; }

/* Base ships no reduced-motion guard. Lite is heading to WordPress.org, where
   accessibility is reviewed, and 1,975 slide-ups on a fleet is a lot of motion
   to force on someone who asked their OS for less of it. */
@media (prefers-reduced-motion: reduce) {
  .bps-anim-slide-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Fallback first for engines without color-mix; the modern rule overrides it. */
.bps-glass {
  background: var(--bg, #fff);
  border: 1px solid rgba(255, 255, 255, .3);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .bps-glass {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: color-mix(in srgb, var(--bg, #fff) 85%, transparent);
  }
}
