.htr-page {
  --htr-ink: #091720;
  --htr-ink-soft: #142d39;
  --htr-copy: #314b58;
  --htr-muted: #687e89;
  --htr-teal: #176d73;
  --htr-teal-bright: #42a1a0;
  --htr-teal-pale: #dff0ef;
  --htr-copper: #bd642f;
  --htr-copper-pale: #fff0e5;
  --htr-paper: #f5f8f8;
  --htr-line: #b9ccd0;
  --htr-white: #fff;
  overflow-x: clip;
  background: var(--htr-paper);
  color: var(--htr-ink);
}

.htr-page main {
  min-width: 0;
  overflow: clip;
}

.htr-page main > *,
.htr-page main > * > *,
.htr-hero-grid > *,
.htr-choice-grid > *,
.htr-boundary-grid > *,
.htr-reel-grid > *,
.htr-video-grid > *,
.htr-quote-grid > * {
  min-width: 0;
}

.htr-page main [id] {
  scroll-margin-top: 144px;
}

.htr-page h1,
.htr-page h2,
.htr-page h3 {
  color: var(--htr-ink);
  text-wrap: balance;
}

.htr-page h1 {
  overflow-wrap: normal;
  hyphens: none;
  word-break: normal;
}

.htr-page h2,
.htr-page h3,
.htr-page p,
.htr-page li,
.htr-page dd {
  overflow-wrap: anywhere;
}

.htr-page h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.45vw, 4.55rem);
  letter-spacing: -.055em;
  line-height: .97;
}

.htr-page h3 {
  line-height: 1.18;
}

.htr-page p {
  color: var(--htr-copy);
  line-height: 1.68;
}

.htr-page figure {
  margin: 0;
}

.htr-page figure img,
.htr-layout-card img,
.htr-video-trigger img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.htr-page a:focus-visible,
.htr-page button:focus-visible,
.htr-page summary:focus-visible,
.htr-page input:focus-visible,
.htr-page textarea:focus-visible,
.htr-page select:focus-visible,
.htr-table-wrap:focus-visible {
  outline: 3px solid var(--htr-teal-bright);
  outline-offset: 3px;
}

.htr-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 108px) 0 clamp(70px, 8vw, 122px);
  border-bottom: 1px solid var(--htr-line);
  background:
    radial-gradient(circle at 84% 13%, rgba(189, 100, 47, .2), transparent 27%),
    radial-gradient(circle at 70% 78%, rgba(66, 161, 160, .17), transparent 30%),
    linear-gradient(138deg, #fafcfc 0%, #eef5f4 55%, #d9e9e8 100%);
}

.htr-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 109, 115, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 109, 115, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 70%);
  pointer-events: none;
}

.htr-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  grid-template-areas:
    "copy visual"
    "facts visual";
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}

.htr-hero-copy {
  grid-area: copy;
}

.htr-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--htr-muted);
  font-size: .72rem;
  font-weight: 780;
}

.htr-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.htr-breadcrumb a:hover {
  color: var(--htr-teal);
}

.htr-hero h1 {
  max-width: 850px;
  margin-bottom: 25px;
  font-size: clamp(3rem, 5.85vw, 6.35rem);
  letter-spacing: -.069em;
  line-height: .9;
}

.htr-hero-lead {
  max-width: 780px;
  margin-bottom: 29px;
  font-size: clamp(1.03rem, 1.35vw, 1.24rem);
}

.htr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.htr-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--htr-teal);
  color: var(--htr-teal);
  font-size: .78rem;
  font-weight: 860;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.htr-button.is-primary {
  background: var(--htr-teal);
  color: #fff;
}

.htr-button:hover {
  transform: translateY(-2px);
}

.htr-hero-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 29px 0 0;
  border: 1px solid var(--htr-line);
  background: var(--htr-line);
}

.htr-hero-facts div {
  min-width: 0;
  padding: 16px 17px;
  background: rgba(255, 255, 255, .85);
}

