.blends-page {
  background: var(--paper);
}

.blends-page .site-header {
  background: rgb(245 243 240 / 86%);
}

.blends-page .main-nav a.active {
  color: var(--violet-dark);
  font-weight: 700;
}

.blends-page main {
  overflow: hidden;
}

/* Hero */
.blends-page-hero {
  --blend-hero-accent: #3f9488;
  position: relative;
  min-height: 760px;
  padding-top: var(--header-height);
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background: #f5f8f7 url("../images/regenerative-system.png") center / cover no-repeat;
}

.blends-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(247 249 248 / 98%) 0 29%, rgb(247 249 248 / 86%) 43%, rgb(247 249 248 / 31%) 65%, rgb(247 249 248 / 4%) 84%),
    linear-gradient(180deg, rgb(247 249 248 / 10%), transparent 56%, rgb(236 245 243 / 25%));
  pointer-events: none;
}

.blends-page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -10% -44% auto;
  width: min(62vw, 900px);
  aspect-ratio: 1.2;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--blend-hero-accent) 20%, transparent) 0, transparent 68%);
  filter: blur(14px);
  opacity: .5;
  transition: background 600ms ease;
  pointer-events: none;
}

.blends-page-hero-inner {
  min-height: calc(760px - var(--header-height));
  padding-block: 48px 32px;
  display: grid;
  align-items: center;
  gap: 12px;
}

.blends-page-hero-copy {
  position: relative;
  z-index: 2;
}

.blends-breadcrumb {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgb(26 39 38 / 58%);
  font-size: .53rem;
}

.blends-breadcrumb a {
  transition: color var(--transition);
}

.blends-breadcrumb a:hover {
  color: var(--ink);
}

.blends-page-hero-copy .eyebrow {
  color: color-mix(in srgb, var(--blend-hero-accent) 78%, var(--ink));
}

.blends-page-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(3.7rem, 14vw, 6.5rem);
  text-shadow: 0 12px 42px rgb(255 255 255 / 66%);
  text-wrap: balance;
}

.blends-page-hero-description {
  max-width: 510px;
  margin-bottom: 26px;
  color: #3e4747;
  font-size: clamp(.76rem, 1.5vw, .9rem);
}

.blends-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 23px;
}

.blends-page-hero-actions .button-dark {
  color: white;
  background: var(--ink);
}

.blends-page-hero-actions .button-dark:hover,
.blends-page-hero-actions .button-dark:focus-visible {
  color: white;
  border-color: var(--blend-hero-accent);
  background: var(--blend-hero-accent);
}

.blends-page-hero-actions .text-link {
  color: var(--ink);
}

.blends-page-metrics {
  max-width: 590px;
  margin: 34px 0 0;
  padding-top: 19px;
  border-top: 1px solid rgb(30 56 54 / 16%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blends-page-metrics > div {
  min-width: 0;
  padding-right: 10px;
  border-right: 1px solid rgb(30 56 54 / 13%);
}

.blends-page-metrics > div:not(:first-child) {
  padding-left: 12px;
}

.blends-page-metrics > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.blends-page-metrics dt {
  color: color-mix(in srgb, var(--blend-hero-accent) 82%, var(--ink));
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7vw, 2.6rem);
  line-height: .9;
}

.blends-page-metrics dd {
  margin: 8px 0 0;
  color: rgb(30 49 47 / 62%);
  font-size: clamp(.4rem, 1.55vw, .5rem);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.blends-page-hero-visual {
  position: relative;
  z-index: 2;
  width: min(68vw, 250px);
  margin-inline: auto;
  align-self: end;
  justify-self: center;
  isolation: isolate;
}

.blends-hero-product-glow {
  position: absolute;
  z-index: -1;
  inset: 17% 1% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 255 255 / 78%) 0 24%, color-mix(in srgb, var(--blend-hero-accent) 20%, transparent) 50%, transparent 72%);
  filter: blur(24px);
  transition: background 600ms ease;
}

.blends-hero-product-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
}

.blends-hero-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(18px, 0, 0) scale(calc(var(--blend-product-scale, 1) * .975));
  filter: drop-shadow(0 30px 28px rgb(33 54 51 / 22%));
  transition: opacity 520ms ease, transform 650ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}

.blends-hero-product-image.is-active {
  z-index: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(var(--blend-product-scale, 1));
}

