/* (c) 2026 Sentys Inc. All rights reserved. */






.quote-stage {
  background: #fff;
  padding: clamp(8px, 1.5vw, 24px) 24px clamp(40px, 4vw, 56px);
  position: relative;
}

.quote-stage__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;




}

.quote-stage__slide {
  grid-column: 1;
  grid-row: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.quote-stage__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-stage__text {
  font-family: 'Charter', 'Iowan Old Style', 'Sitka Text', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.45;
  color: #1a1a19;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  max-width: 760px;
  quotes: '\201C' '\201D';
}

.quote-stage__text::before {
  content: open-quote;

  margin-right: -0.05em;
}
.quote-stage__text::after { content: close-quote; }

.quote-stage__cite {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a4a48;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.quote-stage__cite::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #B0D237;
}

.quote-stage__name { color: #1a1a19; }
.quote-stage__org  { color: #888; font-weight: 500; }
.quote-stage__org::before {
  content: "·";
  margin: 0 8px;
  color: #bbb;
}


.quote-stage__progress {
  list-style: none;
  margin: 24px 0 0;
  padding: 4px 0 0;
  position: relative;
  z-index: 1;
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 9px;
  grid-column: 1;
  grid-row: 2;
}

.quote-stage__progress li { display: flex; }

.quote-stage__progress button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 250ms ease, transform 250ms ease;
}

.quote-stage__progress button:hover { background: rgba(0, 0, 0, 0.5); transform: scale(1.25); }
.quote-stage__progress button.is-active {
  background: #B0D237;
}
.quote-stage__progress button:focus-visible {
  outline: 2px solid #1a1a19;
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .quote-stage { padding: 40px 18px 32px; }
  .quote-stage__text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .quote-stage__cite { flex-direction: row; gap: 10px; font-size: 0.65rem; }
  .quote-stage__cite::before { width: 18px; }
  .quote-stage__org::before { margin: 0 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .quote-stage__slide { transition: none; }
}



.product-quotes {
  background: transparent;
  padding: clamp(40px, 4vw, 64px) 4vw;
}

.product-quotes__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  padding: clamp(32px, 3.5vw, 56px) clamp(28px, 3vw, 48px);
}

.product-quotes__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1a19;
  margin: 0 0 16px;
  text-align: left;
}

.product-quotes__heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #B0D237;
  margin: 12px 0 0;
}

.product-quotes__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-quotes__item {
  text-align: left;
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid rgba(176, 210, 55, 0.4);
}

.product-quotes__text {
  font-family: 'Charter', 'Iowan Old Style', 'Sitka Text', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: #2a2a28;
  margin: 0 0 10px;
  max-width: none;
  quotes: "\201C" "\201D";
}
.product-quotes__text::before { content: open-quote; }
.product-quotes__text::after  { content: close-quote; }