.htr-hero-facts dt {
  margin-bottom: 6px;
  color: var(--htr-muted);
  font-size: .62rem;
  font-weight: 860;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.htr-hero-facts dd {
  margin: 0;
  color: var(--htr-ink);
  font-size: .94rem;
  font-weight: 860;
  line-height: 1.35;
}

.htr-hero-figure,
.htr-figure {
  overflow: hidden;
  border: 1px solid var(--htr-line);
  background: #fff;
  box-shadow: 0 26px 72px rgba(12, 54, 58, .14);
}

.htr-hero-figure {
  grid-area: visual;
}

.htr-hero-figure figcaption,
.htr-figure figcaption {
  display: grid;
  gap: 7px;
  padding: 16px 18px 19px;
  border-top: 1px solid var(--htr-line);
  background: #fff;
}

.htr-hero-figure figcaption span,
.htr-figure figcaption span {
  color: var(--htr-teal);
  font-size: .63rem;
  font-weight: 860;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.htr-hero-figure figcaption strong,
.htr-figure figcaption strong {
  line-height: 1.42;
}

.htr-section-nav {
  position: sticky;
  z-index: 60;
  top: 74px;
  border-bottom: 1px solid var(--htr-line);
  background: rgba(247, 250, 250, .97);
  backdrop-filter: blur(14px);
}

.htr-section-nav .st-shell {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
}

.htr-section-nav a {
  display: inline-flex;
  min-height: 50px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--htr-line);
  color: var(--htr-copy);
  font-size: .68rem;
  font-weight: 830;
  text-decoration: none;
  white-space: nowrap;
}

.htr-section-nav a:first-child {
  border-left: 1px solid var(--htr-line);
}

.htr-section-nav a:hover,
.htr-section-nav a:focus-visible {
  background: var(--htr-teal-pale);
  color: var(--htr-teal);
}

.htr-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: end;
  gap: clamp(28px, 5vw, 78px);
  margin-bottom: clamp(36px, 5vw, 66px);
}

.htr-section-head > * {
  min-width: 0;
}

.htr-section-head h2,
.htr-section-head > p {
  margin-bottom: 0;
}

.htr-choice {
  background: #fff;
}

.htr-choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr);
  align-items: start;
  gap: clamp(36px, 6vw, 88px);
}

.htr-choice-copy > p {
  max-width: 750px;
}

.htr-check-list {
  display: grid;
  gap: 1px;
  margin: 30px 0 0;
  padding: 1px;
  background: var(--htr-line);
  list-style: none;
}

.htr-check-list li {
  padding: 16px 18px;
  background: var(--htr-paper);
  color: var(--htr-copy);
  line-height: 1.55;
}

.htr-check-list strong {
  color: var(--htr-ink);
}

.htr-note {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 5px solid var(--htr-copper);
  background: var(--htr-copper-pale);
}

.htr-note strong {
  line-height: 1.42;
}

.htr-note span {
  color: var(--htr-copy);
  font-size: .86rem;
  line-height: 1.58;
}

.htr-choice-figure {
  position: sticky;
  top: 150px;
}

.htr-principle {
  background: var(--htr-paper);
}

.htr-principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.htr-principle-grid .htr-figure,
.htr-model-visuals .htr-figure {
  box-shadow: 0 18px 48px rgba(12, 54, 58, .1);
}

.htr-sensing {
  background: var(--htr-ink);
}

.htr-sensing .st-kicker {
  color: #7fd1ce;
}

.htr-sensing .htr-section-head h2 {
  color: #fff;
}

.htr-sensing .htr-section-head > p {
  color: #b7cbd0;
}

.htr-sensing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #35525c;
  background: #35525c;
}

.htr-sensing-card {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr);
  min-width: 0;
  align-items: center;
  background: var(--htr-ink-soft);
}

.htr-sensing-card .htr-figure {
  align-self: center;
  border: 0;
  box-shadow: none;
}

.htr-sensing-card .htr-figure img {
  height: auto;
}

.htr-sensing-card > div {
  padding: clamp(24px, 3vw, 38px);
}