.blends-hero-carousel-dots {
  position: relative;
  z-index: 4;
  min-height: 44px;
  margin-top: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.blends-hero-carousel-dot {
  position: relative;
  width: 40px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.blends-hero-carousel-dot::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 6px;
  height: 6px;
  border: 1px solid rgb(30 56 54 / 44%);
  border-radius: 50%;
  background: rgb(255 255 255 / 48%);
  transform: translate(-50%, -50%);
  transition: width 250ms ease, background 250ms ease, border-color 250ms ease;
}

.blends-hero-carousel-dot:hover::before,
.blends-hero-carousel-dot:focus-visible::before {
  background: rgb(30 56 54 / 42%);
}

.blends-hero-carousel-dot:focus-visible {
  outline: 2px solid var(--blend-hero-accent);
  outline-offset: -7px;
  border-radius: 999px;
}

.blends-hero-carousel-dot[aria-pressed="true"]::before {
  width: 20px;
  border-radius: 999px;
  border-color: color-mix(in srgb, var(--dot-color) 76%, white);
  background: var(--dot-color);
}

/* Editorial introduction */
.blends-intro {
  border-block: 1px solid var(--line);
  background: #f9f8f6;
}

.blends-intro-grid {
  padding-block: 68px;
  display: grid;
  gap: 29px;
}

.blends-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.1rem, 11vw, 5.8rem);
}

.blends-intro-copy {
  align-self: end;
}

.blends-intro-copy > p {
  max-width: 620px;
  margin-bottom: 23px;
  color: #5a5b61;
  font-size: .74rem;
}

/* Collection */
.blends-collection {
  padding: 82px 0 94px;
  background: var(--paper);
}

.blends-section-heading {
  margin-bottom: 36px;
  display: grid;
  gap: 22px;
}

.blends-section-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 6rem);
}

.blends-section-heading > p {
  max-width: 550px;
  margin: 0;
  color: #606167;
  font-size: .7rem;
}

.blends-page-grid {
  display: grid;
  align-items: stretch;
  gap: 14px;
}

.blend-page-card {
  --blend-accent: var(--violet);
  position: relative;
  min-width: 0;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  color: var(--ink);
  background: linear-gradient(150deg, color-mix(in srgb, var(--blend-accent) 6%, white), #eeece9);
  text-align: left;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.blend-page-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  height: 3px;
  background: var(--blend-accent);
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform var(--transition);
}

.blend-page-card:hover,
.blend-page-card:focus-visible {
  border-color: color-mix(in srgb, var(--blend-accent) 58%, var(--line));
  background: white;
  box-shadow: 0 25px 58px rgb(27 28 34 / 10%);
  transform: translateY(-5px);
}

.blend-page-card:hover::before,
.blend-page-card:focus-visible::before {
  transform: scaleX(1);
}

.blend-card-visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-bottom: 1px solid rgb(16 17 22 / 8%);
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 38%);
}

.blend-card-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 25%;
  background: linear-gradient(transparent, rgb(238 236 233 / 52%));
  pointer-events: none;
}

.blend-card-visual img {
  width: min(100%, 255px);
  height: 230px;
  object-fit: contain;
  transition: transform 500ms cubic-bezier(.2, .72, .2, 1);
}

.blend-page-card:hover .blend-card-visual img,
.blend-page-card:focus-visible .blend-card-visual img {
  transform: scale(1.025);
}

.blend-card-index {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 18px;
  color: rgb(16 17 22 / 35%);
  font-size: .47rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.blend-card-open {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 15px;
  width: 36px;
  height: 36px;
  border: 1px solid rgb(16 17 22 / 12%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 76%);
  font-size: .85rem;
  opacity: .78;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.blend-page-card:hover .blend-card-open,
.blend-page-card:focus-visible .blend-card-open {
  color: white;
  background: var(--blend-accent);
  transform: rotate(8deg);
}

.blend-card-copy {
  min-height: 0;
  padding: 21px 20px 20px;
  display: flex;
  flex-direction: column;
}

.blend-card-systems {
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.blend-card-systems span {
  padding: 4px 7px;
  border: 1px solid color-mix(in srgb, var(--system-color) 32%, var(--line));
  border-radius: 999px;
  color: color-mix(in srgb, var(--system-color) 80%, #17181d);
  background: color-mix(in srgb, var(--system-color) 5%, white);
  font-size: .43rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blend-card-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 8vw, 3rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.035em;
}

.blend-card-dose {
  margin-top: 5px;
  color: var(--blend-accent);
  font-size: .56rem;
  font-weight: 700;
}

.blend-card-composition {
  margin: 16px 0 11px;
  padding: 10px 0;
  border-block: 1px solid rgb(16 17 22 / 9%);
  color: #303137;
  font-size: .58rem;
  font-weight: 600;
  line-height: 1.55;
}

.blend-card-description {
  margin: 0;
  color: #68696f;
  font-size: .57rem;
  line-height: 1.65;
}

.blend-card-detail-link {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blend-accent);
  font-size: .52rem;
  font-weight: 700;
}

.blend-card-detail-link span:last-child {
  font-size: .83rem;
  transition: transform var(--transition);
}

.blend-page-card:hover .blend-card-detail-link span:last-child {
  transform: translateX(4px);
}

.blends-noscript {
  padding: 25px;
  border: 1px solid var(--line);
  background: white;
}

/* Principles */
.blends-principles {
  padding: 78px 0 90px;
  border-top: 1px solid var(--line);
  background: #f9f8f6;
}

.blends-principles-heading {
  margin-bottom: 31px;
}

.blends-principles-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 5.2rem);
}

.blends-principles-grid {
  display: grid;
  gap: 9px;
}

.blends-principles-grid article {
  min-height: 188px;
  padding: 25px 23px;
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 52%);
}