.product-quotes__cite {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a4a48;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.product-quotes__name { color: #1a1a19; }
.product-quotes__org  { color: #888; font-weight: 500; }
.product-quotes__org::before {
  content: "\2022";
  margin: 0 8px;
  color: #bbb;
  font-weight: 400;
}

@media (max-width: 640px) {
  .product-quotes { padding: 24px 16px; }
  .product-quotes__inner { padding: 28px 22px; }
  .product-quotes__heading { font-size: 0.95rem; }
  .product-quotes__list { gap: 24px; }
  .product-quotes__item { padding-left: 14px; }
  .product-quotes__text { font-size: 0.95rem; line-height: 1.65; }
  .product-quotes__cite { font-size: 0.65rem; }
}






.quotes-linked .product-quotes__item:has(.product-quotes__cite-link) {
  position: relative;
  transition: border-color 0.25s ease;
}
.quotes-linked .product-quotes__cite-link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.quotes-linked .product-quotes__cite-link,
.quotes-linked .product-quotes__cite-link:hover {
  border-bottom-color: transparent;
}
.quotes-linked .product-quotes__cite-link .product-quotes__name {
  background-image: linear-gradient(var(--green), var(--green));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 0.35s var(--spring);
  padding-bottom: 2px;
}
.quotes-linked .product-quotes__cite-link .product-quotes__org::after {
  content: "\2192";
  margin-left: 8px;
  color: var(--green);
  opacity: 0.45;
  transition: opacity 0.2s ease, margin-left 0.25s var(--spring);
}
.quotes-linked .product-quotes__item:has(.product-quotes__cite-link):hover {
  border-left-color: var(--green);
}
.quotes-linked .product-quotes__item:hover .product-quotes__name,
.quotes-linked .product-quotes__cite-link:focus-visible .product-quotes__name {
  background-size: 100% 2px;
}
.quotes-linked .product-quotes__item:hover .product-quotes__org::after,
.quotes-linked .product-quotes__cite-link:focus-visible .product-quotes__org::after {
  opacity: 1;
  margin-left: 12px;
}
.quotes-linked .product-quotes__cite-link:focus-visible { outline: none; }
.quotes-linked .product-quotes__item:has(.product-quotes__cite-link:focus-visible) {
  outline: 2px solid #B0D237;
  outline-offset: 6px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .quotes-linked .product-quotes__item,
  .quotes-linked .product-quotes__name,
  .quotes-linked .product-quotes__org::after { transition: none; }
}


.quote-stage__slide-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.3s ease;
}



.quote-stage__slide-link .quote-stage__name {
  background-image: linear-gradient(var(--green), var(--green));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 0.35s var(--spring);
  padding-bottom: 2px;
}
.quote-stage__slide-link:hover,
.quote-stage__slide-link:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}
.quote-stage__slide-link:hover .quote-stage__name,
.quote-stage__slide-link:focus-visible .quote-stage__name {
  background-size: 100% 2px;
}

@media (prefers-reduced-motion: reduce) {
  .quote-stage__slide-link,
  .quote-stage__slide-link .quote-stage__name { transition: none; }
}
.quote-stage__slide-link:focus-visible {
  outline: 2px solid #B0D237;
  outline-offset: 8px;
  border-radius: 4px;
}







.quote-stage__slide--portrait { display: grid; grid-template-columns: 128px minmax(0, 1fr); column-gap: 36px; align-items: start; justify-items: start; width: 100%; text-align: left; }
.quote-stage__slide--portrait .quote-stage__slide-link { display: grid; grid-template-columns: 128px minmax(0, 1fr); column-gap: 36px; align-items: start; justify-items: start; width: 100%; grid-column: 1 / -1; text-align: left; }
.quote-stage__who { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 128px; padding-top: 6px; }
.quote-stage__portrait { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; object-position: center top; box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.quote-stage__logo { max-width: 120px; max-height: 40px; object-fit: contain; filter: grayscale(100%); opacity: 0.7; }
.quote-stage__body { flex: 1 1 auto; min-width: 0; }
.quote-stage__slide--portrait .quote-stage__text { margin-bottom: 16px; }
.quote-stage__slide--portrait .quote-stage__cite::before { display: none; }
@media (max-width: 700px) {
  .quote-stage__slide--portrait, .quote-stage__slide--portrait .quote-stage__slide-link { grid-template-columns: 1fr; justify-items: center; text-align: center; row-gap: 18px; }
  .quote-stage__who { width: auto; }
  .quote-stage__portrait { width: 84px; height: 84px; }
}






.pq-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 4vw 0;
}
.pq-top__inner {
  display: flex;
  align-items: flex-end;
  gap: clamp(20px, 3vw, 48px);
  padding: 0;
}
.pq-top__slides {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
}
.pq-top__slide {
  grid-area: 1 / 1;
  position: relative;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 0s linear 250ms;
}
.pq-top__slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 450ms ease 250ms, visibility 0s;
}
.pq-top__text {
  font-family: 'Charter', 'Iowan Old Style', 'Sitka Text', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  color: #2a2a28;
  margin: 0 0 10px;
  max-width: 70ch;
  quotes: "\201C" "\201D";
}
.pq-top__text::before { content: open-quote; }
.pq-top__text::after  { content: close-quote; }
.pq-top__cite {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a4a48;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.pq-top__cite-link {
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pq-top__name { color: #1a1a19; }
.pq-top__org  { color: #888; font-weight: 500; }
.pq-top__org::before {
  content: "\2022";
  margin: 0 8px;
  color: #bbb;
  font-weight: 400;
}



.quotes-linked .pq-top__cite-link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.quotes-linked .pq-top__cite-link .pq-top__name {
  background-image: linear-gradient(var(--green), var(--green));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 0.35s var(--spring);
  padding-bottom: 2px;
}
.quotes-linked .pq-top__cite-link > span:last-of-type::after {
  content: "\2192";
  margin-left: 8px;
  color: var(--green);
  opacity: 0.45;
  transition: opacity 0.2s ease, margin-left 0.25s var(--spring);
}
.quotes-linked .pq-top__slide:hover .pq-top__cite-link .pq-top__name,
.quotes-linked .pq-top__cite-link:focus-visible .pq-top__name { background-size: 100% 2px; }
.quotes-linked .pq-top__slide:hover .pq-top__cite-link > span:last-of-type::after,
.quotes-linked .pq-top__cite-link:focus-visible > span:last-of-type::after { opacity: 1; margin-left: 12px; }
.quotes-linked .pq-top__cite-link:focus-visible { outline: none; }
.quotes-linked .pq-top__slide:has(.pq-top__cite-link:focus-visible) {
  outline: 2px solid #B0D237;
  outline-offset: 6px;
  border-radius: 4px;
}

.pq-top__nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pq-top__arrow {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  background: transparent;
  color: #4a4a48;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.pq-top__arrow svg { width: 14px; height: 14px; }
.pq-top__arrow:hover {
  border-color: var(--green);
  background-color: rgba(175, 209, 57, 0.14);
  color: #1a1a19;
}
.pq-top__arrow:focus-visible,
.pq-top__dots button:focus-visible {
  outline: 2px solid #1a1a19;
  outline-offset: 2px;
}
.pq-top__dots {
  list-style: none;
  margin: 0 2px;
  padding: 0;
  display: flex;
}
.pq-top__dots li { display: flex; }

.pq-top__dots button {
  width: 16px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pq-top__dots button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.pq-top__dots button:hover::before { background: rgba(0, 0, 0, 0.5); transform: scale(1.25); }
.pq-top__dots button.is-active::before { background: var(--green); }

@media (max-width: 640px) {
  .pq-top { padding: 32px 16px 0; }
  .pq-top__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .pq-top__slides { width: 100%; }
  .pq-top__text { font-size: 0.92rem; }
  .pq-top__cite { font-size: 0.64rem; }


  .pq-top__org { display: block; margin-top: 3px; }
  .pq-top__org::before { content: none; }
  .pq-top__nav { margin-left: -4px; }
}
@media (prefers-reduced-motion: reduce) {
  .pq-top__slide,
  .pq-top__slide.is-active,
  .pq-top__logo,
  .quotes-linked .pq-top__cite-link .pq-top__name,
  .quotes-linked .pq-top__cite-link > span:last-of-type::after,
  .pq-top__arrow,
  .pq-top__dots button::before { transition: none; }
}



body.hero-head-v2 .pq-top--band + .product-feature { padding-top: 40px; }



.pq-top--band .pq-top__slide { align-self: end; }






.pq-top--hero { display: none; }
@media (min-width: 1100px) {
  .pq-top--narrow { display: none; }
  .pq-top--hero {
    display: block;
    position: absolute;
    right: 48px;
    bottom: 106px;
    z-index: 3;
    width: min(350px, 27vw);
    max-width: none;
    margin: 0;
    padding: 0;
  }


  .pq-top--hero .pq-top__slides { display: block; position: relative; }
  .pq-top--hero .pq-top__slide { position: absolute; left: 0; right: 0; bottom: 0; }
  .pq-top--hero .pq-top__slide.is-active { position: relative; }
  .pq-top--hero .pq-top__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px 16px 10px;



    background: rgba(10, 12, 10, 0.16);
    -webkit-backdrop-filter: blur(2px) saturate(120%);
    backdrop-filter: blur(2px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
  }
  .pq-top--hero .pq-top__text { color: #fff; font-size: 0.84rem; line-height: 1.5; margin-bottom: 6px; max-width: none; }
  .pq-top--hero .pq-top__cite { color: rgba(255, 255, 255, 0.72); font-size: 0.56rem; }
  .pq-top--hero .pq-top__text,
  .pq-top--hero .pq-top__cite { text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75), 0 0 12px rgba(0, 0, 0, 0.5); }
  .pq-top--hero .pq-top__name { color: #fff; }
  .pq-top--hero .pq-top__org { color: rgba(255, 255, 255, 0.7); }
  .pq-top--hero .pq-top__nav { align-self: flex-start; margin-left: -6px; }
  .pq-top--hero .pq-top__arrow { color: rgba(255, 255, 255, 0.8); }
  .pq-top--hero .pq-top__arrow:hover { color: #fff; background-color: rgba(255, 255, 255, 0.12); border-color: transparent; }
  .pq-top--hero .pq-top__arrow:focus-visible,
  .pq-top--hero .pq-top__dots button:focus-visible { outline-color: #fff; }
  .pq-top--hero .pq-top__dots button::before { background: rgba(255, 255, 255, 0.4); }
  .pq-top--hero .pq-top__dots button:hover::before { background: rgba(255, 255, 255, 0.85); }
  .pq-top--hero .pq-top__dots button.is-active::before { background: #fff; }
  .quotes-linked .pq-top--hero .pq-top__slide:has(.pq-top__cite-link:focus-visible) { outline-color: #fff; }

  .pq-top--hero .pq-top__arrow { width: 24px; height: 24px; border-color: transparent; background-color: transparent; }
  .pq-top--hero .pq-top__arrow svg { width: 11px; height: 11px; }
  .pq-top--hero .pq-top__dots button { width: 12px; }
  .pq-top--hero .pq-top__dots button::before { width: 5px; height: 5px; }
}


.pq-top--hero .pq-top__org { display: block; margin-top: 3px; }
.pq-top--hero .pq-top__org::before { content: none; }










.pq-top__logo {
  max-height: 20px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;


  margin: 8px 0 0;
  transition: filter 0.3s ease, opacity 0.3s ease;
}





.quotes-linked .pq-top__slide:hover .pq-top__logo,
.quotes-linked .pq-top__cite-link:focus-visible .pq-top__logo { opacity: 1; }
.pq-top__logo--emblem { max-height: 33px; max-width: 66px; }






.pq-top--band .pq-top__logo { opacity: 0.9; }
@media (min-width: 1100px) {








  .pq-top--hero .pq-top__logo {
    filter: drop-shadow(0 1px 3px rgba(255, 255, 255, 0.75));
    opacity: 0.85;
  }
}
