:root {
  --av-bg: #f4f3f1;
  --av-surface: #ffffff;
  --av-text: #242424;
  --av-muted: #4f4f4f;
  --av-gold: #cdaa62;
  --av-gold-dark: #b99345;
  --av-gold-text: #7a5a18;
  --av-border: rgba(0, 0, 0, 0.08);
  --av-shadow: 0 28px 70px rgba(0, 0, 0, 0.10);
  --av-radius-lg: 28px;
  --av-radius-xl: 40px;
  --av-page-pad: clamp(2rem, 6vw, 7rem);
  --av-wide: 1440px;
  --av-content: 1320px;
}

.av-store {
  width: 100%;
  max-width: none;
  background: var(--av-bg);
  color: var(--av-text);
  font-family: var(--font-body--family, inherit);
  overflow: hidden;
}

.av-store *,
.av-store *::before,
.av-store *::after {
  box-sizing: border-box;
}

.av-store a {
  color: inherit;
}

.av-store__inner,
.av-section,
.av-store__container {
  width: min(100% - var(--av-page-pad), var(--av-wide));
  max-width: var(--av-wide);
  margin-inline: auto;
}

.av-copy,
.av-section__intro,
.av-hero__copy {
  max-width: 680px;
}

.av-store__section {
  width: 100%;
  padding-block: clamp(68px, 7.6vw, 132px);
}

.av-store__section--products {
  padding-top: clamp(56px, 6vw, 104px);
}

.av-store__section--final {
  padding-bottom: clamp(84px, 9vw, 154px);
}

.av-store__eyebrow {
  margin: 0 0 18px;
  color: var(--av-gold-text);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.av-store h1,
.av-store h2,
.av-store h3,
.av-store p {
  margin: 0;
}

.av-store__hero {
  width: 100%;
  min-height: clamp(640px, 76svh, 860px);
  display: flex;
  align-items: center;
  padding-block: clamp(92px, 10vw, 152px) clamp(58px, 6vw, 92px);
}

.av-store__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: end;
}

.av-store__hero-title {
  font-family: var(--font-heading--family, var(--font-body--family, inherit));
  font-size: clamp(5rem, 12vw, 12.6rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.av-store__hero-copy {
  max-width: 760px;
  margin-top: clamp(24px, 3.4vw, 40px);
  color: var(--av-text);
  font-size: clamp(1.32rem, 2vw, 2.18rem);
  line-height: 1.18;
}

.av-store__hero-panel {
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-xl);
  background: rgb(255 255 255 / 0.74);
  box-shadow: 0 14px 42px rgb(0 0 0 / 0.045);
}

.av-store__gold-statement {
  padding-left: 18px;
  border-left: 3px solid var(--av-gold);
  color: var(--av-muted);
  font-size: clamp(1.05rem, 1.22vw, 1.2rem);
  line-height: 1.6;
}

.av-store__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.av-store .av-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--av-button-border-radius, 999px);
  font-size: 1rem;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.av-store a:focus-visible,
.av-store button:focus-visible,
.av-store select:focus-visible,
.av-store summary:focus-visible,
.av-store [tabindex]:focus-visible {
  outline: 3px solid #111111;
  outline-offset: 4px;
  border-radius: 14px;
}

.av-store .av-button:focus-visible,
.av-filter-pill:focus-visible,
.av-product-card a:focus-visible,
.av-store__sort select:focus-visible,
.av-store details summary:focus-visible,
.av-path-card a:focus-visible,
.av-store__empty-link:focus-visible,
.av-store__empty-pill:focus-visible {
  outline: 3px solid #111111;
  outline-offset: 4px;
}

.av-store .av-button--gold {
  border-color: var(--av-button-border-color, transparent);
  background: var(--av-button-background, var(--av-gold));
  color: var(--av-button-text-color, #181818);
  box-shadow: 0 10px 22px rgb(205 170 98 / var(--av-button-shadow-strength, 0.22));
}

.av-store .av-button--gold:hover,
.av-store .av-button--gold:focus-visible {
  border-color: var(--av-button-hover-border-color, transparent);
  background: var(--av-button-hover-background, var(--av-gold-dark));
  color: var(--av-button-hover-text-color, #181818);
  transform: translateY(-1px);
}

.av-store .av-button:not([aria-disabled="true"]):active {
  transform: translateY(0);
}

.av-store .av-button[aria-disabled="true"],
.av-store .av-button:disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
  box-shadow: none;
}

html[data-av-theme="dark"] .av-store .av-button:focus-visible {
  outline-color: #f4f3f1;
  box-shadow: 0 0 0 6px rgb(226 197 117 / 0.34);
}

.av-button--ghost {
  border-color: rgb(0 0 0 / 0.14);
  background: rgb(255 255 255 / 0.52);
  color: var(--av-text);
}

.av-button--ghost:hover,
.av-button--ghost:focus-visible {
  border-color: rgb(0 0 0 / 0.28);
  transform: translateY(-1px);
}

.av-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.48fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(32px, 4.4vw, 64px);
}

.av-section-heading h2 {
  max-width: 960px;
  font-family: var(--font-heading--family, var(--font-body--family, inherit));
  font-size: clamp(2.55rem, 5.5vw, 6.25rem);
  line-height: 0.96;
  letter-spacing: -0.028em;
}

.av-section-heading p {
  max-width: 620px;
  color: var(--av-muted);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.62;
}

.av-problem-grid,
.av-path-grid,
.av-benefit-grid,
.av-product-grid {
  width: 100%;
}

.av-problem-grid,
.av-path-grid,
.av-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.7vw, 26px);
}

.av-path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.av-problem-card,
.av-path-card,
.av-benefit-card,
.av-faq-item {
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-lg);
  background: rgb(255 255 255 / 0.76);
}

.av-problem-card,
.av-path-card,
.av-benefit-card {
  min-height: 230px;
  padding: clamp(26px, 2.6vw, 38px);
}