.blends-principles-grid article > span {
  color: var(--violet);
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.blends-principles-grid h3 {
  margin: 39px 0 8px;
  font-family: var(--font-body);
  font-size: .72rem;
}

.blends-principles-grid p {
  max-width: 390px;
  margin: 0;
  color: #67686e;
  font-size: .59rem;
}

/* Related systems */
.blends-related-systems {
  padding: 84px 0 96px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgb(96 81 167 / 24%), transparent 30%),
    linear-gradient(140deg, #111521, #080b11);
}

.blends-section-heading-light .eyebrow {
  color: #b9afea;
}

.blends-section-heading-light h2 {
  color: white;
}

.blends-section-heading-light > p {
  color: rgb(255 255 255 / 55%);
}

.blends-system-grid {
  display: grid;
  gap: 8px;
}

.blend-system-card {
  --system-accent: #8f81d5;
  position: relative;
  min-height: 154px;
  padding: 19px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgb(255 255 255 / 4%);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.blend-system-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--system-accent);
}

.blend-system-card:hover,
.blend-system-card:focus-visible {
  border-color: color-mix(in srgb, var(--system-accent) 65%, transparent);
  background: rgb(255 255 255 / 8%);
  transform: translateY(-3px);
}

.blend-system-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.blend-system-card-code {
  color: var(--system-accent);
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: .8;
}

.blend-system-card-arrow {
  color: rgb(255 255 255 / 39%);
  font-size: .86rem;
}

.blend-system-card strong {
  color: white;
  font-size: .65rem;
}

.blend-system-card small {
  margin-top: 3px;
  color: rgb(255 255 255 / 44%);
  font-size: .48rem;
}

.blends-page .precision-cta {
  border-radius: 0;
}

.blends-page .precision-inner > div {
  max-width: 840px;
}

.blends-footer-main {
  grid-template-columns: 1fr;
}

.footer-link-active {
  color: white;
  font-weight: 700;
}

/* Accessible blend detail modal */
.blend-modal {
  position: fixed;
  z-index: 450;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.blend-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.blend-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(6 8 13 / 72%);
  backdrop-filter: blur(10px);
}

.blend-modal-dialog {
  --modal-accent: var(--violet);
  position: relative;
  width: min(calc(100% - 16px), 1120px);
  height: min(calc(100dvh - 16px), 820px);
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(210px, 31%) minmax(0, 69%);
  color: var(--ink);
  background: #f8f7f4;
  border: 1px solid rgb(255 255 255 / 39%);
  border-radius: 16px;
  box-shadow: 0 45px 130px rgb(0 0 0 / 38%);
  transform: translateY(16px) scale(.985);
  transition: transform 260ms cubic-bezier(.2, .72, .2, 1);
}

.blend-modal.open .blend-modal-dialog {
  transform: none;
}

.blend-modal-close {
  position: absolute;
  z-index: 7;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgb(16 17 22 / 13%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgb(255 255 255 / 83%);
  backdrop-filter: blur(9px);
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.blend-modal-close:hover {
  color: white;
  background: var(--ink);
  transform: rotate(7deg);
}

.blend-modal-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--modal-accent) 13%, white), transparent 38%),
    linear-gradient(145deg, #fff, #eceae7);
}

