@font-face {
  font-family: "Inter";
  src: url("/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #061f21;
  --ink-soft: #0b2b2d;
  --paper: #f3f4ef;
  --white: #ffffff;
  --accent: #ff5d49;
  --text: #08282a;
  --muted-dark: #a8b9b7;
  --muted-light: #5e7271;
  --line-dark: rgba(255, 255, 255, 0.15);
  --line-light: rgba(8, 40, 42, 0.18);
  --header-height: 72px;
  --page-pad: 40px;
  --max-width: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
video {
  font: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

img {
  object-fit: cover;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--text);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 230px 1fr 190px;
  align-items: stretch;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--ink);
  border-color: var(--line-dark);
}

.brand,
.header-cta {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand {
  gap: 12px;
  padding-inline: var(--page-pad);
  font-size: 15px;
  font-weight: 600;
}

.brand-mark {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0 7px;
  background: currentColor;
}

.brand-mark::after {
  transform: rotate(90deg);
}

.brand-mark {
  transform: rotate(45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  padding-inline: 32px;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a,
.header-cta,
.footer-links a,
.text-link {
  position: relative;
}

.site-nav a::after,
.footer-links a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .mobile-store-link {
  display: none;
}

.header-cta {
  justify-content: space-between;
  padding-inline: 24px var(--page-pad);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 500;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: currentColor;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 94svh;
  max-height: 980px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  display: contents;
}

.hero-image {
  object-position: center;
  filter: saturate(0.94) contrast(1.01);
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.54) 28%,
    rgba(0, 0, 0, 0.2) 46%,
    rgba(0, 0, 0, 0) 62%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 80px));
  margin: 52px auto 0;
  text-align: left;
  animation: hero-in 900ms var(--ease) both;
}

.hero-kicker,
.eyebrow,
.product-number {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 24px;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-size: 78px;
  line-height: 0.96;
  font-weight: 600;
}

.hero-content > p:not(.hero-kicker) {
  max-width: 560px;
  margin: 26px 0 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--text);
}

.button-accent {
  background: var(--accent);
  color: var(--white);
}

.text-link {
  font-size: 14px;
  font-weight: 500;
}

.text-link-light {
  color: var(--white);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 28px;
  left: var(--page-pad);
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 500;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.paths,
.story,
.catalog,
.reviews,
.how,
.faq,
.site-footer {
  padding-inline: var(--page-pad);
}

.paths,
.story,
.catalog,
.reviews,
.how,
.faq {
  padding-top: 120px;
  padding-bottom: 120px;
}

.paths,
.story,
.catalog,
.how {
  border-bottom: 1px solid var(--line-dark);
}

.section-heading,
.story-heading,
.catalog-heading,
.reviews-heading,
.how-heading,
.faq-heading,
.story-grid,
.path-grid,
.product-catalog,
.review-grid,
.steps,
.faq,
.footer-lead,
.footer-bottom {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.section-heading,
.story-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 40px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-dark);
}

.eyebrow-dark {
  color: var(--muted-light);
}

.mini-mark {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
}

.mini-mark::before,
.mini-mark::after {
  content: "";
  position: absolute;
  inset: 0 4px;
  background: var(--accent);
}

.mini-mark::after {
  transform: rotate(90deg);
}

.section-heading h2,
.story-heading h2,
.catalog-heading h2,
.reviews-heading h2,
.how-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: 58px;
  line-height: 0.98;
  font-weight: 600;
}

.section-heading h2,
.story-heading h2 {
  max-width: 820px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 72px;
}

.path-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.path-media {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}

.path-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 650ms var(--ease);
}

.path-media-lifestyle img {
  object-fit: cover;
}

.path-card:hover .path-media img,
.path-card:focus-visible .path-media img {
  transform: scale(1.035);
}

.path-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.path-card strong {
  margin-top: 12px;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}

.path-copy {
  max-width: 360px;
  margin-top: 12px;
  color: var(--muted-dark);
  font-size: 15px;
}

.story {
  padding-top: 136px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.75fr);
  align-items: end;
  gap: 54px;
  margin-top: 72px;
}

.story-image {
  min-width: 0;
  width: 100%;
  align-self: end;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.story-lead {
  margin: 0 0 40px;
  font-size: 20px;
  line-height: 1.45;
}

.wavelengths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.wavelengths > div {
  padding: 28px 0 30px;
}

.wavelengths > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line-dark);
}

.wavelengths strong,
.wavelengths span {
  display: block;
}

.wavelengths strong {
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
}

.wavelengths span {
  margin-top: 12px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.45;
}

.story-note {
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: 12px;
}