.av-card-index {
  color: var(--av-gold-text);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.av-problem-card h3,
.av-path-card h3,
.av-benefit-card h3 {
  margin-top: 28px;
  font-family: var(--font-heading--family, var(--font-body--family, inherit));
  font-size: clamp(1.32rem, 1.75vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.av-path-card h3 {
  font-size: clamp(1.16rem, 1.45vw, 1.56rem);
}

.av-problem-card p,
.av-path-card p,
.av-benefit-card p {
  margin-top: 15px;
  color: var(--av-muted);
  font-size: 1rem;
  line-height: 1.62;
}

.av-path-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--av-text);
  font-weight: 800;
  text-decoration-color: rgb(122 90 24 / 0.7);
  text-underline-offset: 5px;
}

.av-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.62fr);
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(32px, 4.8vw, 72px);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-xl);
  background: linear-gradient(135deg, rgb(255 255 255 / 0.92), rgb(250 248 244 / 0.96));
  color: var(--av-text);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.075);
}

.av-spotlight__media {
  min-height: clamp(390px, 32vw, 520px);
  overflow: hidden;
  border: 1px solid rgb(122 90 24 / 0.12);
  border-radius: 30px;
  background: linear-gradient(135deg, #fbf7ef, #ead7aa 54%, #fffaf0);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.56);
}

.av-spotlight__media img,
.av-spotlight__fallback {
  width: 100%;
  height: 100%;
}

.av-spotlight__media img {
  object-fit: cover;
  mix-blend-mode: normal;
}

.av-spotlight__fallback {
  min-height: clamp(390px, 32vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 52px);
  color: var(--av-text);
}

.av-spotlight__fallback span {
  color: var(--av-gold-text);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.av-spotlight__fallback strong {
  max-width: 560px;
  font-family: var(--font-heading--family, var(--font-body--family, inherit));
  font-size: clamp(2.35rem, 4vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.av-spotlight__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}

.av-spotlight h2 {
  margin-top: 12px;
  font-family: var(--font-heading--family, var(--font-body--family, inherit));
  font-size: clamp(2.55rem, 4.7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.034em;
}

.av-spotlight__type {
  color: var(--av-gold-text);
  font-size: 1rem;
  font-weight: 850;
}

.av-spotlight__copy {
  max-width: 620px;
  margin-top: 22px;
  color: var(--av-muted);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.5;
}

.av-spotlight__best {
  color: var(--av-muted);
  font-size: 1.02rem;
}

.av-spotlight__list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--av-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.av-spotlight__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--av-gold);
}

.av-filter-shell {
  position: sticky;
  top: calc(var(--header-height, 0px) + 8px);
  z-index: 4;
  margin-bottom: 24px;
  padding: 10px;
  border: 1px solid var(--av-border);
  border-radius: 999px;
  background: rgb(244 243 241 / 0.92);
  backdrop-filter: blur(18px);
}

.av-filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 14px;
  scrollbar-width: none;
}

.av-filter-bar::before,
.av-filter-bar::after {
  content: "";
  flex: 0 0 2px;
}

.av-filter-bar::-webkit-scrollbar {
  display: none;
}

.av-filter-pill {
  min-height: 46px;
  flex: 0 0 auto;
  padding: 12px 18px;
  border: 1px solid var(--av-border);
  border-radius: 999px;
  background: var(--av-surface);
  color: var(--av-muted);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 760;
  cursor: pointer;
}

.av-filter-pill[aria-pressed="true"] {
  border-color: rgb(122 90 24 / 0.52);
  background: rgb(205 170 98 / 0.19);
  color: var(--av-text);
  box-shadow: inset 0 0 0 1px rgb(122 90 24 / 0.16);
}

/* Keep filter focus visible inside the horizontal scroll rail without clipped outlines. */
.av-filter-pill:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px #111111, 0 0 0 1px rgb(255 255 255 / 0.9);
}

.av-filter-pill[aria-pressed="true"]:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px #111111, 0 0 0 1px rgb(205 170 98 / 0.36);
}

/* Phase 15C: filter pills use a non-clipping focus ring inside the horizontal rail. */
.av-store .av-filter-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(24, 24, 24, 0.18), 0 0 0 6px rgba(205, 170, 98, 0.35);
}

html[data-av-theme="dark"] .av-store .av-filter-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 243, 241, 0.22), 0 0 0 6px rgba(226, 197, 117, 0.35);
}

.av-store__sort {
  margin: 0 0 34px;
  display: flex;
  justify-content: flex-end;
}

.av-store__sort select {
  min-height: 46px;
  padding: 0 42px 0 16px;
  border: 1px solid var(--av-border);
  border-radius: 999px;
  background: var(--av-surface);
  color: var(--av-text);
  font: inherit;
  font-size: 1rem;
}

.av-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 36px);
}

.av-product-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-xl);
  background: var(--av-surface);
  box-shadow: 0 18px 50px rgb(0 0 0 / 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.av-product-card:hover,
.av-product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--av-shadow);
}

.av-product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ebe6dc;
}

.av-product-card__media img,
.av-product-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av-product-card__placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgb(36 36 36 / 0.56);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.av-product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--av-gold);
  color: #181818;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.av-product-card__body {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: clamp(26px, 2vw, 32px);
}