.blend-modal-stage::before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--modal-accent) 25%, transparent);
  border-radius: 50%;
}

.blend-modal-stage img {
  position: relative;
  z-index: 2;
  width: min(62%, 240px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgb(20 22 28 / 12%));
}

.blend-modal-system-mark {
  position: absolute;
  z-index: 1;
  top: 26px;
  left: 25px;
  color: color-mix(in srgb, var(--modal-accent) 72%, #11131a);
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 8rem);
  line-height: .8;
  opacity: .11;
}

.blend-modal-stage > p {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 17px;
  margin: 0;
  display: flex;
  gap: 10px;
  color: #717278;
  font-size: .42rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.blend-modal-content {
  min-height: 0;
  background: #faf9f7;
}

.blend-modal-scroll {
  height: 100%;
  padding: 32px 22px 41px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.blend-modal-breadcrumb {
  padding-right: 48px;
  margin-bottom: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #87888d;
  font-size: .49rem;
}

.blend-modal-breadcrumb i {
  font-style: normal;
}

.blend-modal-breadcrumb strong {
  color: var(--ink);
}

.blend-modal-system {
  margin-bottom: 4px;
  color: var(--modal-accent);
  font-size: .58rem;
  font-weight: 700;
}

.blend-modal-content h2 {
  margin-bottom: 4px;
  font-size: clamp(3.2rem, 13vw, 6.5rem);
  overflow-wrap: anywhere;
}

.blend-modal-content h2.compact-title {
  font-size: clamp(2.7rem, 10vw, 5rem);
}

.blend-modal-dose {
  margin-bottom: 14px;
  color: #292b31;
  font-size: .72rem;
  font-weight: 600;
}

.blend-modal-description {
  max-width: 720px;
  margin-bottom: 25px;
  color: #55575e;
  font-size: .68rem;
  line-height: 1.75;
}

.blend-modal-section-title {
  margin-bottom: 11px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.blend-modal-section-title .eyebrow {
  margin: 0;
}

.blend-modal-section-title > span {
  color: #8a8b90;
  font-size: .46rem;
}

.blend-modal-composition {
  margin-bottom: 25px;
}

.blend-modal-composition ol {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.blend-modal-composition li {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-bottom: 0;
  display: grid;
  grid-template-columns: 29px 1fr;
  align-items: center;
  gap: 9px;
  background: color-mix(in srgb, var(--modal-accent) 4%, white);
  font-size: .62rem;
  font-weight: 600;
}

.blend-modal-composition li:last-child {
  border-bottom: 1px solid var(--line);
}

.blend-modal-composition li span:first-child {
  color: var(--modal-accent);
  font-size: .45rem;
  font-weight: 700;
}

.blend-modal-systems {
  margin-bottom: 25px;
}

.blend-modal-systems > div {
  display: grid;
  gap: 7px;
}

.blend-modal-system-link {
  --system-accent: var(--violet);
  min-height: 57px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  background: rgb(255 255 255 / 53%);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.blend-modal-system-link:hover {
  border-color: var(--system-accent);
  background: white;
  transform: translateY(-2px);
}

.blend-modal-system-link > span:first-child {
  color: var(--system-accent);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: .8;
}

.blend-modal-system-link strong {
  font-size: .58rem;
}

.blend-modal-system-link small {
  display: block;
  color: #7a7b80;
  font-size: .46rem;
}

.blend-modal-system-link > span:last-child {
  color: var(--system-accent);
  font-size: .85rem;
}

.blend-modal-specs {
  margin: 0 0 27px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.blend-modal-specs > div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 52%);
}

.blend-modal-specs dt {
  color: #797a80;
  font-size: .44rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.blend-modal-specs dd {
  margin: 4px 0 0;
  color: #202127;
  font-size: .56rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.blend-modal-actions {
  margin-bottom: 31px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.blend-modal-related {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.blend-modal-related > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.blend-modal-related-card {
  --related-accent: var(--violet);
  min-width: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: rgb(255 255 255 / 52%);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.blend-modal-related-card:hover {
  border-color: var(--related-accent);
  background: white;
  transform: translateY(-2px);
}

.blend-modal-related-card img {
  width: 54px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
}

.blend-modal-related-card strong {
  display: block;
  font-size: .51rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.blend-modal-related-card small {
  color: #74757a;
  font-size: .44rem;
}

.blend-modal-notice {
  margin: 24px 0 0;
  color: #8a8b90;
  font-size: .47rem;
  line-height: 1.65;
}

/* Progressive reveal: content remains visible if JavaScript is unavailable. */
html.blend-motion-ready [data-blend-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

html.blend-motion-ready [data-blend-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (min-width: 600px) {
  .blends-page-hero-inner {
    padding-block: 56px 44px;
  }

  .blends-page-hero-copy h1 {
    font-size: clamp(4.8rem, 12vw, 6.5rem);
  }

  .blends-page-hero-visual {
    width: min(44vw, 290px);
  }

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

  .blend-page-card {
    min-height: 560px;
  }

  .blend-card-visual,
  .blend-card-visual img {
    height: 240px;
  }

  .blends-principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .blends-footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blends-footer-main .footer-brand {
    grid-column: 1 / -1;
  }

  .blend-modal-scroll {
    padding: 41px 38px 48px;
  }

  .blend-modal-composition ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .blend-modal-composition li,
  .blend-modal-composition li:last-child {
    border: 1px solid var(--line);
  }

  .blend-modal-systems > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blend-modal-specs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .blend-modal-related > div:last-child {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 800px) {
  .blends-page-hero-inner {
    min-height: calc(760px - var(--header-height));
    padding-block: 72px 68px;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .62fr);
    gap: clamp(36px, 5vw, 72px);
  }

  .blends-page-hero-copy h1 {
    font-size: clamp(4.7rem, 7.3vw, 6.5rem);
  }

  .blends-page-hero-visual {
    width: min(27vw, 340px);
    align-self: center;
    justify-self: end;
  }

  .blends-intro-grid {
    padding-block: 84px;
    grid-template-columns: 1.16fr .84fr;
    align-items: end;
    gap: 60px;
  }

  .blends-section-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .blends-principles-grid article {
    min-height: 220px;
  }

  .blend-modal-dialog {
    height: min(calc(100dvh - 40px), 820px);
    grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
    grid-template-rows: 1fr;
  }

  .blend-modal-scroll {
    padding: 53px 47px 54px;
  }

  .blend-modal-stage img {
    width: min(68%, 340px);
  }

  .blend-modal-system-mark {
    top: 40px;
    left: 38px;
  }

  .blend-modal-stage > p {
    left: 36px;
    bottom: 26px;
  }
}

@media (min-width: 1060px) {
  .blends-page .main-nav {
    gap: clamp(17px, 2vw, 30px);
  }

  .blends-page-hero {
    min-height: 760px;
  }

  .blends-page-hero-inner {
    min-height: calc(760px - var(--header-height));
  }

  .blends-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blend-page-card {
    min-height: 584px;
  }

  .blend-card-visual,
  .blend-card-visual img {
    height: 260px;
  }

  .blends-system-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .blends-footer-main {
    grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
  }

  .blends-footer-main .footer-brand {
    grid-column: auto;
  }
}

@media (min-width: 1360px) {
  .blends-page-hero-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .58fr);
  }

  .blends-page-hero-visual {
    width: min(24vw, 350px);
  }

  .blend-page-card {
    min-height: 584px;
  }

  .blend-card-copy {
    padding: 26px 25px 24px;
  }
}

@media (max-width: 799px) {
  .blends-page-hero {
    min-height: 0;
    background-position: 74% center;
  }

  .blends-page-hero::before {
    background:
      linear-gradient(180deg, rgb(247 249 248 / 98%) 0 43%, rgb(247 249 248 / 91%) 56%, rgb(247 249 248 / 38%) 78%, rgb(247 249 248 / 8%) 100%),
      linear-gradient(90deg, rgb(247 249 248 / 48%), transparent 76%);
  }

  .blends-page-hero::after {
    inset: auto -42% -18% auto;
    width: 118vw;
  }

  .blends-page-hero-inner {
    min-height: 0;
  }
}

@media (max-width: 599px) {
  .blends-page-hero-inner {
    padding-block: 44px 26px;
  }

  .blends-page-hero-copy h1 br:last-of-type {
    display: none;
  }

  .blends-page-hero-actions .text-link {
    min-height: 44px;
  }

  .blends-page-hero-visual {
    width: min(62vw, 230px);
  }

  .blends-hero-carousel-dots {
    margin-top: -8px;
  }

  .blend-modal-stage > p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.blend-motion-ready [data-blend-reveal] {
    opacity: 1;
    transform: none;
  }

  .blends-hero-product-image {
    transition: none;
    transform: none;
  }

  .blends-hero-product-image.is-active {
    transform: none;
  }
}