.catalog-heading,
.reviews-heading,
.how-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.catalog-heading h2,
.reviews-heading h2,
.how-heading h2 {
  max-width: 760px;
}

.catalog-heading p,
.reviews-heading > p:last-child,
.how-heading p {
  max-width: 430px;
  margin: 0 0 6px;
  color: var(--muted-dark);
}

.product-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 54px;
  row-gap: 40px;
  margin-top: 76px;
}

.product-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: stretch;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}

.product-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 60px;
  padding-top: 44px;
}

.product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-number {
  color: var(--muted-dark);
}

.product-copy h3 {
  margin: 18px 0 0;
  font-size: 31px;
  line-height: 1.02;
  font-weight: 600;
}

.product-card-wide .product-copy h3 {
  max-width: 520px;
  font-size: 50px;
}

.product-best,
.product-description {
  color: var(--muted-dark);
}

.product-best {
  margin: 14px 0 0;
  font-size: 14px;
}

.product-description {
  max-width: 540px;
  margin: 20px 0 0;
}

.product-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  width: 100%;
  margin: auto 0 26px;
  padding: 24px 0 0;
  list-style: none;
}

.product-copy li {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 500;
}

.product-copy li:last-child {
  border-right: 0;
}

.product-image {
  min-width: 0;
  width: 100%;
  align-self: start;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 600ms var(--ease);
}

.product-image-lifestyle img {
  object-fit: cover;
}

.product-image:hover img,
.product-image:focus-visible img {
  transform: scale(1.035);
}

.product-card-wide .product-image {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.reviews,
.faq {
  background: var(--paper);
  color: var(--text);
}

.reviews-heading {
  grid-template-columns: 210px minmax(0, 1fr) minmax(260px, 0.48fr);
  align-items: start;
  gap: 42px;
}

.reviews-heading > p:last-child {
  color: var(--muted-light);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
}

.review-card {
  min-width: 0;
}

.review-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000000;
}

.review-card-copy {
  padding: 20px 2px 0;
  border-top: 1px solid var(--line-light);
}

.review-card-copy > span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 500;
}

.review-card-copy h3 {
  max-width: 360px;
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 600;
}

.review-card-copy p {
  max-width: 390px;
  margin: 14px 0 0;
  color: var(--muted-light);
  font-size: 14px;
}

.review-disclaimer {
  width: min(100%, var(--max-width));
  margin: 18px auto 0;
  color: var(--muted-light);
  font-size: 11px;
}

.how-heading p {
  color: var(--muted-dark);
}

.how {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.how::before,
.how::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.how::before {
  z-index: -2;
  background: url("/caremorr-how-routine-banner.webp") center 62% / cover no-repeat;
}

.how::after {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(3, 22, 23, 0.84) 0%,
    rgba(3, 22, 23, 0.7) 46%,
    rgba(3, 22, 23, 0.58) 100%
  );
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 80px;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.steps li {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 36px;
}

.steps li + li {
  border-left: 1px solid var(--line-dark);
}

.steps li > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}

.steps h3 {
  margin: auto 0 14px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 600;
}

.steps p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 100px;
}

.faq-heading {
  width: auto;
  margin: 0;
}