.htr-sensing-card > div > span {
  display: block;
  margin-bottom: 16px;
  color: #7fd1ce;
  font-size: .65rem;
  font-weight: 860;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.htr-sensing-card h3 {
  margin-bottom: 11px;
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.htr-sensing-card p {
  margin: 0;
  color: #b7cbd0;
  font-size: .9rem;
}

.htr-models {
  background: var(--htr-teal-pale);
}

.htr-model-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.htr-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--htr-line);
  background: #fff;
  box-shadow: 0 22px 58px rgba(12, 54, 58, .1);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.htr-table-wrap table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--htr-ink);
  font-variant-numeric: tabular-nums;
}

.htr-table-wrap caption {
  padding: 18px 20px;
  border-bottom: 1px solid var(--htr-line);
  background: #fff;
  color: var(--htr-copy);
  font-size: .82rem;
  font-weight: 780;
  text-align: left;
}

.htr-table-wrap th,
.htr-table-wrap td {
  padding: 17px 18px;
  border-right: 1px solid var(--htr-line);
  border-bottom: 1px solid var(--htr-line);
  line-height: 1.46;
  text-align: left;
  vertical-align: top;
}

.htr-table-wrap tr > *:last-child {
  border-right: 0;
}

.htr-table-wrap tbody tr:last-child > * {
  border-bottom: 0;
}

.htr-table-wrap thead th {
  background: var(--htr-ink);
  color: #fff;
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.htr-table-wrap tbody th {
  width: 34%;
  background: #edf5f4;
  color: var(--htr-ink);
}

.htr-table-wrap tbody td {
  width: 33%;
  background: #fff;
  color: var(--htr-copy);
}

.htr-boundary {
  background: #fff;
}

.htr-boundary-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(38px, 6vw, 88px);
}

.htr-boundary-copy {
  position: sticky;
  top: 150px;
}

.htr-boundary-copy > p {
  max-width: 580px;
}

.htr-boundary-copy .htr-figure {
  margin-top: 28px;
  box-shadow: 0 18px 48px rgba(12, 54, 58, .1);
}

.htr-boundary-cards {
  display: grid;
  gap: 18px;
}

.htr-boundary-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--htr-line);
  background: var(--htr-paper);
}

.htr-boundary-card.is-standard {
  border-top: 7px solid var(--htr-teal);
  background: var(--htr-teal-pale);
}

.htr-boundary-card.is-project {
  border-top: 7px solid var(--htr-copper);
  background: var(--htr-copper-pale);
}

.htr-boundary-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--htr-teal);
  font-size: .67rem;
  font-weight: 880;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.htr-boundary-card.is-project > span {
  color: #944619;
}

.htr-boundary-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.htr-boundary-card ul,
.htr-quote-copy ul,
.htr-video-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--htr-copy);
  line-height: 1.55;
}

.htr-boundary-card p {
  margin: 20px 0 0;
  font-size: .86rem;
}

.htr-boundary-figure {
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(148, 70, 25, .28);
  background: #fff;
}

.htr-boundary-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.htr-boundary-figure figcaption {
  padding: 14px 16px;
  border-top: 1px solid rgba(148, 70, 25, .2);
  color: var(--htr-copy);
  font-size: .8rem;
  font-weight: 760;
  line-height: 1.5;
}

.htr-reel {
  background: var(--htr-paper);
}

.htr-reel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
}

.htr-reel-grid.is-text-only {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.htr-reel-grid > .htr-figure {
  box-shadow: 0 20px 55px rgba(12, 54, 58, .11);
}

.htr-reel-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  border: 1px solid var(--htr-line);
  background: var(--htr-line);
}

.htr-reel-data div {
  padding: 17px 18px;
  background: #fff;
}

.htr-reel-data dt {
  margin-bottom: 7px;
  color: var(--htr-teal);
  font-size: .65rem;
  font-weight: 860;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.htr-reel-data dd {
  margin: 0;
  color: var(--htr-copy);
  font-size: .84rem;
  line-height: 1.52;
}

.htr-layout {
  background: var(--htr-ink);
}

.htr-layout .st-kicker {
  color: #7fd1ce;
}

.htr-layout .htr-section-head h2 {
  color: #fff;
}

.htr-layout .htr-section-head > p {
  color: #b7cbd0;
}

.htr-layout-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #35525c;
  background: #35525c;
}