.av-product-card__meta {
  color: var(--av-gold-text);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.av-product-card h3 {
  margin-top: 16px;
  font-family: var(--font-heading--family, var(--font-body--family, inherit));
  font-size: clamp(1.55rem, 1.9vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.024em;
}

.av-product-card__title-link {
  color: var(--av-text);
  text-decoration: none;
}

.av-product-card__title-link:hover {
  text-decoration: underline;
  text-decoration-color: rgb(122 90 24 / 0.68);
  text-underline-offset: 5px;
}

.av-product-card__best,
.av-product-card__outcome {
  color: var(--av-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.av-product-card__best {
  margin-top: 18px;
}

.av-product-card__outcome {
  margin-top: 10px;
}

.av-product-card__footer {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 26px;
}

.av-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 880;
}

.av-price__compare {
  color: var(--av-muted);
  font-weight: 650;
  text-decoration: line-through;
}

.av-product-card__details {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--av-muted);
  font-size: 1rem;
  font-weight: 760;
  text-decoration-color: rgb(122 90 24 / 0.62);
  text-underline-offset: 4px;
}

.av-store__empty {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 12px auto 0;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-xl);
  background: rgb(255 255 255 / 0.78);
  box-shadow: 0 18px 50px rgb(0 0 0 / 0.055);
  color: var(--av-muted);
  text-align: center;
}

.av-store__empty-kicker {
  color: var(--av-gold-text);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.av-store__empty h3,
.av-store__empty-title {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--av-text);
  font-family: var(--font-heading--family, var(--font-body--family, inherit));
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.028em;
}

.av-store__empty p:not(.av-store__empty-kicker),
.av-store__empty-copy {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--av-muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.av-store__empty-link,
.av-store__empty-pill {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 13px 20px;
  border: 1px solid rgb(122 90 24 / 0.28);
  border-radius: 999px;
  background: rgb(205 170 98 / 0.16);
  color: var(--av-text);
  font-weight: 800;
}

.av-faq-list {
  display: grid;
  gap: 14px;
}

.av-faq-item {
  padding: 0;
}

.av-faq-item summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  color: var(--av-text);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 850;
  cursor: pointer;
}

.av-faq-item summary::after {
  content: "+";
  color: var(--av-gold-text);
  font-size: 1.45rem;
}

.av-faq-item[open] summary::after {
  content: "-";
}

.av-faq-item p {
  padding: 0 28px 26px;
  color: var(--av-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.av-final-cta {
  padding: clamp(40px, 6.8vw, 88px);
  border-radius: var(--av-radius-xl);
  background: var(--av-surface);
  text-align: center;
  box-shadow: var(--av-shadow);
}

.av-final-cta h2 {
  max-width: 1000px;
  margin-inline: auto;
  font-family: var(--font-heading--family, var(--font-body--family, inherit));
  font-size: clamp(2.45rem, 5.5vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.034em;
}

.av-final-cta p {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--av-muted);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.62;
}

.av-final-cta__actions {
  justify-content: center;
}

.av-reveal {
  opacity: 1;
  transform: none;
}

.js .av-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .av-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.av-store {
  --av-motion-duration: 760ms;
  --av-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --av-motion-y: 16px;
  --av-motion-scale: 0.99;
  --av-motion-stagger: 64ms;
  --av-hover-glow: 0 24px 64px rgb(122 90 24 / 0.12), 0 0 0 1px rgb(205 170 98 / 0.24);
}

.av-store .av-reveal {
  opacity: 1;
  transform: none;
  transform-origin: center top;
  will-change: opacity, transform;
}

.js .av-store .av-reveal {
  opacity: 0;
  transform: translate3d(0, var(--av-motion-y), 0) scale(var(--av-motion-scale));
  transition:
    opacity var(--av-motion-duration) var(--av-motion-ease),
    transform var(--av-motion-duration) var(--av-motion-ease);
  transition-delay: calc(var(--av-stagger-index, 0) * var(--av-motion-stagger));
}

.js .av-store .av-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.av-store .av-problem-card,
.av-store .av-path-card,
.av-store .av-benefit-card,
.av-store .av-faq-item,
.av-store .av-spotlight,
.av-store .av-final-cta,
.av-store .av-product-card {
  transition:
    transform 320ms var(--av-motion-ease),
    border-color 320ms var(--av-motion-ease),
    box-shadow 320ms var(--av-motion-ease),
    background-color 320ms var(--av-motion-ease);
}

.av-store .av-product-card__media img {
  transition: transform 620ms var(--av-motion-ease);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .av-store .av-problem-card:hover,
  .av-store .av-path-card:hover,
  .av-store .av-benefit-card:hover,
  .av-store .av-faq-item:hover {
    border-color: rgb(205 170 98 / 0.42);
    box-shadow: var(--av-hover-glow);
    transform: translateY(-3px);
  }

  .av-store .av-spotlight:hover,
  .av-store .av-final-cta:hover {
    border-color: rgb(205 170 98 / 0.32);
    box-shadow: 0 30px 78px rgb(0 0 0 / 0.10), 0 0 0 1px rgb(205 170 98 / 0.18);
    transform: translateY(-2px);
  }

  .av-store .av-product-card:hover,
  .av-store .av-product-card:focus-within {
    border-color: rgb(205 170 98 / 0.36);
    box-shadow: 0 30px 78px rgb(0 0 0 / 0.11), 0 0 0 1px rgb(205 170 98 / 0.2);
    transform: translateY(-4px);
  }

  .av-store .av-product-card:hover .av-product-card__media img,
  .av-store .av-product-card:focus-within .av-product-card__media img {
    transform: scale(1.025);
  }
}

html.lms-design-mode .av-store .av-reveal,
html.lms-design-mode.js .av-store .av-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .av-store *,
  .av-store *::before,
  .av-store *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .av-reveal,
  .js .av-store .av-reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }

  .av-store .av-problem-card:hover,
  .av-store .av-path-card:hover,
  .av-store .av-benefit-card:hover,
  .av-store .av-faq-item:hover,
  .av-store .av-spotlight:hover,
  .av-store .av-final-cta:hover,
  .av-store .av-product-card:hover,
  .av-store .av-product-card:focus-within,
  .av-store .av-product-card:hover .av-product-card__media img,
  .av-store .av-product-card:focus-within .av-product-card__media img {
    transform: none;
  }
}

@media screen and (min-width: 1500px) {
  .av-product-grid,
  .av-problem-grid,
  .av-benefit-grid {
    gap: 36px;
  }
}

@media screen and (max-width: 1180px) {
  .av-path-grid,
  .av-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 989px) {
  :root {
    --av-page-pad: clamp(1.5rem, 5vw, 3rem);
  }

  .av-store__hero-grid,
  .av-section-heading,
  .av-spotlight {
    grid-template-columns: 1fr;
  }

  .av-store__hero {
    min-height: auto;
    padding-block: 86px 56px;
  }

  .av-problem-grid,
  .av-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .av-spotlight__media,
  .av-spotlight__fallback {
    min-height: 320px;
  }

  .av-store__sort {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 749px) {
  :root {
    --av-page-pad: 24px;
  }

  .av-store__section {
    padding-block: 56px;
  }

  .av-store__hero {
    padding-block: 76px 46px;
  }

  .av-store__hero-title {
    font-size: clamp(3.55rem, 19vw, 6.1rem);
    line-height: 0.9;
  }

  .av-store__hero-copy {
    font-size: clamp(1.14rem, 5.8vw, 1.42rem);
    line-height: 1.3;
  }

  .av-store__hero-panel {
    border-radius: 26px;
  }

  .av-store__actions,
  .av-product-card__footer .av-button,
  .av-final-cta .av-button {
    width: 100%;
  }

  .av-button {
    width: 100%;
    min-height: 50px;
  }

  .av-section-heading h2 {
    font-size: clamp(2.14rem, 11.5vw, 3.7rem);
    line-height: 1;
  }

  .av-problem-grid,
  .av-path-grid,
  .av-benefit-grid,
  .av-product-grid {
    grid-template-columns: 1fr;
  }

  .av-problem-card,
  .av-path-card,
  .av-benefit-card {
    min-height: auto;
  }

  .av-spotlight {
    padding: 18px;
    border-radius: 30px;
  }

  .av-spotlight__media,
  .av-spotlight__fallback {
    min-height: 250px;
    border-radius: 22px;
  }

  .av-filter-shell {
    position: static;
    margin-inline: -12px;
    border-radius: 0;
    border-inline: 0;
  }

  .av-filter-bar {
    padding-inline: 2px;
    scroll-padding-inline: 18px;
  }

  .av-store__sort {
    justify-content: stretch;
  }

  .av-store__sort select {
    width: 100%;
  }

  .av-product-card__body {
    min-height: auto;
    padding: 24px;
  }

  .av-store__empty {
    padding: 30px 22px;
    border-radius: 30px;
  }

  .av-final-cta {
    border-radius: 30px;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --av-page-pad: 18px;
  }

  .av-store__section {
    padding-block: 48px;
  }

  .av-store__hero-title {
    font-size: clamp(3.15rem, 18vw, 5.2rem);
  }

  .av-store__hero-panel,
  .av-problem-card,
  .av-path-card,
  .av-benefit-card,
  .av-product-card__body,
  .av-final-cta {
    padding: 22px;
  }

  .av-spotlight__media,
  .av-spotlight__fallback {
    min-height: 220px;
  }

  .av-filter-pill {
    min-height: 46px;
    padding-inline: 16px;
  }

  .av-store__empty h3,
  .av-store__empty-title {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .av-faq-item summary {
    padding: 20px 22px;
  }

  .av-faq-item p {
    padding-inline: 22px;
  }
}

/* Phase G2: clean premium Lab Store card surfaces. */
.av-store {
  background: #f5f5f5;
}

.av-store .av-store__hero-panel,
.av-store .av-spotlight,
.av-store .av-problem-card,
.av-store .av-product-card,
.av-store .av-path-card,
.av-store .av-benefit-card,
.av-store .av-faq-item,
.av-store .av-final-cta,
.av-store .av-store__empty {
  border-color: rgb(40 25 15 / 0.08);
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 22px 64px rgb(42 28 18 / 0.07);
}

.av-store .av-spotlight,
.av-store .av-product-card,
.av-store .av-final-cta,
.av-store .av-store__empty {
  background: rgb(255 255 255 / 0.98);
  box-shadow: 0 26px 72px rgb(42 28 18 / 0.08);
}

.av-store .av-spotlight__media,
.av-store .av-product-card__media {
  border-color: rgb(122 90 24 / 0.12);
  background: #ebe6dc;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.52);
}

html[data-av-theme="dark"] .av-store {
  --av-bg: #171717;
  --av-surface: #232323;
  --av-text: #f4f3f1;
  --av-muted: #c9c4bc;
  --av-gold-text: #e2c575;
  --av-border: rgb(255 255 255 / 0.13);
  --av-shadow: 0 28px 70px rgb(0 0 0 / 0.38);
  background: var(--av-bg);
}

html[data-av-theme="dark"] .av-store .av-store__hero-panel,
html[data-av-theme="dark"] .av-store .av-spotlight,
html[data-av-theme="dark"] .av-store .av-problem-card,
html[data-av-theme="dark"] .av-store .av-product-card,
html[data-av-theme="dark"] .av-store .av-path-card,
html[data-av-theme="dark"] .av-store .av-benefit-card,
html[data-av-theme="dark"] .av-store .av-faq-item,
html[data-av-theme="dark"] .av-store .av-final-cta,
html[data-av-theme="dark"] .av-store .av-store__empty {
  border-color: var(--av-border);
  background: var(--av-surface);
  box-shadow: var(--av-shadow);
}

html[data-av-theme="dark"] .av-store .av-spotlight__copy,
html[data-av-theme="dark"] .av-store .av-spotlight__best,
html[data-av-theme="dark"] .av-store .av-spotlight__list,
html[data-av-theme="dark"] .av-store .av-product-card__best,
html[data-av-theme="dark"] .av-store .av-product-card__outcome,
html[data-av-theme="dark"] .av-store .av-product-card__details,
html[data-av-theme="dark"] .av-store .av-store__empty,
html[data-av-theme="dark"] .av-store .av-store__empty-copy,
html[data-av-theme="dark"] .av-store .av-faq-item p,
html[data-av-theme="dark"] .av-store .av-problem-card p,
html[data-av-theme="dark"] .av-store .av-path-card p,
html[data-av-theme="dark"] .av-store .av-benefit-card p {
  color: var(--av-muted);
}


/* Phase D1: restore neutral Lab Store dark surfaces after G2. */
html[data-av-theme="dark"] [data-av-lab-hero] .av-hero-stack {
  border-color: rgb(255 255 255 / 0.13) !important;
  background: linear-gradient(145deg, #232323, #1d1d1d) !important;
}

html[data-av-theme="dark"] [data-av-lab-hero] .av-hero-stack__card,
html[data-av-theme="dark"] [data-av-lab-hero] .av-hero-stack__card--back,
html[data-av-theme="dark"] [data-av-lab-hero] .av-hero-stack__card--middle,
html[data-av-theme="dark"] [data-av-lab-hero] .av-hero-stack__card--front-secondary,
html[data-av-theme="dark"] [data-av-lab-hero] .av-hero-stack__card--primary {
  border-color: rgb(255 255 255 / 0.13) !important;
  background: #232323 !important;
  color: #f4f3f1;
}


/* Phase PF4: Product Finder filter tabs and real product-card grid cleanup. */
[data-av-lab-products] .av-filter-pill {
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

[data-av-lab-products] .av-filter-pill:hover {
  border-color: rgb(0 0 0 / 0.18);
  background: #ffffff;
  color: var(--av-text);
  box-shadow: 0 8px 22px rgb(0 0 0 / 0.055);
  transform: translateY(-1px);
}

[data-av-lab-products] .av-filter-pill[aria-pressed="true"] {
  border-color: rgb(122 90 24 / 0.46);
  background: rgb(205 170 98 / 0.16);
  color: var(--av-text);
  box-shadow: inset 0 0 0 1px rgb(122 90 24 / 0.14);
}

[data-av-lab-products] .av-filter-pill[aria-pressed="true"]:hover {
  border-color: rgb(122 90 24 / 0.58);
  background: rgb(205 170 98 / 0.20);
}

[data-av-lab-products] .av-filter-pill:focus-visible {
  outline: 3px solid #111111;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgb(255 255 255 / 0.88);
}

[data-av-lab-products] [data-av-product-grid] {
  justify-items: stretch;
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.7vw, 28px);
}

[data-av-lab-products] [data-av-product-grid] > [role="listitem"] {
  min-width: 0;
  display: flex;
}

[data-av-lab-products] [data-av-product-grid] > [role="listitem"] > .av-product-card,
[data-av-lab-products] .av-product-card {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

[data-av-lab-products] .av-product-card__media {
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
}

[data-av-lab-products] .av-product-card__body {
  flex: 1 1 auto;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

[data-av-lab-products] .av-product-card h3 {
  font-size: clamp(1.28rem, 1.45vw, 1.72rem);
}

[data-av-lab-products] .av-product-card__title-link,
[data-av-lab-products] .av-product-card__best,
[data-av-lab-products] .av-product-card__outcome {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-av-lab-products] .av-product-card__title-link {
  -webkit-line-clamp: 3;
}

[data-av-lab-products] .av-product-card__best,
[data-av-lab-products] .av-product-card__outcome {
  -webkit-line-clamp: 4;
}

[data-av-lab-products] .av-product-card__footer {
  margin-top: auto;
}

@media screen and (max-width: 1180px) {
  [data-av-lab-products] [data-av-product-grid] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  [data-av-lab-products] [data-av-product-grid] {
    grid-template-columns: 1fr;
  }

  [data-av-lab-products] .av-product-card__body {
    min-height: auto;
  }
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-pill:hover {
  border-color: rgb(255 255 255 / 0.20);
  background: #2b2b2b;
  color: #f4f3f1;
  box-shadow: 0 8px 22px rgb(0 0 0 / 0.22);
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-pill[aria-pressed="true"] {
  border-color: rgb(226 197 117 / 0.52);
  background: rgb(226 197 117 / 0.14);
  color: #f4f3f1;
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-pill:focus-visible {
  outline-color: #f4f3f1;
  box-shadow: 0 0 0 6px rgb(226 197 117 / 0.22);
}

/* Phase PF5: Product Finder responsive controls. */
[data-av-lab-products] .av-filter-shell {
  width: 100%;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 12px;
  border-radius: 24px;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

[data-av-lab-products] .av-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: visible;
  scroll-padding-inline: 0;
}

[data-av-lab-products] .av-filter-bar::before,
[data-av-lab-products] .av-filter-bar::after {
  display: none;
}

[data-av-lab-products] .av-filter-pill {
  min-height: 44px;
  max-width: 100%;
  justify-content: center;
  padding: 12px 18px;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
}

[data-av-lab-products] .av-filter-pill:hover {
  border-color: rgb(122 90 24 / 0.36);
  background: #ffffff;
  color: var(--av-text);
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.07), inset 0 0 0 1px rgb(205 170 98 / 0.16);
  transform: translateY(-2px);
}

[data-av-lab-products] .av-filter-pill[aria-pressed="true"] {
  border-color: rgb(122 90 24 / 0.52);
  background: #ffffff;
  color: var(--av-text);
  box-shadow: inset 0 0 0 1px rgb(205 170 98 / 0.18), inset 0 -3px 0 rgb(205 170 98 / 0.62);
}

[data-av-lab-products] .av-filter-pill:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #ffffff, 0 0 0 7px rgb(205 170 98 / 0.28);
}

[data-av-lab-products] .av-store__sort {
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 28px;
}

[data-av-lab-products] .av-store__sort select {
  max-width: min(100%, 360px);
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-shell {
  background: #232323;
  border-color: rgb(255 255 255 / 0.13);
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-pill:hover {
  border-color: rgb(255 255 255 / 0.22);
  background: #2b2b2b;
  color: #f4f3f1;
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.28), inset 0 0 0 1px rgb(226 197 117 / 0.12);
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-pill[aria-pressed="true"] {
  border-color: rgb(226 197 117 / 0.50);
  background: #232323;
  color: #f4f3f1;
  box-shadow: inset 0 0 0 1px rgb(226 197 117 / 0.16), inset 0 -3px 0 rgb(226 197 117 / 0.58);
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-pill:focus-visible {
  outline-color: #f4f3f1;
  box-shadow: 0 0 0 5px #232323, 0 0 0 7px rgb(226 197 117 / 0.24);
}

@media screen and (max-width: 749px) {
  [data-av-lab-products] .av-filter-shell {
    margin-bottom: 16px;
    padding: 10px;
    border-radius: 22px;
  }

  [data-av-lab-products] .av-filter-bar {
    gap: 8px;
  }

  [data-av-lab-products] .av-filter-pill {
    flex: 1 1 calc(50% - 8px);
    min-width: min(100%, 9rem);
    padding-inline: 12px;
    white-space: normal;
  }

  [data-av-lab-products] .av-store__sort {
    justify-content: stretch;
    margin-bottom: 22px;
  }

  [data-av-lab-products] .av-store__sort select {
    width: 100%;
    max-width: none;
  }
}

@media screen and (max-width: 420px) {
  [data-av-lab-products] .av-filter-pill {
    flex-basis: 100%;
  }
}

/* Phase PF5 adjustment: Product Finder control precedence. */
[data-av-lab-products] .av-filter-shell {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 18px !important;
  padding: 12px !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible !important;
}

[data-av-lab-products] .av-filter-bar {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  overflow: visible !important;
  scroll-padding-inline: 0 !important;
}

[data-av-lab-products] .av-filter-bar::before,
[data-av-lab-products] .av-filter-bar::after {
  display: none !important;
}

[data-av-lab-products] .av-filter-pill {
  min-height: 44px !important;
  max-width: 100% !important;
  justify-content: center !important;
  padding: 12px 18px !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  text-align: center !important;
}

[data-av-lab-products] .av-filter-pill:hover {
  border-color: rgb(122 90 24 / 0.36) !important;
  background: #ffffff !important;
  color: var(--av-text) !important;
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.07), inset 0 0 0 1px rgb(205 170 98 / 0.16) !important;
  transform: translateY(-2px) !important;
}

[data-av-lab-products] .av-filter-pill[aria-pressed="true"] {
  border-color: rgb(122 90 24 / 0.52) !important;
  background: #ffffff !important;
  color: var(--av-text) !important;
  box-shadow: inset 0 0 0 1px rgb(205 170 98 / 0.18), inset 0 -3px 0 rgb(205 170 98 / 0.62) !important;
}

[data-av-lab-products] .av-filter-pill:focus-visible {
  outline: 2px solid #111111 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px #ffffff, 0 0 0 7px rgb(205 170 98 / 0.28) !important;
}

[data-av-lab-products] .av-store__sort {
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  margin-top: 0 !important;
  margin-bottom: 28px !important;
}

[data-av-lab-products] .av-store__sort select {
  max-width: min(100%, 360px) !important;
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-shell {
  background: #232323 !important;
  border-color: rgb(255 255 255 / 0.13) !important;
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-pill:hover {
  border-color: rgb(255 255 255 / 0.22) !important;
  background: #2b2b2b !important;
  color: #f4f3f1 !important;
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.28), inset 0 0 0 1px rgb(226 197 117 / 0.12) !important;
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-pill[aria-pressed="true"] {
  border-color: rgb(226 197 117 / 0.50) !important;
  background: #232323 !important;
  color: #f4f3f1 !important;
  box-shadow: inset 0 0 0 1px rgb(226 197 117 / 0.16), inset 0 -3px 0 rgb(226 197 117 / 0.58) !important;
}

html[data-av-theme="dark"] [data-av-lab-products] .av-filter-pill:focus-visible {
  outline-color: #f4f3f1 !important;
  box-shadow: 0 0 0 5px #232323, 0 0 0 7px rgb(226 197 117 / 0.24) !important;
}

@media screen and (max-width: 749px) {
  [data-av-lab-products] .av-filter-shell {
    margin-bottom: 16px !important;
    padding: 10px !important;
    border-radius: 22px !important;
  }

  [data-av-lab-products] .av-filter-bar {
    gap: 8px !important;
  }

  [data-av-lab-products] .av-filter-pill {
    flex: 1 1 calc(50% - 8px) !important;
    min-width: min(100%, 9rem) !important;
    padding-inline: 12px !important;
    white-space: normal !important;
  }

  [data-av-lab-products] .av-store__sort {
    justify-content: stretch !important;
    margin-bottom: 22px !important;
  }

  [data-av-lab-products] .av-store__sort select {
    width: 100% !important;
    max-width: none !important;
  }
}

@media screen and (max-width: 420px) {
  [data-av-lab-products] .av-filter-pill {
    flex-basis: 100% !important;
  }
}

/* Phase E5: backend numeric section heading and body controls. */
.av-store .av-section-heading__main {
  max-width: var(--av-section-heading-max, 760px);
  width: 100%;
}

.av-store .av-section-heading h2 {
  max-width: var(--av-section-heading-max, 760px);
  width: 100%;
  font-size: clamp(2rem, 5vw, var(--av-section-heading-size, 52px));
}

.av-store .av-section-heading > p:not(.av-store__eyebrow),
.av-store .av-section-heading > .av-tools-copy {
  max-width: var(--av-section-body-max, 720px);
  width: 100%;
  font-size: clamp(16px, 1.6vw, var(--av-section-body-size, 18px));
}

.av-store .av-section-heading > .av-tools-copy p {
  font-size: inherit;
  line-height: inherit;
}

[data-av-lab-spotlight] .av-spotlight__title {
  max-width: var(--av-section-heading-max, 720px);
  width: 100%;
  font-size: clamp(2rem, 4.6vw, var(--av-section-heading-size, 48px));
}

[data-av-lab-spotlight] .av-spotlight__copy {
  max-width: var(--av-section-body-max, 664px);
  width: 100%;
  font-size: clamp(16px, 1.6vw, var(--av-section-body-size, 18px));
}

[data-av-lab-final-cta] .av-final-cta h2 {
  max-width: var(--av-section-heading-max, 824px);
  width: 100%;
  font-size: clamp(2rem, 5vw, var(--av-section-heading-size, 56px));
}

[data-av-lab-final-cta] .av-final-cta > p {
  max-width: var(--av-section-body-max, 720px);
  width: 100%;
  font-size: clamp(16px, 1.6vw, var(--av-section-body-size, 18px));
}

@media screen and (max-width: 749px) {
  .av-store .av-section-heading h2,
  [data-av-lab-spotlight] .av-spotlight__title,
  [data-av-lab-final-cta] .av-final-cta h2 {
    font-size: clamp(2rem, 10vw, min(var(--av-section-heading-size, 52px), 48px));
  }
}



/* Phase E7: editable eyebrow color controls. */
.av-store .av-store__eyebrow {
  color: var(--av-eyebrow-color, var(--av-gold-text));
}

html[data-av-theme="dark"] .av-store .av-store__eyebrow {
  color: var(--av-gold-text);
}


/* Phase HV1: decorative Hero background video support. */
[data-av-lab-hero] {
  position: relative;
  overflow: hidden;
}

[data-av-lab-hero] .av-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-av-lab-hero] .av-hero-bg-video,
[data-av-lab-hero] .av-hero-bg-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: var(--av-hero-video-fit, cover);
  opacity: var(--av-hero-video-opacity, 0.55);
  pointer-events: none;
}

[data-av-lab-hero] .av-hero-bg-iframe {
  transform: scale(1.15);
  transform-origin: center;
}

[data-av-lab-hero] .av-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgb(245 245 245 / var(--av-hero-video-overlay, 0.35));
  pointer-events: none;
}

html[data-av-theme="dark"] [data-av-lab-hero] .av-hero-bg-overlay {
  background: rgb(23 23 23 / var(--av-hero-video-overlay, 0.35));
}

[data-av-lab-hero] .av-store__hero,
[data-av-lab-hero] .av-store__hero-grid,
[data-av-lab-hero] .av-store__hero-content,
[data-av-lab-hero] .av-hero-stack,
[data-av-lab-hero] .av-store__hero-panel {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 749px) {
  [data-av-lab-hero][data-av-hero-video-mobile="false"] .av-hero-bg {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-av-lab-hero] .av-hero-bg {
    display: none;
  }
}


/* Phase E8: standard non-Hero section heading spacing controls. */
[data-av-standard-heading] .av-section-heading__main > .av-store__eyebrow {
  margin-bottom: var(--av-section-eyebrow-gap, 18px);
}

[data-av-standard-heading] .av-section-heading {
  column-gap: clamp(
    min(28px, var(--av-section-column-gap, 78px)),
    5vw,
    var(--av-section-column-gap, 78px)
  );
}

@media screen and (max-width: 989px) {
  [data-av-standard-heading] .av-section-heading {
    row-gap: min(
      var(--av-section-column-gap, 78px),
      clamp(28px, 5vw, 50px)
    );
  }
}


/* Phase E8-Column: editable desktop heading-column width. */
@media screen and (min-width: 990px) {
  [data-av-standard-heading] .av-section-heading {
    grid-template-columns:
      minmax(
        0,
        min(
          var(--av-section-heading-column-width, 900px),
          calc(
            (100% - min(5vw, var(--av-section-column-gap, 78px)))
            * 0.6643356643
          ),
          calc(
            100% - min(5vw, var(--av-section-column-gap, 78px)) - 300px
          )
        )
      )
      minmax(300px, 1fr);
  }
}


/* Phase M1: coordinated non-Hero title reveals and scoped interactive-card motion. */
.js .av-store .av-title-reveal.av-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js .av-store .av-title-reveal .av-section-heading__main > .av-store__eyebrow,
.js .av-store .av-title-reveal .av-section-heading__main > h2,
.js .av-store .av-title-reveal.av-section-heading > p,
.js .av-store .av-title-reveal.av-section-heading > .av-tools-copy,
.js [data-av-lab-spotlight] .av-title-reveal .av-spotlight__type,
.js [data-av-lab-spotlight] .av-title-reveal .av-spotlight__title,
.js [data-av-lab-spotlight] .av-title-reveal .av-spotlight__copy {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 600ms var(--av-motion-ease),
    transform 600ms var(--av-motion-ease);
}

.js .av-store .av-title-reveal.is-visible .av-section-heading__main > .av-store__eyebrow,
.js [data-av-lab-spotlight] .av-title-reveal.is-visible .av-spotlight__type {
  transition-delay: 0ms;
}

.js .av-store .av-title-reveal.is-visible .av-section-heading__main > h2,
.js [data-av-lab-spotlight] .av-title-reveal.is-visible .av-spotlight__title {
  transition-delay: 80ms;
}

.js .av-store .av-title-reveal.is-visible.av-section-heading > p,
.js .av-store .av-title-reveal.is-visible.av-section-heading > .av-tools-copy,
.js [data-av-lab-spotlight] .av-title-reveal.is-visible .av-spotlight__copy {
  transition-delay: 140ms;
}

.js .av-store .av-title-reveal.is-visible .av-section-heading__main > .av-store__eyebrow,
.js .av-store .av-title-reveal.is-visible .av-section-heading__main > h2,
.js .av-store .av-title-reveal.is-visible.av-section-heading > p,
.js .av-store .av-title-reveal.is-visible.av-section-heading > .av-tools-copy,
.js [data-av-lab-spotlight] .av-title-reveal.is-visible .av-spotlight__type,
.js [data-av-lab-spotlight] .av-title-reveal.is-visible .av-spotlight__title,
.js [data-av-lab-spotlight] .av-title-reveal.is-visible .av-spotlight__copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.av-store .av-product-card,
[data-av-lab-paths] .av-path-card,
.av-store .av-faq-item {
  transition:
    transform 260ms var(--av-motion-ease),
    border-color 220ms var(--av-motion-ease),
    box-shadow 260ms var(--av-motion-ease),
    background-color 220ms var(--av-motion-ease);
}

.av-store .av-product-card:focus-within {
  border-color: rgb(205 170 98 / 0.52);
  box-shadow: 0 34px 84px rgb(0 0 0 / 0.14), 0 0 0 1px rgb(205 170 98 / 0.28);
}

.av-store .av-product-card:hover,
.av-store .av-product-card:focus-within,
[data-av-lab-paths] .av-path-card:hover,
[data-av-lab-paths] .av-path-card:focus-within,
[data-av-lab-problems] .av-problem-card:hover,
[data-av-lab-benefits] .av-benefit-card:hover,
[data-av-lab-how-it-works] .av-path-card:hover,
.av-store .av-product-card:hover .av-product-card__media img,
.av-store .av-product-card:focus-within .av-product-card__media img {
  transform: none;
}

[data-av-lab-paths] .av-path-card:focus-within {
  border-color: rgb(205 170 98 / 0.52);
  box-shadow: 0 28px 72px rgb(0 0 0 / 0.11), 0 0 0 1px rgb(205 170 98 / 0.24);
}

.av-store .av-faq-item:hover,
.av-store .av-faq-item:focus-within {
  border-color: rgb(205 170 98 / 0.44);
  background: rgb(255 255 255 / 0.99);
  box-shadow: 0 18px 48px rgb(0 0 0 / 0.08), 0 0 0 1px rgb(205 170 98 / 0.16);
  transform: none;
}

.av-store .av-spotlight:hover,
.av-store .av-spotlight:focus-within,
.av-store .av-final-cta:hover,
.av-store .av-final-cta:focus-within {
  transform: none;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .av-store .av-product-card:hover {
    border-color: rgb(205 170 98 / 0.52);
    box-shadow: 0 34px 84px rgb(0 0 0 / 0.14), 0 0 0 1px rgb(205 170 98 / 0.28);
    transform: translateY(-6px);
  }

  .av-store .av-product-card:focus-within {
    transform: translateY(-6px);
  }

  .av-store .av-product-card:hover .av-product-card__media img,
  .av-store .av-product-card:focus-within .av-product-card__media img {
    transform: scale(1.025);
  }

  [data-av-lab-paths] .av-path-card:hover {
    border-color: rgb(205 170 98 / 0.48);
    box-shadow: 0 28px 72px rgb(0 0 0 / 0.11), 0 0 0 1px rgb(205 170 98 / 0.22);
    transform: translateY(-4px);
  }

  [data-av-lab-paths] .av-path-card:focus-within {
    transform: translateY(-4px);
  }

  [data-av-lab-problems] .av-problem-card:hover,
  [data-av-lab-benefits] .av-benefit-card:hover,
  [data-av-lab-how-it-works] .av-path-card:hover {
    border-color: rgb(205 170 98 / 0.34);
    box-shadow: 0 22px 58px rgb(0 0 0 / 0.085), 0 0 0 1px rgb(205 170 98 / 0.14);
    transform: none;
  }
}

html[data-av-theme="dark"] .av-store .av-product-card:focus-within,
html[data-av-theme="dark"] [data-av-lab-paths] .av-path-card:focus-within {
  border-color: rgb(226 197 117 / 0.52);
  box-shadow: 0 30px 76px rgb(0 0 0 / 0.42), 0 0 0 1px rgb(226 197 117 / 0.24);
}

html[data-av-theme="dark"] .av-store .av-faq-item:hover,
html[data-av-theme="dark"] .av-store .av-faq-item:focus-within {
  border-color: rgb(226 197 117 / 0.42);
  background: #282828;
  box-shadow: 0 22px 58px rgb(0 0 0 / 0.36), 0 0 0 1px rgb(226 197 117 / 0.16);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html[data-av-theme="dark"] .av-store .av-product-card:hover,
  html[data-av-theme="dark"] [data-av-lab-paths] .av-path-card:hover {
    border-color: rgb(226 197 117 / 0.52);
    box-shadow: 0 30px 76px rgb(0 0 0 / 0.42), 0 0 0 1px rgb(226 197 117 / 0.24);
  }

  html[data-av-theme="dark"] [data-av-lab-problems] .av-problem-card:hover,
  html[data-av-theme="dark"] [data-av-lab-benefits] .av-benefit-card:hover,
  html[data-av-theme="dark"] [data-av-lab-how-it-works] .av-path-card:hover {
    border-color: rgb(226 197 117 / 0.32);
    box-shadow: 0 22px 58px rgb(0 0 0 / 0.32), 0 0 0 1px rgb(226 197 117 / 0.12);
  }
}

html.lms-design-mode .av-store .av-title-reveal *,
html.lms-design-mode.js .av-store .av-title-reveal * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .js .av-store .av-title-reveal *,
  .av-store .av-product-card:hover,
  .av-store .av-product-card:focus-within,
  [data-av-lab-paths] .av-path-card:hover,
  [data-av-lab-paths] .av-path-card:focus-within,
  .av-store .av-product-card:hover .av-product-card__media img,
  .av-store .av-product-card:focus-within .av-product-card__media img {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
}