.faq-heading h2 {
  margin-top: 28px;
  max-width: 520px;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 18px 2px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.faq-item summary span::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary span::after {
  transform: rotate(0deg);
}

.faq-item p {
  max-width: 680px;
  margin: -4px 0 26px;
  color: var(--muted-light);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-lead {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 40px;
  padding-top: 94px;
  padding-bottom: 94px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-lead > a {
  overflow-wrap: anywhere;
  font-size: 62px;
  line-height: 0.95;
  font-weight: 600;
}

.footer-lead > a:hover,
.footer-lead > a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 46px 40px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  font-size: 12px;
  font-weight: 500;
}

.disclaimer,
.copyright {
  margin: 0;
  color: var(--muted-dark);
  font-size: 10px;
}

.disclaimer {
  max-width: 680px;
}

.copyright {
  text-align: right;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 210px 1fr 170px;
  }

  .site-nav {
    gap: 20px;
    padding-inline: 20px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    aspect-ratio: 16 / 9;
  }

  .story-copy {
    max-width: 760px;
  }

  .product-card {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .product-card-wide {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .review-player {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  }

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

  .video-choice {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .video-choice img {
    width: 105px;
  }
}

@media (max-width: 920px) {
  :root {
    --page-pad: 28px;
  }

  .site-header {
    grid-template-columns: 190px 1fr 155px;
  }

  .site-nav {
    gap: 15px;
    font-size: 11px;
  }

  h1 {
    font-size: 68px;
  }

  .section-heading h2,
  .story-heading h2,
  .catalog-heading h2,
  .reviews-heading h2,
  .how-heading h2,
  .faq-heading h2 {
    font-size: 48px;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-grid,
  .review-player {
    grid-template-columns: 1fr;
  }

  .story-image {
    aspect-ratio: 16 / 9;
  }

  .story-copy {
    max-width: 700px;
  }

  .product-catalog {
    grid-template-columns: 1fr;
  }

  .product-card-wide {
    grid-column: auto;
  }

  .product-card,
  .product-card-wide {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .product-card-wide .product-copy h3 {
    font-size: 38px;
  }

  .product-card-wide .product-image {
    aspect-ratio: 1;
  }

  .video-playlist {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .video-choice {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .video-choice img {
    width: 100%;
  }

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

  .steps li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .steps li:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .faq-heading h2 {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --page-pad: 20px;
  }

  .site-header {
    grid-template-columns: 1fr 64px;
  }

  .brand {
    padding-inline: 20px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 64px;
    height: 64px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.is-open .menu-button span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .menu-button span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px 20px 28px;
    overflow-y: auto;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 19px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 26px;
  }

  .site-nav .mobile-store-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--accent);
  }

  .hero {
    min-height: 720px;
    height: 92svh;
    max-height: none;
    place-items: start stretch;
  }

  .hero-image {
    object-position: center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.66) 0%,
      rgba(0, 0, 0, 0.48) 25%,
      rgba(0, 0, 0, 0.16) 48%,
      rgba(0, 0, 0, 0) 68%
    );
  }

  .hero-content {
    position: absolute;
    inset: var(--header-height) 0 auto;
    width: auto;
    margin: 0;
    padding: 14px 20px 0;
    text-align: left;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 11px;
  }

  h1 {
    max-width: 540px;
    margin: 0;
    font-size: 40px;
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 350px;
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-actions {
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 16px;
    margin-top: 18px;
  }

  .hero-actions .button {
    width: auto;
    min-height: 44px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .hero-actions .text-link {
    font-size: 13px;
  }

  .hero-caption {
    display: none;
  }

  .paths,
  .story,
  .catalog,
  .reviews,
  .how,
  .faq {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading,
  .story-heading,
  .catalog-heading,
  .reviews-heading,
  .how-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading h2,
  .story-heading h2,
  .catalog-heading h2,
  .reviews-heading h2,
  .how-heading h2,
  .faq-heading h2 {
    font-size: 42px;
  }

  .path-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    margin-top: 52px;
  }

  .path-media {
    aspect-ratio: 1;
  }

  .path-card strong {
    font-size: 36px;
  }

  .story {
    padding-top: 90px;
  }

  .story-grid {
    gap: 34px;
    margin-top: 48px;
  }

  .story-image {
    aspect-ratio: 4 / 3;
  }

  .story-lead {
    margin-bottom: 30px;
    font-size: 18px;
  }

  .wavelengths {
    grid-template-columns: 1fr;
  }

  .wavelengths > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .catalog-heading,
  .reviews-heading,
  .how-heading {
    align-items: start;
  }

  .product-catalog {
    gap: 58px;
    margin-top: 54px;
  }

  .product-card,
  .product-card-wide {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .product-card .product-image,
  .product-card-wide .product-image {
    order: -1;
    aspect-ratio: 1;
  }

  .product-card-wide .product-copy h3 {
    font-size: 34px;
  }

  .product-copy ul {
    margin: 10px 0 26px;
  }

  .reviews-heading > p:last-child,
  .catalog-heading p,
  .how-heading p {
    margin: 0;
  }

  .review-player {
    gap: 20px;
    margin-top: 48px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
  }

  .video-playlist {
    grid-template-columns: 1fr;
  }

  .video-choice {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .video-choice img {
    width: 120px;
  }

  .steps {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .steps li {
    min-height: 230px;
    padding: 26px 6px 30px;
  }

  .steps li + li,
  .steps li:nth-child(3),
  .steps li:nth-child(4) {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .faq {
    gap: 44px;
  }

  .faq-heading h2 {
    margin-top: 20px;
  }

  .footer-lead {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .footer-lead > a {
    font-size: 40px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 38px;
  }

  .section-heading h2,
  .story-heading h2,
  .catalog-heading h2,
  .reviews-heading h2,
  .how-heading h2,
  .faq-heading h2 {
    font-size: 38px;
  }

  .hero-caption span:last-child {
    display: none;
  }

  .video-choice {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .video-choice img {
    width: 104px;
  }

  .footer-lead > a {
    font-size: 32px;
  }
}

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