.htr-layout-card {
  min-width: 0;
  background: var(--htr-ink-soft);
}

.htr-layout-card figure {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #fff;
}

.htr-layout-card img {
  height: 100%;
}

.htr-layout-card > div {
  padding: 22px 20px 26px;
}

.htr-layout-card span {
  display: block;
  margin-bottom: 14px;
  color: #7fd1ce;
  font-size: .66rem;
  font-weight: 880;
  letter-spacing: .12em;
}

.htr-layout-card h3 {
  margin-bottom: 9px;
  color: #fff;
  font-size: 1.22rem;
}

.htr-layout-card p {
  margin: 0;
  color: #b7cbd0;
  font-size: .82rem;
  line-height: 1.56;
}

.htr-video {
  background: #fff;
}

.htr-video-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
}

.htr-video-grid > div > p {
  max-width: 600px;
}

.htr-video-points {
  margin-top: 28px;
}

.htr-video-card {
  border: 1px solid var(--htr-line);
  background: var(--htr-paper);
  box-shadow: 0 24px 64px rgba(12, 54, 58, .13);
}

.htr-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #071217;
  color: #fff;
  cursor: pointer;
}

.htr-video-trigger img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: .9;
}

.htr-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: rgba(23, 109, 115, .92);
  font-size: 1.5rem;
  transform: translate(-50%, -60%);
}

.htr-video-trigger strong {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .86));
  font-size: .86rem;
  line-height: 1.45;
  text-align: left;
}

.htr-video-fallback {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 12px 16px;
  color: var(--htr-teal);
  font-weight: 820;
}

.htr-data {
  background: var(--htr-teal-pale);
}

.htr-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--htr-line);
  list-style: none;
}

.htr-data-grid li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
}

.htr-data-grid > li > span {
  color: var(--htr-copper);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.htr-data-grid h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.htr-data-grid p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
}

.htr-data-note {
  display: flex;
  align-items: baseline;
  gap: 12px 20px;
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 5px solid var(--htr-copper);
  background: var(--htr-copper-pale);
}

.htr-data-note strong {
  flex: 0 0 auto;
}

.htr-data-note span {
  color: var(--htr-copy);
  font-size: .85rem;
  line-height: 1.5;
}

.htr-faq {
  background: #fff;
}

.htr-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(0, 1.42fr);
  align-items: start;
  gap: clamp(38px, 7vw, 100px);
}

.htr-faq-grid > div:first-child {
  position: sticky;
  top: 150px;
}

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

.htr-faq-list details {
  border-bottom: 1px solid var(--htr-line);
}

.htr-faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 18px 4px;
  color: var(--htr-ink);
  font-weight: 850;
  line-height: 1.42;
  cursor: pointer;
  list-style: none;
}

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

.htr-faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--htr-line);
  color: var(--htr-teal);
  transition: transform .2s ease;
}

.htr-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.htr-faq-list details p {
  max-width: 780px;
  margin: 0;
  padding: 0 54px 24px 4px;
}

.htr-quote {
  background:
    linear-gradient(rgba(9, 23, 32, .93), rgba(9, 23, 32, .93)),
    radial-gradient(circle at 15% 15%, rgba(66, 161, 160, .28), transparent 35%);
}

.htr-quote-grid {
  display: grid;
  grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: clamp(38px, 7vw, 100px);
}

.htr-quote .st-kicker {
  color: #7fd1ce;
}

.htr-quote-copy h2 {
  color: #fff;
}

.htr-quote-copy > p,
.htr-quote-copy li {
  color: #b7cbd0;
}

.htr-quote-copy ul {
  margin: 28px 0;
}

.htr-quote-copy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #fff;
  font-weight: 820;
}

.htr-page .htr-quote .hnl-inquiry-form {
  min-width: 0;
  max-width: 100%;
  border-top-color: var(--htr-teal-bright);
  background: #fff;
}

.htr-page .htr-quote .hnl-inquiry-form .pc-eyebrow {
  color: var(--htr-teal) !important;
}

.htr-page .htr-quote .hnl-inquiry-submit {
  background: var(--htr-teal);
}

.htr-page .cf-turnstile,
.htr-page .hnl-inquiry-turnstile-wrap,
.htr-page .hnl-inquiry-form iframe {
  max-width: 100%;
}

.htr-video-dialog button {
  width: 44px;
  height: 44px;
}

@media (max-width: 1120px) {
  .htr-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
    gap: 44px;
  }

  .htr-hero h1 {
    font-size: clamp(2.8rem, 5.8vw, 5.25rem);
  }

  .htr-sensing-card {
    grid-template-columns: 1fr;
  }

  .htr-sensing-card .htr-figure img {
    height: auto;
  }

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

@media (max-width: 900px) {
  .htr-page main [id] {
    scroll-margin-top: 118px;
  }

  .htr-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "facts"
      "visual";
  }

  .htr-hero-copy {
    max-width: 790px;
  }

  .htr-hero-figure {
    width: min(720px, 100%);
  }

  .htr-section-nav {
    top: 74px;
  }

  .htr-section-head,
  .htr-choice-grid,
  .htr-boundary-grid,
  .htr-reel-grid,
  .htr-video-grid,
  .htr-faq-grid,
  .htr-quote-grid {
    grid-template-columns: 1fr;
  }

  .htr-section-head {
    align-items: start;
  }

  .htr-section-head > p {
    max-width: 720px;
  }

  .htr-choice-figure,
  .htr-boundary-copy,
  .htr-faq-grid > div:first-child {
    position: static;
  }

  .htr-choice-figure {
    width: min(720px, 100%);
  }

  .htr-boundary-copy .htr-figure {
    width: min(560px, 100%);
  }

  .htr-reel-grid > .htr-figure {
    width: min(760px, 100%);
  }

  .htr-video-card {
    width: min(760px, 100%);
  }

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

@media (max-width: 760px) {
  .htr-section-nav {
    top: 68px;
  }

  .htr-section-nav a,
  .htr-button,
  .htr-video-fallback,
  .htr-quote-copy a {
    min-height: 44px;
  }

  .htr-hero {
    padding-top: 48px;
  }

  .htr-hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 4.3rem);
    letter-spacing: -.06em;
  }

  .htr-hero-facts,
  .htr-principle-grid,
  .htr-sensing-grid,
  .htr-model-visuals,
  .htr-reel-data {
    grid-template-columns: 1fr;
  }

  .htr-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .htr-button {
    width: 100%;
  }

  .htr-data-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .htr-video-play {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 620px) {
  .htr-page h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .htr-breadcrumb {
    margin-bottom: 25px;
  }

  .htr-layout-grid,
  .htr-data-grid {
    grid-template-columns: 1fr;
  }

  .htr-layout-card {
    display: grid;
    grid-template-columns: minmax(130px, .72fr) minmax(0, 1.28fr);
  }

  .htr-layout-card figure {
    height: 100%;
    aspect-ratio: auto;
  }

  .htr-data-grid li {
    padding: 22px 20px;
  }

  .htr-faq-list summary {
    min-height: 66px;
  }

  .htr-faq-list details p {
    padding-right: 4px;
  }
}

@media (max-width: 420px) {
  .htr-hero h1 {
    font-size: clamp(2.22rem, 11.8vw, 3rem);
    letter-spacing: -.052em;
    line-height: .94;
  }

  .htr-hero-facts div,
  .htr-note,
  .htr-boundary-card {
    padding-inline: 17px;
  }

  .htr-layout-card {
    grid-template-columns: 1fr;
  }

  .htr-layout-card figure {
    aspect-ratio: 3 / 4;
  }

  .htr-video-trigger strong {
    padding: 15px 16px;
    font-size: .78rem;
  }

  .htr-page .hnl-inquiry-form {
    padding-inline: 14px;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .htr-section-nav {
    position: relative;
    top: 0;
  }

  .htr-page main [id] {
    scroll-margin-top: 82px;
  }

  .htr-choice-figure,
  .htr-boundary-copy,
  .htr-faq-grid > div:first-child {
    position: static;
  }
}

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