:root {
  --off-white: #f4f4f2;
  --grey-light: #efefef;
  --off-black: #111315;
  --black: #0f1012;
  --blue: #087be8;
  --blue-dark: #0063c7;
  --text: #111315;
  --muted: #7d8084;
  --muted-dark: #8a8d91;
  --line-light: rgba(17, 19, 21, 0.12);
  --line-dark: rgba(244, 244, 242, 0.14);
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: 1104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--grey-light);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
}

body.search-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.wrap {
  width: min(var(--wrap), calc(100% - 96px));
  margin: 0 auto;
}

.bg-grey-light {
  background: var(--grey-light);
}

.bg-off-white {
  background: var(--off-white);
}

.bg-off-black {
  color: var(--off-white);
  background: var(--off-black);
}

.bg-blue {
  color: var(--off-white);
  background: var(--blue);
}

.site-nav {
  position: fixed;
  top: 36px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.site-nav.nav-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.nav-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(235, 235, 235, 0.94);
  box-shadow: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.92;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  width: 528px;
  min-height: 45px;
  margin: 0;
  padding: 0 18px;
  border-radius: 8px;
  background: rgba(235, 235, 235, 0.94);
  box-shadow: none;
  list-style: none;
  transition: background-color 0.25s ease;
}

.site-nav.products-open .nav-list {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.nav-list li {
  flex: 1 1 0;
}

.nav-list a,
.nav-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 45px;
  padding: 0;
  color: rgba(17, 19, 21, 0.9);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  transition: color 0.25s ease;
}

.nav-list span {
  display: none;
}

.nav-list a:hover,
.nav-list button:hover {
  color: var(--blue);
}

.site-nav.nav-on-dark .nav-mark,
.site-nav.nav-on-dark .nav-list,
.site-nav.nav-on-dark .nav-toggle {
  background: rgba(244, 244, 242, 0.1);
}

.site-nav.nav-on-dark .nav-mark img {
  filter: invert(1) brightness(1.35);
  opacity: 0.94;
}

.site-nav.nav-on-dark .nav-list a,
.site-nav.nav-on-dark .nav-list button {
  color: rgba(244, 244, 242, 0.92);
}

.site-nav.nav-on-dark .nav-list a:hover,
.site-nav.nav-on-dark .nav-list button:hover {
  color: var(--blue);
}

.site-nav.nav-on-dark .nav-toggle span {
  background: var(--off-white);
}

.products-dropdown {
  position: absolute;
  top: 0;
  left: 51px;
  width: 528px;
  min-height: 144px;
  padding: 14px 20px 16px;
  border-radius: 8px;
  color: rgba(17, 19, 21, 0.9);
  background: rgba(235, 235, 235, 0.96);
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.products-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.products-dropdown-head {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 32px;
}

.products-dropdown-head p {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
}

.products-dropdown-close {
  position: absolute;
  right: -3px;
  top: 2px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: rgba(17, 19, 21, 0.92);
  font-size: 18px;
  font-weight: 300;
}

.products-dropdown-rule {
  height: 1px;
  margin: 6px 0 8px;
  background: rgba(17, 19, 21, 0.18);
}

.products-dropdown-kicker {
  margin: 0 0 8px;
  color: rgba(17, 19, 21, 0.86);
  text-align: center;
  font-size: 12px;
  font-weight: 300;
}

.products-dropdown-list {
  display: grid;
  gap: 6px;
  width: min(298px, 100%);
  margin: 0 auto 4px;
}

.products-dropdown-link {
  display: grid;
  grid-template-columns: 20px 1fr 24px;
  align-items: center;
  min-height: 29px;
  padding: 0 6px 0 12px;
  border-radius: 8px;
  color: rgba(17, 19, 21, 0.9);
  background: rgba(222, 222, 222, 0.82);
  font-size: 12px;
  font-weight: 300;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.products-dropdown-link span {
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.products-dropdown-link strong {
  font-weight: 300;
  text-align: center;
}

.products-dropdown-link i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-style: normal;
  font-size: 11px;
  line-height: 1;
}

.products-dropdown-link:hover {
  color: var(--blue);
  background: rgba(214, 214, 214, 0.96);
}

.site-nav.nav-on-dark .products-dropdown {
  color: var(--off-white);
  background: rgba(43, 43, 45, 0.98);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.site-nav.nav-on-dark .products-dropdown-close {
  color: rgba(244, 244, 242, 0.88);
}

.site-nav.nav-on-dark .products-dropdown-rule {
  background: rgba(244, 244, 242, 0.28);
}

.site-nav.nav-on-dark .products-dropdown-kicker {
  color: rgba(244, 244, 242, 0.92);
}

.site-nav.nav-on-dark .products-dropdown-link {
  color: rgba(244, 244, 242, 0.92);
  background: rgba(244, 244, 242, 0.05);
}

.site-nav.nav-on-dark .products-dropdown-link:hover {
  color: var(--off-white);
  background: rgba(244, 244, 242, 0.12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(235, 235, 235, 0.86);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
}

.page-mark {
  position: fixed;
  top: 50%;
  left: clamp(24px, 4.8vw, 80px);
  z-index: 90;
  display: block;
  width: 58px;
  height: 33px;
  color: var(--blue);
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.page-mark.mark-hidden {
  visibility: hidden;
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #eee;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 244, 242, 0.88), rgba(244, 244, 242, 0.08) 48%, rgba(244, 244, 242, 0.58)),
    linear-gradient(0deg, rgba(244, 244, 242, 0.96), rgba(244, 244, 242, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1312px, calc(100% - 128px));
  min-height: 100svh;
  margin: 0 auto;
  --hero-lockup-left: -48px;
}

.update-link {
  position: absolute;
  left: var(--hero-lockup-left);
  bottom: 232px;
  color: var(--text);
  filter: none;
  font-size: 21px;
  font-weight: 600;
  transition: filter 240ms ease, color 240ms ease;
}

.update-link:hover {
  color: var(--text);
  filter: none;
}

.hero h1 {
  position: absolute;
  left: var(--hero-lockup-left);
  bottom: 174px;
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 1.95vw, 30px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-explore {
  position: absolute;
  left: var(--hero-lockup-left);
  bottom: 122px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-explore p {
  margin: 0 8px 0 0;
  color: rgba(17, 19, 21, 0.58);
  font-size: 16px;
}

.hero-explore a,
.product-pills a {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: transparent;
  font-size: 16px;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  left: var(--hero-lockup-left);
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 40px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(235, 235, 235, 0.9);
  font-size: 17px;
  line-height: 1;
  animation: scrollCue 1.9s ease-in-out infinite;
}

.hero-scroll:hover {
  background: rgba(222, 222, 222, 0.96);
  animation-play-state: paused;
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.intro {
  display: flex;
  align-items: center;
  min-height: 641px;
  padding: 0;
}

.intro .wrap {
  width: 100%;
  max-width: none;
  padding: 0 clamp(48px, 4.8vw, 80px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(28px, 2.4vw, 40px);
  align-items: start;
}

.intro h2,
.company-title h2,
.product-head h2,
.about h2,
.evidence h2,
.contact-strip h2 {
  margin: 0;
  font-weight: 300;
  letter-spacing: 0;
}

.intro h2 {
  grid-column: 2;
  color: var(--text);
  filter: none;
  font-size: 14px;
  line-height: 1.06;
}

.intro h2 span,
.company-title h2 span {
  display: block;
}

.intro h2 span:first-child {
  color: rgba(17, 19, 21, 0.46);
}

.intro-copy {
  grid-column: 3 / span 2;
  padding-top: 0;
}

.intro-copy p {
  max-width: 610px;
  margin: 0 0 108px;
  font-size: clamp(25px, 1.95vw, 28px);
  font-weight: 300;
  line-height: 1.1;
}

.intro-copy p::first-line {
  color: inherit;
}

.intro-copy .intro-small {
  display: none;
}

.intro-copy .intro-small::first-line {
  color: inherit;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 21px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 300;
}

.arrow-link::before {
  content: "\2192";
  display: grid;
  place-items: center;
  width: 22px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

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

.arrow-link.blue {
  color: var(--blue);
}

.company {
  position: relative;
  padding: 0;
}

.company-grid {
  display: grid;
  width: 100%;
  max-width: none;
  height: 550px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(28px, 2.4vw, 40px);
  padding: 100px clamp(48px, 4.8vw, 80px);
  background: rgba(29, 30, 32, 0.5);
}

.company-title h2 {
  position: static;
  color: rgba(244, 244, 242, 0.92);
  filter: none;
  font-size: 16px;
  line-height: 1.08;
}

.company-title {
  grid-column: 3 / span 2;
}

.company-title h2 span:last-child {
  color: var(--blue);
}

.company-rows {
  grid-column: 2 / -1;
  margin-top: 84px;
  border-top: 0;
}

.company-rows article {
  display: grid;
  grid-template-columns: minmax(170px, 204px) minmax(0, 1fr);
  gap: clamp(28px, 2.4vw, 40px);
  min-height: 0;
  padding: 0;
}

.company-rows article + article {
  padding-top: 42px;
}

.company-rows article:last-child {
  padding-bottom: 0;
}

.company-rows p,
.language-grid > p {
  margin: 0;
  color: rgba(244, 244, 242, 0.86);
  font-size: 14px;
  font-weight: 300;
}

.company-rows p span,
.language-grid > p span {
  display: block;
  color: rgba(244, 244, 242, 0.45);
}

.company-rows h3 {
  margin: 0;
  color: rgba(244, 244, 242, 0.94);
  font-size: clamp(24px, 1.95vw, 30px);
  font-weight: 300;
  line-height: 1.08;
}

.company-rows article:not(:last-child) h3 {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-dark);
}

.company-rows article:nth-child(n + 2) h3 {
  color: rgba(244, 244, 242, 0.62);
}

.company-facts {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(28px, 2.4vw, 40px);
  gap: clamp(28px, 2.4vw, 40px);
  margin-top: 0;
  padding: 67px clamp(48px, 4.8vw, 80px) 58px;
  background: transparent;
  border-bottom: 0;
}

.blue-mark,
.white-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 33px;
  color: var(--off-black);
  background: var(--blue);
  font-size: 18px;
}

.company .blue-mark,
.product-mark,
.about .blue-mark,
.evidence .white-mark {
  visibility: hidden;
}

.company .blue-mark {
  position: absolute;
  top: 223px;
  left: clamp(48px, 4.8vw, 80px);
}

.company-facts article:nth-of-type(1) {
  grid-column: 3;
}

.company-facts article:nth-of-type(2) {
  grid-column: 4;
}

.company-facts article:nth-of-type(3) {
  grid-column: 5;
}

.white-mark {
  color: var(--blue);
  background: var(--off-white);
}

.company-facts article::before {
  content: "\2013";
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
}

.company-facts span {
  display: block;
  margin-bottom: 28px;
  color: rgba(244, 244, 242, 0.45);
  font-size: 15px;
}

.company-facts p {
  margin: 0;
  max-width: 230px;
  color: rgba(244, 244, 242, 0.86);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.12;
}

.language-grid {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(28px, 2.4vw, 40px);
  padding: 42px clamp(48px, 4.8vw, 80px) 98px;
  border-top: 1px solid var(--line-dark);
}

.language-grid > p {
  grid-column: 2;
}

.language-grid article:nth-of-type(1) {
  grid-column: 3;
}

.language-grid article:nth-of-type(2) {
  grid-column: 4;
}

.language-grid article:nth-of-type(3) {
  grid-column: 5;
}

.language-grid article h4 {
  margin: 0 0 34px;
  color: rgba(0, 126, 233, 0.72);
  font-size: 21px;
  font-weight: 300;
}

.language-grid article h4 sup {
  font-size: 0.55em;
  line-height: 0;
}

.language-grid article span {
  display: block;
  color: rgba(244, 244, 242, 0.66);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.05;
}

.products {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0 0 120px;
  isolation: isolate;
}

.product-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 850px;
  overflow: hidden;
}

.product-mark {
  position: absolute;
  top: 50%;
  left: clamp(48px, 4.8vw, 80px);
  z-index: 4;
  transform: translateY(-50%);
}

.product-head {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 850px;
  text-align: center;
}

.product-head p {
  position: absolute;
  top: 104px;
  left: 50%;
  margin: 0;
  color: var(--text);
  filter: none;
  font-size: 16px;
  transform: translateX(-50%);
}

.product-head h2 {
  color: var(--blue);
  font-size: clamp(92px, 10.5vw, 172px);
  line-height: 1.15;
}

.product-head h2 span {
  display: block;
}

.product-stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.device-showcase {
  position: absolute;
  margin: 0;
}

.device-showcase img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 52px 80px rgba(0, 0, 0, 0.16));
}

.hero-product-device {
  top: 52%;
  left: 50%;
  width: min(330px, 24vw);
  height: min(330px, 24vw);
  transform: translate(-50%, -50%) rotate(-12deg);
}

.hero-product-device img {
  mix-blend-mode: normal;
  filter: drop-shadow(0 52px 80px rgba(0, 0, 0, 0.2));
}

.primary-device {
  left: -4%;
  top: 20px;
  width: 68%;
  height: 580px;
}

.secondary-device {
  right: 4%;
  top: 74px;
  width: 30%;
  height: 430px;
}

.product-copy {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 0;
}

.products > .product-copy {
  width: min(972px, calc(100% - 308px));
}

.product-copy p {
  margin: 0;
  max-width: 430px;
  color: rgba(17, 19, 21, 0.52);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.18;
}

.product-pills {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.product-pills a:first-child {
  color: var(--off-white);
  border-color: var(--blue);
  background: var(--blue);
}

.product-family {
  padding: 128px 0;
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.family-item {
  min-height: 340px;
  padding: 24px;
  border-left: 1px solid var(--line-light);
}

.family-item:last-child {
  border-right: 1px solid var(--line-light);
}

.family-item img {
  width: 100%;
  height: 205px;
  object-fit: contain;
  transition: transform 280ms ease;
}

.family-item:hover img {
  transform: translateY(-8px);
}

.family-item span {
  display: block;
  margin-top: 18px;
  color: rgba(17, 19, 21, 0.78);
  font-size: 22px;
  font-weight: 300;
}

.family-item p {
  max-width: 230px;
  margin: 10px 0 0;
  color: rgba(17, 19, 21, 0.48);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2;
}

.product-detail-page {
  --product-accent: #ff9f0a;
  background: var(--grey-light);
}

.product-detail-page .page-mark {
  display: none;
}

.product-detail-main {
  background: var(--grey-light);
}

.product-detail-hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 0;
  overflow: hidden;
  color: var(--off-white);
  background: #000;
}

.product-detail-hero::after {
  display: none;
}

.product-route {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(28px, 2.4vw, 40px);
  width: 100%;
  max-width: none;
  padding: 0 clamp(48px, 4.8vw, 80px);
}

.product-route p {
  grid-column: 3;
  margin: 0;
  color: rgba(244, 244, 242, 0.24);
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.product-detail-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: calc(100svh - 250px);
  margin-top: 8px;
}

.product-detail-title {
  position: absolute;
  left: 50%;
  bottom: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: auto;
  margin: 0;
  color: var(--product-accent);
  font-size: clamp(40px, 3.3vw, 54px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}

.product-detail-title::before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: currentColor;
}

.product-detail-title span {
  display: inline;
}

.product-detail-image {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(520px, 40vw);
  height: min(330px, 27vw);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 46px 70px rgba(0, 0, 0, 0.52));
}

.product-detail-image.is-band {
  width: min(320px, 25vw);
  height: min(320px, 25vw);
}

.product-detail-image.is-fob {
  width: min(280px, 24vw);
  height: min(340px, 30vw);
}

.product-detail-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(28px, 2.4vw, 40px);
  width: 100%;
  max-width: none;
  padding: 0 clamp(48px, 4.8vw, 80px);
}

.product-detail-copy p {
  grid-column: 3;
  max-width: 320px;
  margin: 0;
  color: rgba(244, 244, 242, 0.46);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.06;
  text-align: center;
}

.product-detail-copy small {
  grid-column: 5;
  align-self: end;
  max-width: 250px;
  justify-self: end;
  color: rgba(244, 244, 242, 0.42);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.1;
  text-align: right;
}

.product-pioneer {
  padding: 110px 0 126px;
  background: var(--grey-light);
  border-top: 1px solid rgba(17, 19, 21, 0.08);
}

.product-pioneer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(28px, 2.4vw, 40px);
  width: 100%;
  max-width: none;
  padding: 0 clamp(48px, 4.8vw, 80px);
}

.product-pioneer-label {
  grid-column: 2;
  margin: 0;
  color: rgba(17, 19, 21, 0.45);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.08;
}

.product-pioneer-label span {
  display: block;
  color: rgba(17, 19, 21, 0.82);
}

.product-pioneer-copy {
  grid-column: 3 / span 2;
}

.product-pioneer-copy h2 {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--text);
  font-size: clamp(34px, 4.4vw, 70px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.product-pioneer-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(17, 19, 21, 0.52);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.16;
}

.product-category {
  grid-column: 5;
  align-self: end;
}

.product-category span {
  display: block;
  margin-bottom: 10px;
  color: rgba(17, 19, 21, 0.42);
  font-size: 14px;
  font-weight: 300;
}

.product-category strong {
  display: block;
  color: var(--text);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.08;
}

.product-capabilities {
  padding: 116px 0 132px;
  color: var(--off-white);
  background: var(--off-black);
}

.product-capabilities-head,
.product-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(28px, 2.4vw, 40px);
  width: 100%;
  max-width: none;
  padding: 0 clamp(48px, 4.8vw, 80px);
}

.product-capabilities-head {
  align-items: end;
  margin-bottom: 88px;
}

.product-capabilities-head p {
  grid-column: 2;
  margin: 0;
  color: rgba(244, 244, 242, 0.76);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.08;
}

.product-capabilities-head h2 {
  grid-column: 3 / span 2;
  margin: 0;
  color: rgba(244, 244, 242, 0.94);
  font-size: clamp(38px, 5vw, 82px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.product-capability {
  min-height: 280px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.product-capability:nth-child(1) {
  grid-column: 2;
}

.product-capability:nth-child(2) {
  grid-column: 3;
}

.product-capability:nth-child(3) {
  grid-column: 4;
}

.product-capability:nth-child(4) {
  grid-column: 5;
}

.product-capability b {
  display: block;
  margin-bottom: 36px;
  color: var(--blue);
  font-size: 64px;
  font-weight: 300;
  line-height: 0.85;
}

.product-capability h3 {
  margin: 0 0 18px;
  color: rgba(244, 244, 242, 0.92);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.03;
}

.product-capability ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-capability li {
  margin-bottom: 8px;
  color: rgba(244, 244, 242, 0.58);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.18;
}

.product-highlight {
  min-height: 610px;
  padding: 122px 0;
  color: var(--off-white);
  background: var(--blue);
}

.product-highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(28px, 2.4vw, 40px);
  width: 100%;
  max-width: none;
  padding: 0 clamp(48px, 4.8vw, 80px);
}

.product-highlight h2 {
  grid-column: 2 / span 2;
  margin: 0;
  color: rgba(244, 244, 242, 0.96);
  font-size: clamp(72px, 10vw, 160px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0;
}

.product-highlight-copy {
  grid-column: 4 / span 2;
  align-self: end;
}

.product-highlight-copy h3 {
  margin: 0 0 26px;
  color: rgba(244, 244, 242, 0.96);
  font-size: clamp(28px, 3.4vw, 56px);
  font-weight: 300;
  line-height: 1;
}

.product-highlight-copy p {
  max-width: 470px;
  margin: 0 0 34px;
  color: rgba(244, 244, 242, 0.74);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.16;
}

.product-highlight .arrow-link {
  color: var(--off-white);
}

.product-devices {
  padding: 128px 0 136px;
  background: var(--off-white);
}

.product-devices-head {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(28px, 2.4vw, 40px);
  width: 100%;
  max-width: none;
  padding: 0 clamp(48px, 4.8vw, 80px) 52px;
}

.product-devices-head h2 {
  grid-column: 3 / span 2;
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 5.5vw, 84px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
}

.product-device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1104px, calc(100% - 96px));
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.product-device-card {
  min-height: 390px;
  padding: 26px 24px 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: transparent;
}

.product-device-card.is-active {
  background: rgba(255, 255, 255, 0.46);
}

.product-device-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 20px;
}

.product-device-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.05;
}

.product-device-card p {
  margin: 0 0 20px;
  color: rgba(17, 19, 21, 0.54);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.18;
}

.product-device-card a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 300;
}

.about {
  padding: 146px 0 138px;
}

.about-item {
  display: grid;
  grid-template-columns: 170px 210px minmax(260px, 1fr) 220px;
  gap: 58px;
  min-height: 520px;
  align-items: start;
  padding: 50px 0 80px;
}

.about-item + .about-item {
  border-top: 1px solid var(--line-dark);
}

.about h2 {
  margin-bottom: 48px;
  color: rgba(244, 244, 242, 0.96);
  font-size: 18px;
}

.about h3 {
  max-width: 240px;
  margin: 0 0 42px;
  color: rgba(244, 244, 242, 0.1);
  filter: blur(4px);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.03;
}

.about h4 {
  margin: 72px 0 28px;
  color: rgba(244, 244, 242, 0.9);
  font-size: 21px;
  font-weight: 300;
}

.about p {
  margin: 0;
  max-width: 390px;
  color: rgba(244, 244, 242, 0.46);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.28;
}

.about .side-note {
  padding-top: 108px;
  color: rgba(244, 244, 242, 0.44);
  font-size: 18px;
}

.evidence {
  min-height: 609px;
  padding: 72px 0;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 120px;
}

.evidence span,
.contact-strip span {
  display: block;
  margin-bottom: 6px;
  color: rgba(244, 244, 242, 0.74);
  font-size: 18px;
  font-weight: 300;
}

.evidence h2 {
  max-width: 600px;
  color: rgba(244, 244, 242, 0.52);
  filter: blur(1px);
  font-size: clamp(58px, 8vw, 122px);
  line-height: 0.94;
}

.evidence p {
  max-width: 280px;
  margin: 52px 0 40px;
  color: rgba(244, 244, 242, 0.68);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.16;
}

.contact-strip {
  padding: 92px 0 150px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 120px;
}

.contact-grid article {
  min-height: 350px;
}

.contact-strip span {
  color: rgba(17, 19, 21, 0.45);
}

.contact-strip h2 {
  max-width: 440px;
  color: rgba(17, 19, 21, 0.4);
  filter: blur(1px);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.96;
}

.contact-strip p {
  max-width: 430px;
  margin: 36px 0 34px;
  color: rgba(17, 19, 21, 0.55);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.18;
}

.footer {
  min-height: 644px;
  padding: 28px 0 34px;
}

.footer-shell {
  display: grid;
  width: calc(100% - 96px);
  max-width: none;
  min-height: 582px;
  grid-template-columns: minmax(360px, 1fr) 140px minmax(230px, 330px);
  grid-template-rows: auto 1fr auto;
  column-gap: 48px;
  margin: 0 auto;
}

.footer-brand {
  color: var(--off-white);
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.footer-group {
  display: grid;
  grid-template-columns: 140px minmax(230px, 330px);
  column-gap: 48px;
  grid-column: 2 / 4;
  align-items: start;
}

.footer-pages {
  grid-row: 1;
}

.footer-follow {
  grid-row: 2;
  align-self: center;
}

.footer-label {
  color: var(--off-white);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

.footer-label span {
  display: block;
  color: rgba(244, 244, 242, 0.42);
}

.footer-links a {
  display: block;
  color: var(--off-white);
  font-size: clamp(23px, 1.7vw, 27px);
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 3px;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-symbol {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: 0.46;
  filter: invert(1) brightness(1.35) grayscale(1);
}

.footer-legal {
  grid-column: 2 / 4;
  grid-row: 3;
  display: flex;
  align-self: end;
  gap: 34px;
  color: rgba(244, 244, 242, 0.5);
  font-size: 14px;
  font-weight: 300;
}

.footer-legal a:hover {
  color: var(--off-white);
}

.footer-region {
  grid-column: 3;
  grid-row: 3;
  justify-self: end;
  align-self: end;
  color: rgba(244, 244, 242, 0.5);
  font-size: 14px;
  font-weight: 300;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: rgba(239, 239, 239, 0.96);
}

.search-overlay.open {
  display: flex;
}

.search-close {
  position: absolute;
  top: 34px;
  right: 34px;
  height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--text);
  background: rgba(220, 220, 220, 0.8);
}

.search-box {
  width: min(820px, 100%);
}

.search-box label {
  display: block;
  margin-bottom: 26px;
  color: rgba(17, 19, 21, 0.42);
  font-size: 18px;
}

.search-box input {
  width: 100%;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 300;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.search-suggestions a {
  height: 29px;
  padding: 5px 12px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
}

#searchEmpty {
  display: none;
  color: rgba(17, 19, 21, 0.56);
}

.custom-cursor,
.scroll-progress {
  display: none !important;
}

@media (min-width: 981px) and (max-width: 1100px) {
  .about-item {
    grid-template-columns: 120px 180px minmax(220px, 1fr) 180px;
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .wrap,
  .hero-content {
    width: min(100% - 34px, var(--wrap));
    --hero-lockup-left: 0px;
  }

  .site-nav {
    top: 16px;
    width: calc(100% - 28px);
    justify-content: space-between;
  }

  .page-mark {
    display: none;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav-list {
    position: absolute;
    top: 58px;
    right: 0;
    display: none;
    width: min(340px, 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .nav-list.active {
    display: flex;
  }

  .products-dropdown {
    top: 58px;
    left: auto;
    right: 0;
    width: min(340px, 100%);
    padding: 14px 16px 18px;
  }

  .products-dropdown-list {
    width: 100%;
  }

  .nav-list a,
  .nav-list button {
    width: 100%;
    justify-content: flex-start;
    min-width: 0;
  }

  .nav-list span {
    display: inline-block;
    width: 34px;
    color: rgba(17, 19, 21, 0.4);
  }

  .hero h1 {
    bottom: 168px;
    font-size: clamp(28px, 7vw, 38px);
  }

  .update-link {
    bottom: 224px;
  }

  .hero-explore {
    bottom: 104px;
    flex-wrap: wrap;
  }

  .hero-scroll {
    left: var(--hero-lockup-left);
    bottom: 36px;
  }

  .intro-grid,
  .company-grid,
  .product-head,
  .product-copy,
  .evidence-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro .wrap {
    width: min(var(--wrap), calc(100% - 48px));
    padding: 0;
  }

  .company-grid,
  .company-facts,
  .language-grid {
    width: min(var(--wrap), calc(100% - 48px));
    padding-left: 0;
    padding-right: 0;
  }

  .company-grid {
    height: auto;
  }

  .intro h2,
  .intro-copy,
  .company-title,
  .company-rows,
  .company-facts article:nth-of-type(1),
  .company-facts article:nth-of-type(2),
  .company-facts article:nth-of-type(3),
  .language-grid > p,
  .language-grid article:nth-of-type(1),
  .language-grid article:nth-of-type(2),
  .language-grid article:nth-of-type(3) {
    grid-column: auto;
  }

  .company-title h2 {
    position: static;
  }

  .company-rows {
    margin-top: 58px;
  }

  .company-rows article,
  .company-facts,
  .language-grid,
  .about-item {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .company-rows article {
    min-height: 0;
  }

  .company-rows article + article {
    padding-top: 34px;
  }

  .company-facts {
    margin-top: 74px;
  }

  .company .blue-mark {
    display: none;
  }

  .product-stage {
    height: 100%;
  }

  .products > .product-copy {
    width: min(100% - 48px, var(--wrap));
  }

  .hero-product-device {
    width: min(300px, 34vw);
    height: min(300px, 34vw);
  }

  .primary-device {
    left: -10%;
    width: 92%;
  }

  .secondary-device {
    right: -5%;
    width: 42%;
  }

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

  .product-detail-hero {
    padding-top: 116px;
  }

  .product-route,
  .product-detail-copy,
  .product-pioneer-grid,
  .product-capabilities-head,
  .product-capabilities-grid,
  .product-highlight-grid,
  .product-devices-head {
    grid-template-columns: 1fr;
    width: min(var(--wrap), calc(100% - 48px));
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .product-route p,
  .product-detail-copy p,
  .product-detail-copy small,
  .product-pioneer-label,
  .product-pioneer-copy,
  .product-category,
  .product-capabilities-head p,
  .product-capabilities-head h2,
  .product-highlight h2,
  .product-highlight-copy,
  .product-devices-head h2 {
    grid-column: auto;
  }

  .product-detail-stage {
    min-height: 500px;
  }

  .product-detail-title {
    width: auto;
  }

  .product-detail-copy {
    bottom: 28px;
  }

  .product-detail-copy p,
  .product-detail-copy small {
    justify-self: center;
    max-width: 360px;
    text-align: center;
  }

  .product-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-capability:nth-child(1),
  .product-capability:nth-child(2),
  .product-capability:nth-child(3),
  .product-capability:nth-child(4) {
    grid-column: auto;
  }

  .product-device-grid {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 48px, var(--wrap));
  }

  .footer {
    min-height: auto;
    padding: 46px 0 34px;
  }

  .footer-shell {
    width: min(100% - 34px, var(--wrap));
    min-height: 620px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1fr auto auto;
    row-gap: 42px;
  }

  .footer-brand,
  .footer-group,
  .footer-symbol,
  .footer-legal,
  .footer-region {
    grid-column: 1;
  }

  .footer-brand {
    grid-row: 1;
  }

  .footer-group {
    grid-template-columns: 84px minmax(0, 1fr);
    column-gap: 34px;
  }

  .footer-pages {
    grid-row: 2;
  }

  .footer-follow {
    grid-row: 3;
    align-self: start;
  }

  .footer-symbol {
    grid-row: 5;
  }

  .footer-legal {
    grid-row: 6;
    flex-wrap: wrap;
    gap: 16px 28px;
  }

  .footer-region {
    grid-row: 6;
  }
}

@media (max-width: 640px) {
  .hero-fade {
    background:
      linear-gradient(90deg, rgba(244, 244, 242, 0.82), rgba(244, 244, 242, 0.18)),
      linear-gradient(0deg, rgba(244, 244, 242, 0.96), rgba(244, 244, 242, 0) 55%);
  }

  .hero h1 {
    bottom: 166px;
  }

  .update-link {
    bottom: 224px;
    filter: none;
  }

  .hero-explore p {
    width: auto;
  }

  .intro,
  .about,
  .contact-strip {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .company {
    padding: 0;
  }

  .intro-copy p {
    font-size: 32px;
  }

  .company-rows h3 {
    font-size: 30px;
  }

  .company-facts p {
    font-size: 22px;
  }

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

  .language-grid > p {
    grid-column: 1 / -1;
  }

  .products {
    padding-bottom: 86px;
  }

  .product-hero {
    min-height: 720px;
  }

  .product-head h2 {
    font-size: 62px;
  }

  .product-stage {
    height: 100%;
  }

  .hero-product-device {
    width: 220px;
    height: 220px;
  }

  .primary-device {
    left: -18%;
    width: 115%;
    height: 360px;
  }

  .secondary-device {
    top: 118px;
    right: -8%;
    width: 48%;
    height: 250px;
  }

  .product-pills,
  .hero-explore {
    align-items: flex-start;
  }

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

  .products-dropdown {
    width: calc(100vw - 28px);
  }

  .product-detail-hero {
    min-height: 820px;
    padding-bottom: 74px;
  }

  .product-route,
  .product-detail-copy,
  .product-pioneer-grid,
  .product-capabilities-head,
  .product-capabilities-grid,
  .product-highlight-grid,
  .product-devices-head {
    width: min(100% - 34px, var(--wrap));
  }

  .product-detail-stage {
    min-height: 420px;
  }

  .product-detail-title {
    bottom: 158px;
    gap: 14px;
    font-size: clamp(34px, 10vw, 46px);
  }

  .product-detail-title::before {
    width: 18px;
    height: 18px;
  }

  .product-detail-image,
  .product-detail-image.is-band,
  .product-detail-image.is-fob {
    width: min(280px, 78vw);
    height: min(310px, 78vw);
  }

  .product-detail-copy {
    bottom: 28px;
  }

  .product-detail-copy p {
    font-size: 14px;
  }

  .product-detail-copy small {
    font-size: 12px;
  }

  .product-pioneer-copy p,
  .product-highlight-copy p {
    font-size: 18px;
  }

  .product-pioneer,
  .product-capabilities,
  .product-highlight,
  .product-devices {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .product-capabilities-head {
    margin-bottom: 54px;
  }

  .product-capabilities-grid,
  .product-device-grid {
    grid-template-columns: 1fr;
  }

  .product-highlight h2 {
    font-size: clamp(60px, 18vw, 94px);
  }

  .product-device-card {
    min-height: 0;
  }

  .about-item {
    min-height: 0;
  }

  .about h4 {
    margin-top: 22px;
  }

  .about .side-note {
    padding-top: 0;
  }

  .evidence {
    min-height: 520px;
  }

  .footer-links a {
    font-size: 28px;
  }

  .footer-shell {
    min-height: 640px;
  }

  .footer-group {
    grid-template-columns: 74px minmax(0, 1fr);
    column-gap: 22px;
  }

  .footer-legal {
    max-width: 240px;
  }

  .footer-region {
    align-self: end;
  }
}

/* VitaPing Core: product-page composition aligned to the B1 Eye reference. */
.core-eye-page {
  --core-accent: #ff9f0a;
  color: var(--off-white);
  background: #000;
}

.core-eye-page .core-page-mark {
  display: block;
  color: var(--core-accent);
}

.core-main {
  overflow: hidden;
  color: var(--off-white);
  background: #000;
}

.core-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(244, 244, 242, 0.16);
}

.core-hero-eyebrow {
  position: absolute;
  top: 20%;
  left: 50%;
  margin: 0;
  color: rgba(244, 244, 242, 0.27);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  transform: translateX(-50%);
}

.core-hero-product {
  position: absolute;
  top: 29%;
  left: 50%;
  width: 300px;
  height: 230px;
  margin: 0;
  transform: translateX(-50%);
}

.core-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.78) contrast(1.12) drop-shadow(0 30px 36px rgba(0, 0, 0, 0.62));
  animation: coreProductFloat 8s ease-in-out infinite;
}

.core-hero-title {
  position: absolute;
  left: 50%;
  bottom: 18.4%;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  color: var(--core-accent);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateX(-50%);
}

.core-hero-title span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: currentColor;
}

.core-hero-copy,
.core-hero-status {
  position: absolute;
  bottom: 5.4%;
  margin: 0;
  color: rgba(244, 244, 242, 0.53);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.08;
}

.core-hero-copy {
  left: 50%;
  width: 280px;
  text-align: center;
  transform: translateX(-50%);
}

.core-hero-status {
  right: 4.8vw;
  width: 210px;
  text-align: right;
}

.core-hero .core-scroll {
  left: 4.8vw;
  bottom: 4.8%;
  color: rgba(244, 244, 242, 0.9);
  background: rgba(244, 244, 242, 0.1);
}

.core-pioneer {
  position: relative;
  min-height: 180svh;
  overflow: hidden;
  background: #000;
}

.core-pioneer-intro {
  position: absolute;
  top: 9%;
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.core-mini-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #000;
  background: rgba(244, 244, 242, 0.2);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.core-pioneer-intro p {
  margin: 0;
  color: rgba(244, 244, 242, 0.82);
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
}

.core-pioneer-title {
  position: absolute;
  top: 24%;
  left: 50%;
  z-index: 1;
  width: min(1040px, calc(100% - 120px));
  margin: 0;
  color: rgba(244, 244, 242, 0.16);
  font-size: 132px;
  font-style: normal;
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: 0;
  text-align: center;
  transform: translateX(-50%);
}

.core-pioneer-title span,
.core-pioneer-title em {
  display: block;
  font-style: normal;
  font-weight: 300;
}

.core-pioneer-title em {
  color: var(--core-accent);
}

.core-pioneer-product {
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 2;
  width: 360px;
  height: 650px;
  object-fit: contain;
  filter: brightness(0.82) contrast(1.1) drop-shadow(0 52px 52px rgba(0, 0, 0, 0.72));
  transform: translateX(-50%) rotate(12deg);
}

.core-pioneer-meta {
  position: absolute;
  left: 50%;
  bottom: 8%;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  width: min(700px, calc(100% - 120px));
  transform: translateX(-50%);
}

.core-pioneer-meta > p {
  margin: 0;
  color: rgba(244, 244, 242, 0.48);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.08;
}

.core-pioneer-meta > div {
  justify-self: end;
  text-align: right;
}

.core-pioneer-meta span {
  display: block;
  margin-bottom: 8px;
  color: rgba(244, 244, 242, 0.5);
  font-size: 12px;
  font-weight: 300;
}

.core-pioneer-meta strong {
  color: rgba(244, 244, 242, 0.86);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.05;
}

.core-development {
  position: relative;
  min-height: 1500px;
  padding: 120px 0 170px;
  background: #111315;
  border-top: 1px solid rgba(244, 244, 242, 0.06);
}

.core-development > h2 {
  width: min(760px, calc(100% - 96px));
  margin: 0 auto 120px;
  color: rgba(244, 244, 242, 0.93);
  font-size: 68px;
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: 0;
  text-align: center;
}

.core-development-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 100px;
  width: min(930px, calc(100% - 120px));
  margin: 0 auto;
}

.core-development-nav {
  position: sticky;
  top: 132px;
  align-self: start;
  min-height: 390px;
}

.core-development-nav > p {
  margin: 0 0 52px;
  color: rgba(244, 244, 242, 0.83);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.08;
}

.core-development-nav > p span {
  color: var(--core-accent);
}

.core-development-nav nav {
  display: grid;
  gap: 20px;
  width: 34px;
}

.core-development-nav a {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(244, 244, 242, 0.16);
  border-radius: 50%;
  color: rgba(244, 244, 242, 0.72);
  background: rgba(244, 244, 242, 0.1);
  font-size: 12px;
  font-weight: 300;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.core-development-nav a:hover,
.core-development-nav a.is-active {
  color: #111315;
  background: var(--core-accent);
  border-color: var(--core-accent);
}

.core-feature-stack {
  min-width: 0;
}

.core-feature {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 66px;
  min-height: 290px;
  padding: 26px 0 46px;
  border-bottom: 1px solid rgba(244, 244, 242, 0.14);
  scroll-margin-top: 110px;
}

.core-feature + .core-feature {
  padding-top: 54px;
}

.core-feature header b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 24px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #111315;
  background: var(--core-accent);
  font-size: 13px;
  font-weight: 400;
}

.core-feature header h3 {
  margin: 0;
  color: rgba(244, 244, 242, 0.96);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.core-feature-copy h4 {
  max-width: 280px;
  margin: 0 0 36px;
  color: rgba(244, 244, 242, 0.9);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.05;
}

.core-feature-copy p {
  max-width: 390px;
  margin: 0 0 22px;
  color: rgba(244, 244, 242, 0.68);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.12;
}

.core-feature-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.core-feature-copy li {
  position: relative;
  margin: 0 0 5px;
  padding-left: 22px;
  color: rgba(244, 244, 242, 0.52);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.08;
}

.core-feature-copy li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.core-advanced {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  border-top: 1px solid rgba(244, 244, 242, 0.12);
  border-bottom: 1px solid rgba(244, 244, 242, 0.14);
}

.core-advanced-product {
  position: absolute;
  top: 50%;
  width: 360px;
  height: 360px;
  object-fit: contain;
  filter: brightness(0.72) contrast(1.14);
}

.core-advanced-product-left {
  left: -115px;
  transform: translateY(-50%) rotate(-24deg);
}

.core-advanced-product-right {
  right: -115px;
  transform: translateY(-50%) rotate(24deg) scaleX(-1);
}

.core-advanced-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(620px, calc(100% - 96px));
  text-align: center;
}

.core-advanced-copy h2 {
  margin: 0;
  color: rgba(244, 244, 242, 0.94);
  font-size: 46px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.core-advanced-copy h2 em {
  color: var(--core-accent);
  font-style: normal;
  font-weight: 300;
}

.core-advanced-copy > span {
  width: 18px;
  height: 18px;
  margin: 34px 0;
  border-radius: 50%;
  background: var(--core-accent);
}

.core-advanced-copy p {
  max-width: 420px;
  margin: 0 0 32px;
  color: rgba(244, 244, 242, 0.56);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.12;
}

.core-advanced-copy .arrow-link {
  color: var(--core-accent);
}

.core-extension {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 112svh;
  overflow: hidden;
  background: #000;
}

.core-extension h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(244, 244, 242, 0.16);
  font-size: 126px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
}

.core-extension h2 span,
.core-extension h2 em {
  display: block;
  font-style: normal;
  font-weight: 300;
}

.core-extension h2 em {
  color: var(--core-accent);
}

.core-extension img {
  position: absolute;
  z-index: 2;
  width: 390px;
  height: 520px;
  object-fit: contain;
  filter: brightness(0.83) contrast(1.1) drop-shadow(0 36px 46px rgba(0, 0, 0, 0.72));
  animation: coreProductFloat 9s ease-in-out infinite reverse;
}

.core-accent-bridge {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 300px;
  color: #111315;
  background: var(--core-accent);
}

.core-accent-bridge p {
  max-width: 510px;
  margin: 0 0 36px;
  color: rgba(17, 19, 21, 0.78);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.08;
  text-align: center;
}

.core-accent-bridge span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #111315;
}

.core-devices {
  padding: 112px 60px 160px;
  background: #111315;
}

.core-devices > h2 {
  width: min(1160px, 100%);
  margin: 0 auto 110px;
  color: rgba(244, 244, 242, 0.17);
  font-size: 118px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
}

.core-device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.core-device-card {
  min-width: 0;
}

.core-device-card figure {
  position: relative;
  display: grid;
  place-items: center;
  height: 390px;
  margin: 0 0 42px;
  overflow: hidden;
  background: #000;
}

.core-device-card figure img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.08);
  transition: transform 0.55s ease;
}

.core-device-card:hover figure img {
  transform: scale(1.035);
}

.core-device-card figure small {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 4px 12px;
  border-radius: 999px;
  color: rgba(244, 244, 242, 0.88);
  background: rgba(244, 244, 242, 0.12);
  font-size: 12px;
  font-weight: 300;
}

.core-device-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 42px;
}

.core-device-heading h3 {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  margin: 0;
  color: var(--core-accent);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.core-device-heading h3 i {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: currentColor;
}

.core-device-heading p {
  margin: 0;
  color: rgba(244, 244, 242, 0.9);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.05;
  text-align: right;
}

.core-device-heading p span {
  color: rgba(244, 244, 242, 0.38);
  font-size: 11px;
}

.core-device-label {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 244, 242, 0.18);
  color: rgba(244, 244, 242, 0.86);
  font-size: 13px;
  font-weight: 300;
}

.core-device-features {
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
}

.core-device-features li {
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: end;
  min-height: 84px;
  padding: 20px 0 12px;
  border-bottom: 1px solid rgba(244, 244, 242, 0.18);
}

.core-device-features b {
  color: var(--core-accent);
  font-size: 22px;
  font-weight: 300;
}

.core-device-features span {
  color: rgba(244, 244, 242, 0.53);
  font-size: 22px;
  font-weight: 300;
}

.core-device-card .arrow-link {
  color: rgba(244, 244, 242, 0.92);
}

@keyframes coreProductFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .core-hero-status {
    right: 32px;
  }

  .core-pioneer {
    min-height: 1320px;
  }

  .core-pioneer-title {
    width: calc(100% - 48px);
    font-size: 92px;
  }

  .core-pioneer-product {
    width: 320px;
    height: 560px;
  }

  .core-development-layout {
    grid-template-columns: 1fr;
    gap: 58px;
    width: min(720px, calc(100% - 48px));
  }

  .core-development-nav {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    min-height: 0;
  }

  .core-development-nav > p {
    margin: 0;
  }

  .core-development-nav nav {
    display: flex;
    width: auto;
  }

  .core-advanced-product {
    width: 290px;
    height: 290px;
    opacity: 0.7;
  }

  .core-extension h2 {
    font-size: 88px;
  }

  .core-devices {
    padding-left: 24px;
    padding-right: 24px;
  }

  .core-devices > h2 {
    font-size: 88px;
  }

  .core-device-card figure {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .core-eye-page .core-page-mark {
    left: 16px;
    width: 46px;
    height: 27px;
  }

  .core-hero {
    min-height: 820px;
  }

  .core-hero-eyebrow {
    top: 16%;
    font-size: 12px;
  }

  .core-hero-product {
    top: 25%;
    width: 250px;
    height: 260px;
  }

  .core-hero-title {
    bottom: 27%;
    gap: 14px;
    font-size: 32px;
  }

  .core-hero-title span {
    width: 15px;
    height: 15px;
  }

  .core-hero-copy,
  .core-hero-status {
    left: 50%;
    right: auto;
    width: min(300px, calc(100% - 54px));
    text-align: center;
    transform: translateX(-50%);
  }

  .core-hero-copy {
    bottom: 12%;
  }

  .core-hero-status {
    bottom: 7.5%;
  }

  .core-hero .core-scroll {
    left: 18px;
    bottom: 24px;
  }

  .core-pioneer {
    min-height: 1080px;
  }

  .core-pioneer-intro {
    top: 8%;
  }

  .core-pioneer-title {
    top: 25%;
    width: calc(100% - 24px);
    font-size: 54px;
    line-height: 0.92;
  }

  .core-pioneer-product {
    top: 23%;
    width: 240px;
    height: 470px;
  }

  .core-pioneer-meta {
    bottom: 7%;
    grid-template-columns: 1fr;
    gap: 34px;
    width: calc(100% - 44px);
  }

  .core-pioneer-meta > div {
    justify-self: start;
    text-align: left;
  }

  .core-development {
    min-height: 0;
    padding: 90px 0 110px;
  }

  .core-development > h2 {
    width: calc(100% - 34px);
    margin-bottom: 78px;
    font-size: 42px;
  }

  .core-development-layout {
    width: calc(100% - 34px);
  }

  .core-development-nav {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .core-development-nav nav {
    gap: 14px;
  }

  .core-feature {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding-bottom: 62px;
  }

  .core-feature + .core-feature {
    padding-top: 62px;
  }

  .core-feature-copy h4 {
    margin-bottom: 24px;
  }

  .core-advanced {
    min-height: 760px;
  }

  .core-advanced-product {
    top: 24%;
    width: 220px;
    height: 220px;
    opacity: 0.58;
  }

  .core-advanced-product-left {
    left: -98px;
  }

  .core-advanced-product-right {
    right: -98px;
  }

  .core-advanced-copy {
    width: calc(100% - 34px);
  }

  .core-advanced-copy h2 {
    font-size: 34px;
  }

  .core-extension {
    min-height: 760px;
  }

  .core-extension h2 {
    width: calc(100% - 24px);
    font-size: 54px;
  }

  .core-extension img {
    width: 260px;
    height: 430px;
  }

  .core-accent-bridge {
    min-height: 250px;
    padding: 0 28px;
  }

  .core-devices {
    padding: 90px 17px 110px;
  }

  .core-devices > h2 {
    margin-bottom: 72px;
    font-size: 58px;
  }

  .core-device-grid {
    grid-template-columns: 1fr;
    gap: 96px;
  }

  .core-device-card figure {
    height: 310px;
  }

  .core-device-heading h3 {
    font-size: 29px;
  }

  .core-device-features li {
    grid-template-columns: 34% 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .core-hero-product img,
  .core-extension img {
    animation: none;
  }
}

/* VitaPing Care: neural-page composition aligned to the A1 Neuro reference. */
.care-neuro-page {
  --care-accent: #00b982;
  color: var(--off-white);
  background: #000;
}

.care-neuro-page .care-page-mark {
  display: block;
  color: var(--care-accent);
}

.care-neuro-main {
  color: var(--off-white);
  background: #000;
}

.care-neuro-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(244, 244, 242, 0.08);
}

.care-hero-eyebrow {
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 4;
  margin: 0;
  color: rgba(244, 244, 242, 0.28);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  transform: translateX(-50%);
}

.care-horizon {
  position: absolute;
  top: 31%;
  left: 50%;
  z-index: 1;
  width: 122%;
  height: 250px;
  border-top: 2px solid rgba(24, 131, 207, 0.8);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.care-hero-product {
  position: absolute;
  top: 22%;
  left: 50%;
  z-index: 2;
  width: 500px;
  height: 170px;
  object-fit: contain;
  filter: brightness(0.78) contrast(1.12) drop-shadow(0 28px 32px rgba(0, 0, 0, 0.68));
  transform: translateX(-50%);
  animation: careProductFloat 9s ease-in-out infinite;
}

.care-hero-statement {
  position: absolute;
  top: 47.5%;
  left: 50%;
  z-index: 4;
  width: min(560px, calc(100% - 96px));
  margin: 0;
  color: rgba(244, 244, 242, 0.96);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  transform: translateX(-50%);
}

.care-hero-title {
  position: absolute;
  left: 50%;
  bottom: 15.8%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  color: var(--care-accent);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateX(-50%);
}

.care-hero-title span {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.care-hero-copy {
  position: absolute;
  left: 50%;
  bottom: 5.3%;
  z-index: 4;
  width: 370px;
  margin: 0;
  color: rgba(244, 244, 242, 0.58);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.08;
  text-align: center;
  transform: translateX(-50%);
}

.care-hero-category {
  position: absolute;
  right: 4.8vw;
  bottom: 4.8%;
  z-index: 4;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.care-hero-category > p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(244, 244, 242, 0.88);
  font-size: 10px;
  font-weight: 300;
}

.care-hero-category > p i {
  width: 17px;
  height: 17px;
  border-radius: 2px;
  background: var(--care-accent);
}

.care-hero-category > div {
  display: flex;
  gap: 8px;
}

.care-hero-category > div span {
  padding: 4px 12px;
  border-radius: 999px;
  color: rgba(244, 244, 242, 0.9);
  background: rgba(244, 244, 242, 0.1);
  font-size: 12px;
  font-weight: 300;
}

.care-hero-category small {
  color: rgba(244, 244, 242, 0.42);
  font-size: 10px;
  font-weight: 300;
}

.care-neuro-hero .care-scroll {
  left: 4.8vw;
  bottom: 5.1%;
  color: rgba(244, 244, 242, 0.9);
  background: rgba(244, 244, 242, 0.1);
}

.hero-control-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.care-insight {
  position: relative;
  min-height: 982px;
  padding: 136px 0 112px;
  background: #161719;
}

.care-insight-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 100px;
  width: min(930px, calc(100% - 120px));
  margin: 0 auto;
}

.care-insight-label {
  padding-top: 4px;
}

.care-insight-label > span {
  display: block;
  margin-bottom: 20px;
  color: rgba(244, 244, 242, 0.42);
  font-size: 12px;
  font-weight: 300;
}

.care-insight-label h2 {
  margin: 0;
  color: rgba(244, 244, 242, 0.25);
  font-size: 42px;
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: 0;
}

.care-insight-article {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 244, 242, 0.18);
}

.care-insight-tags,
.care-related-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.care-insight-tags span,
.care-related-tags span {
  padding: 3px 11px;
  border-radius: 999px;
  color: rgba(244, 244, 242, 0.62);
  background: rgba(244, 244, 242, 0.08);
  font-size: 10px;
  font-weight: 300;
  white-space: nowrap;
}

.care-insight-tags i {
  width: 20px;
  height: 1px;
  margin-left: auto;
  background: var(--care-accent);
}

.care-insight-article > h3,
.care-insight-article > p {
  width: 300px;
  margin-left: auto;
}

.care-insight-article > h3 {
  margin-top: 42px;
  margin-bottom: 30px;
  color: rgba(244, 244, 242, 0.95);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.care-insight-article > p {
  margin-top: 0;
  margin-bottom: 18px;
  color: rgba(244, 244, 242, 0.64);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.16;
}

.care-insight-article > .care-insight-close {
  color: rgba(244, 244, 242, 0.9);
}

.care-related-note {
  position: relative;
  margin-top: 58px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 244, 242, 0.18);
}

.care-related-note > a {
  position: absolute;
  top: 14px;
  right: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--care-accent);
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
}

.care-related-note > p {
  width: 300px;
  margin: 24px 0 0;
  color: rgba(244, 244, 242, 0.88);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.08;
}

.care-neuro-page .care-contact {
  min-height: 428px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.care-neuro-page .care-contact .arrow-link {
  color: #0b9169;
}

.care-neuro-page .footer,
.care-neuro-page .footer-shell {
  min-height: 568px;
}

@keyframes careProductFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@media (max-width: 980px) {
  .care-hero-product {
    width: 430px;
  }

  .care-hero-category {
    right: 30px;
  }

  .care-insight-grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 62px;
    width: min(760px, calc(100% - 48px));
  }
}

@media (max-width: 640px) {
  .care-neuro-page .care-page-mark {
    left: 16px;
    width: 46px;
    height: 27px;
  }

  .care-neuro-hero {
    min-height: 850px;
  }

  .care-hero-eyebrow {
    top: 14%;
    font-size: 12px;
  }

  .care-horizon {
    top: 25%;
    width: 145%;
    height: 180px;
  }

  .care-hero-product {
    top: 19%;
    width: 340px;
    height: 165px;
  }

  .care-hero-statement {
    top: 43%;
    width: calc(100% - 40px);
    font-size: 23px;
  }

  .care-hero-title {
    bottom: 25%;
    gap: 14px;
    font-size: 32px;
  }

  .care-hero-title span {
    width: 15px;
    height: 15px;
  }

  .care-hero-copy {
    bottom: 13.5%;
    width: calc(100% - 54px);
  }

  .care-hero-category {
    right: 18px;
    bottom: 3.2%;
    gap: 6px;
  }

  .care-hero-category > p,
  .care-hero-category small {
    display: none;
  }

  .care-hero-category > div span {
    padding: 3px 9px;
    font-size: 10px;
  }

  .care-neuro-hero .care-scroll {
    left: 18px;
    bottom: 22px;
  }

  .care-insight {
    min-height: 0;
    padding: 90px 0 110px;
  }

  .care-insight-grid {
    grid-template-columns: 1fr;
    gap: 62px;
    width: calc(100% - 34px);
  }

  .care-insight-label h2 {
    font-size: 38px;
  }

  .care-insight-tags,
  .care-related-tags {
    flex-wrap: wrap;
  }

  .care-insight-tags i {
    display: none;
  }

  .care-insight-article > h3,
  .care-insight-article > p {
    width: calc(100% - 56px);
    margin-left: 56px;
  }

  .care-related-note > p {
    width: 100%;
  }

  .care-insight-article > h3 {
    margin-top: 36px;
  }

  .care-related-note {
    margin-top: 52px;
    margin-left: 56px;
    padding-right: 38px;
  }

  .care-neuro-page .care-contact {
    min-height: 0;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .care-neuro-page .footer {
    min-height: auto;
  }

  .care-neuro-page .footer-shell {
    min-height: 640px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .care-hero-product {
    animation: none;
  }
}

/* VitaPing Field: A1 Sense composition with the Field identity object. */
.field-sense-page {
  --core-accent: #ff5102;
}

.field-sense-page .core-hero-title span {
  border-radius: 5px;
}

.field-hero-product {
  top: 25%;
  width: 280px;
  height: 280px;
}

.field-hero-product img,
.field-pioneer-product,
.field-advanced-product,
.field-extension img {
  filter: brightness(0.92) contrast(1.12) drop-shadow(0 32px 34px rgba(0, 0, 0, 0.72));
}

.field-pioneer-product {
  top: 21%;
  width: 330px;
  height: 600px;
  transform: translateX(-50%) rotate(5deg);
}

.field-advanced-product {
  object-fit: contain;
}

.field-extension img {
  width: 390px;
  height: 480px;
  object-fit: contain;
}

/* TGMNI: B1 Eye rhythm with a separate electric-blue intelligence identity. */
.tgmni-eye-page {
  --core-accent: #18a8ff;
}

.tgmni-eye-page .core-hero-title span {
  border-radius: 4px;
  transform: rotate(45deg);
}

.tgmni-orb {
  position: absolute;
  z-index: 2;
  width: 280px;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 168, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(24, 168, 255, 0.22), inset 0 0 55px rgba(24, 168, 255, 0.08);
}

.tgmni-orb::before,
.tgmni-orb::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(244, 244, 242, 0.28);
  border-radius: 50%;
}

.tgmni-orb::after {
  inset: 31%;
  border-color: var(--core-accent);
  box-shadow: 0 0 34px rgba(24, 168, 255, 0.28);
}

.tgmni-orb i {
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--core-accent);
  box-shadow: 0 0 18px rgba(24, 168, 255, 0.88);
}

.tgmni-orb i:nth-child(1) {
  top: 8%;
  left: 47%;
}

.tgmni-orb i:nth-child(2) {
  top: 48%;
  right: 7%;
}

.tgmni-orb i:nth-child(3) {
  bottom: 9%;
  left: 35%;
}

.tgmni-orb i:nth-child(4) {
  top: 43%;
  left: 13%;
  width: 5px;
  height: 5px;
  background: rgba(244, 244, 242, 0.9);
}

.tgmni-hero-orb {
  top: 27%;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg) scaleY(0.46);
}

.tgmni-pioneer-orb {
  top: 24%;
  left: 50%;
  width: 410px;
  transform: translateX(-50%) rotate(14deg);
  box-shadow: 0 0 110px rgba(24, 168, 255, 0.18), inset 0 0 70px rgba(24, 168, 255, 0.08);
}

.tgmni-advanced-orb {
  top: 50%;
  width: 330px;
  opacity: 0.82;
}

.tgmni-advanced-orb-left {
  left: -105px;
  transform: translateY(-50%) rotate(-18deg);
}

.tgmni-advanced-orb-right {
  right: -105px;
  transform: translateY(-50%) rotate(18deg);
}

.tgmni-extension-orb {
  top: 50%;
  left: 50%;
  width: 430px;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.tgmni-card-orb {
  position: relative;
  width: 230px;
}

.tgmni-eye-page .core-device-card figure:has(.tgmni-card-orb) {
  overflow: hidden;
}

.tgmni-eye-page .core-device-card figure img {
  filter: brightness(0.98) contrast(1.08) drop-shadow(0 26px 30px rgba(0, 0, 0, 0.55));
}

@media (max-width: 760px) {
  .field-hero-product {
    top: 24%;
    width: 220px;
    height: 230px;
  }

  .field-pioneer-product {
    top: 24%;
    width: 235px;
    height: 440px;
  }

  .field-extension img {
    width: 245px;
    height: 370px;
  }

  .tgmni-hero-orb {
    top: 28%;
    width: 220px;
  }

  .tgmni-pioneer-orb {
    top: 27%;
    width: 255px;
  }

  .tgmni-advanced-orb {
    top: 24%;
    width: 210px;
    opacity: 0.58;
  }

  .tgmni-advanced-orb-left {
    left: -90px;
  }

  .tgmni-advanced-orb-right {
    right: -90px;
  }

  .tgmni-extension-orb {
    width: 250px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .tgmni-hero-orb,
  .tgmni-pioneer-orb,
  .tgmni-extension-orb {
    animation: tgmniOrbit 10s ease-in-out infinite;
  }
}

@keyframes tgmniOrbit {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -12px;
  }
}

/* Programs: light introduction and saturated program chapters. */
.programs-page {
  background: var(--off-white);
}

.programs-page .site-nav a[aria-current="page"],
.updates-page .site-nav a[aria-current="page"] {
  color: var(--blue);
}

.programs-page .site-nav.nav-on-dark a[aria-current="page"] {
  color: var(--off-white);
}

.programs-main,
.updates-main {
  overflow: hidden;
}

.programs-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
}

.programs-hero-eyebrow {
  position: absolute;
  top: 46%;
  left: 50%;
  margin: 0;
  font-size: 22px;
  font-weight: 300;
  transform: translate(-50%, -50%);
}

.programs-hero h1 {
  position: absolute;
  left: 50%;
  bottom: 17%;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: var(--blue);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  transform: translateX(-50%);
}

.programs-drop {
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: currentColor;
  transform: rotate(-45deg);
}

.programs-hero-copy {
  position: absolute;
  bottom: 5.2%;
  left: 50%;
  width: 310px;
  margin: 0;
  color: rgba(17, 19, 21, 0.48);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.08;
  text-align: center;
  transform: translateX(-50%);
}

.programs-hero-category {
  position: absolute;
  right: 4.8vw;
  bottom: 4.9%;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.programs-hero-category p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 12px;
  font-weight: 300;
}

.programs-hero-category p i {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--blue);
}

.programs-hero-category > div {
  display: flex;
  gap: 7px;
}

.programs-hero-category span,
.programs-overview-chips span {
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(17, 19, 21, 0.07);
  font-size: 13px;
  font-weight: 300;
  white-space: nowrap;
}

.programs-hero .programs-scroll {
  left: 4.8vw;
  bottom: 4.8%;
}

.programs-overview {
  min-height: 104svh;
  padding: 150px 0 130px;
}

.programs-overview-grid {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 310px;
  gap: 68px;
  width: min(990px, calc(100% - 120px));
  margin: 0 auto;
}

.programs-overview-grid > aside {
  display: grid;
  align-content: start;
  color: rgba(17, 19, 21, 0.72);
  font-size: 14px;
  font-weight: 300;
}

.programs-overview-grid > aside span {
  color: rgba(17, 19, 21, 0.42);
}

.programs-overview-grid > aside strong {
  font-weight: 300;
}

.programs-overview-copy {
  position: relative;
  z-index: 2;
}

.programs-overview-copy h2 {
  max-width: 580px;
  margin: 0 0 44px;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

.programs-overview-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}

.programs-overview-chips span {
  color: var(--blue);
  border: 1px solid currentColor;
  background: transparent;
}

.programs-overview-copy > p {
  max-width: 340px;
  margin: 0 0 42px;
  color: rgba(17, 19, 21, 0.54);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.1;
}

.programs-overview-copy .arrow-link {
  color: var(--blue);
}

.programs-product-study {
  position: relative;
  min-height: 530px;
}

.programs-product-study img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 34px 32px rgba(17, 19, 21, 0.15));
}

.programs-product-study img:first-child {
  top: 0;
  right: 60px;
  width: 250px;
  height: 330px;
  transform: rotate(-8deg);
}

.programs-product-study img:last-child {
  right: -10px;
  bottom: 0;
  width: 190px;
  height: 250px;
  transform: rotate(8deg);
}

.programs-chapters {
  color: var(--off-white);
  background: var(--blue);
}

.programs-chapters-shell {
  width: min(920px, calc(100% - 120px));
  margin: 0 auto;
  padding: 130px 0 150px;
}

.programs-chapters-head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 300px;
  gap: 68px;
  align-items: start;
  min-height: 240px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(244, 244, 242, 0.24);
}

.programs-section-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--off-white);
  font-size: 20px;
  line-height: 1;
}

.programs-chapters-head h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.programs-chapters-head p {
  margin: 0;
  color: rgba(244, 244, 242, 0.72);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.1;
}

.program-accordion {
  border-bottom: 1px solid rgba(244, 244, 242, 0.24);
}

.program-chapter {
  border-bottom: 1px solid rgba(244, 244, 242, 0.24);
}

.program-chapter:last-child {
  border-bottom: 0;
}

.program-chapter-toggle {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 34px;
  gap: 68px;
  align-items: center;
  width: 100%;
  min-height: 106px;
  padding: 0;
  text-align: left;
}

.program-chapter-toggle span {
  color: rgba(244, 244, 242, 0.64);
  font-size: 15px;
  font-weight: 300;
}

.program-chapter-toggle strong {
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
}

.program-chapter-toggle i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(244, 244, 242, 0.64);
  border-radius: 50%;
  font-style: normal;
  font-size: 17px;
}

.program-chapter-panel {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 300px;
  gap: 68px;
  min-height: 420px;
  padding: 38px 0 74px;
}

.program-chapter-panel::before {
  content: "";
}

.program-chapter-panel > div {
  align-self: center;
}

.program-chapter-panel p {
  max-width: 390px;
  margin: 0 0 40px;
  color: rgba(244, 244, 242, 0.76);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.12;
}

.program-chapter-panel .arrow-link {
  color: var(--off-white);
}

.program-chapter-panel img {
  align-self: center;
  width: 100%;
  height: 300px;
  object-fit: contain;
  filter: brightness(0.94) contrast(1.08) drop-shadow(0 34px 34px rgba(0, 0, 0, 0.25));
}

.programs-pilot-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 110px;
  width: min(960px, calc(100% - 120px));
  margin: 0 auto;
  padding: 150px 0;
}

.programs-pilot-cta span {
  color: rgba(17, 19, 21, 0.44);
  font-size: 14px;
  font-weight: 300;
}

.programs-pilot-cta h2 {
  max-width: 420px;
  margin: 32px 0 0;
  font-size: 54px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.programs-pilot-cta p {
  margin: 44px 0 46px;
  color: rgba(17, 19, 21, 0.56);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.1;
}

.programs-pilot-cta .arrow-link,
.programs-contact .arrow-link {
  color: var(--blue);
}

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

/* Updates: dark editorial record inspired by the Augen updates page. */
.updates-page {
  color: var(--off-white);
  background: var(--off-black);
}

.updates-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--off-black);
  border-bottom: 1px solid var(--line-dark);
}

.updates-hero-eyebrow {
  position: absolute;
  top: 46%;
  left: 50%;
  margin: 0;
  color: rgba(244, 244, 242, 0.9);
  font-size: 24px;
  font-weight: 300;
  transform: translate(-50%, -50%);
}

.updates-hero h1 {
  position: absolute;
  left: 50%;
  bottom: 18%;
  margin: 0;
  color: var(--blue);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  transform: translateX(-50%);
}

.updates-hero > p:last-of-type {
  position: absolute;
  bottom: 5.4%;
  left: 50%;
  width: 390px;
  margin: 0;
  color: rgba(244, 244, 242, 0.52);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.08;
  text-align: center;
  transform: translateX(-50%);
}

.updates-hero .updates-scroll {
  left: 4.8vw;
  bottom: 4.8%;
  color: rgba(244, 244, 242, 0.9);
  background: rgba(244, 244, 242, 0.1);
}

.updates-records {
  background: var(--off-black);
  padding: 150px 0 100px;
}

.updates-records-head {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 90px;
  width: min(1060px, calc(100% - 120px));
  margin: 0 auto;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--line-dark);
}

.updates-records-head p {
  margin: 0;
  color: rgba(244, 244, 242, 0.5);
  font-size: 14px;
  font-weight: 300;
}

.updates-records-head h2 {
  max-width: 680px;
  margin: 0;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.update-record {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 290px;
  gap: 80px;
  width: min(1060px, calc(100% - 120px));
  min-height: 680px;
  margin: 0 auto;
  padding: 110px 0;
  border-bottom: 1px solid var(--line-dark);
}

.update-record-meta {
  display: grid;
  align-content: start;
  gap: 8px;
}

.update-record-meta span {
  color: var(--blue);
  font-size: 32px;
  font-weight: 300;
}

.update-record-meta strong {
  margin-bottom: 22px;
  font-size: 17px;
  font-weight: 300;
}

.update-record-meta small {
  color: rgba(244, 244, 242, 0.4);
  font-size: 13px;
  font-weight: 300;
}

.update-record-copy h3 {
  max-width: 500px;
  margin: 0 0 52px;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0;
}

.update-record-copy > p {
  max-width: 470px;
  margin: 0 0 28px;
  color: rgba(244, 244, 242, 0.6);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.16;
}

.update-record-copy .arrow-link {
  margin-top: 40px;
  color: var(--blue);
}

.update-status {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 16px;
  max-width: 470px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.update-status span {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.update-status p {
  margin: 0;
  color: rgba(244, 244, 242, 0.48);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.15;
}

.update-record figure {
  align-self: center;
  margin: 0;
}

.update-record figure img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  filter: brightness(0.92) contrast(1.1) drop-shadow(0 38px 36px rgba(0, 0, 0, 0.44));
}

.update-record figcaption {
  margin-top: 22px;
  color: rgba(244, 244, 242, 0.36);
  font-size: 12px;
  font-weight: 300;
  text-align: right;
}

.update-governance-visual {
  position: relative;
  align-self: center;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(8, 123, 232, 0.84);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(8, 123, 232, 0.18), inset 0 0 48px rgba(8, 123, 232, 0.08);
}

.update-governance-visual::before,
.update-governance-visual::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(244, 244, 242, 0.2);
  border-radius: inherit;
}

.update-governance-visual::after {
  inset: 36%;
  border-color: var(--blue);
}

.update-governance-visual i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(8, 123, 232, 0.84);
}

.update-governance-visual i:nth-child(1) { top: 8%; left: 47%; }
.update-governance-visual i:nth-child(2) { top: 48%; right: 7%; }
.update-governance-visual i:nth-child(3) { bottom: 9%; left: 35%; }
.update-governance-visual i:nth-child(4) { top: 43%; left: 13%; }

.update-governance-visual-square {
  border-radius: 6px;
  transform: rotate(10deg);
}

.updates-support {
  color: var(--text);
  background: var(--off-white);
}

.updates-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1060px, calc(100% - 120px));
  margin: 0 auto;
  padding: 130px 0;
}

.updates-support article {
  min-height: 300px;
  padding: 0 50px;
  border-left: 1px solid var(--line-light);
}

.updates-support article:last-child {
  border-right: 1px solid var(--line-light);
}

.updates-support article > span {
  color: rgba(17, 19, 21, 0.42);
  font-size: 13px;
  font-weight: 300;
}

.updates-support h2 {
  margin: 50px 0 24px;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0;
}

.updates-support p {
  min-height: 74px;
  margin: 0 0 38px;
  color: rgba(17, 19, 21, 0.56);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.12;
}

.updates-support .arrow-link {
  color: var(--blue);
}

@media (max-width: 920px) {
  .programs-overview-grid {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .programs-product-study {
    grid-column: 2;
    width: 360px;
    min-height: 400px;
  }

  .programs-chapters-head,
  .program-chapter-toggle,
  .program-chapter-panel {
    grid-template-columns: 120px minmax(0, 1fr) 50px;
    gap: 38px;
  }

  .program-chapter-panel img {
    grid-column: 2 / 4;
    width: 280px;
    justify-self: end;
  }

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

  .update-record figure,
  .update-governance-visual {
    grid-column: 2;
    width: 260px;
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .programs-hero-eyebrow,
  .updates-hero-eyebrow {
    top: 39%;
    width: calc(100% - 40px);
    font-size: 20px;
    text-align: center;
  }

  .programs-hero h1,
  .updates-hero h1 {
    bottom: 23%;
    font-size: 34px;
  }

  .programs-drop {
    width: 16px;
    height: 16px;
  }

  .programs-hero-copy,
  .updates-hero > p:last-of-type {
    bottom: 10%;
    width: calc(100% - 64px);
  }

  .programs-hero-category {
    display: none;
  }

  .programs-hero .programs-scroll,
  .updates-hero .updates-scroll {
    left: 18px;
    bottom: 5%;
  }

  .programs-overview {
    min-height: 0;
    padding: 110px 0 90px;
  }

  .programs-overview-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    width: calc(100% - 34px);
  }

  .programs-overview-copy h2 {
    font-size: 36px;
  }

  .programs-overview-copy > p {
    max-width: 100%;
  }

  .programs-product-study {
    grid-column: 1;
    width: 100%;
    min-height: 380px;
  }

  .programs-product-study img:first-child {
    right: 36px;
    width: 220px;
    height: 270px;
  }

  .programs-product-study img:last-child {
    right: 0;
    width: 160px;
    height: 210px;
  }

  .programs-chapters-shell {
    width: calc(100% - 34px);
    padding: 90px 0 110px;
  }

  .programs-chapters-head {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 22px;
    min-height: 0;
  }

  .programs-chapters-head h2 {
    font-size: 34px;
  }

  .programs-chapters-head p {
    grid-column: 2;
  }

  .program-chapter-toggle {
    grid-template-columns: 50px minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: 92px;
  }

  .program-chapter-toggle strong {
    font-size: 20px;
    line-height: 1.08;
  }

  .program-chapter-toggle i {
    width: 28px;
    height: 28px;
  }

  .program-chapter-panel {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 28px 0 60px;
  }

  .program-chapter-panel > div {
    grid-column: 2;
  }

  .program-chapter-panel img {
    grid-column: 2;
    width: 100%;
    height: 230px;
  }

  .programs-pilot-cta {
    grid-template-columns: 1fr;
    gap: 55px;
    width: calc(100% - 34px);
    padding: 100px 0;
  }

  .programs-pilot-cta h2 {
    font-size: 44px;
  }

  .programs-pilot-cta p {
    margin-top: 0;
  }

  .updates-records {
    padding: 110px 0 70px;
  }

  .updates-records-head {
    grid-template-columns: 1fr;
    gap: 45px;
    width: calc(100% - 34px);
    padding-bottom: 70px;
  }

  .updates-records-head h2 {
    font-size: 42px;
  }

  .update-record {
    grid-template-columns: 1fr;
    gap: 52px;
    width: calc(100% - 34px);
    min-height: 0;
    padding: 80px 0;
  }

  .update-record-copy h3 {
    font-size: 34px;
  }

  .update-record figure,
  .update-governance-visual {
    grid-column: 1;
    justify-self: center;
  }

  .update-record figure {
    width: 100%;
  }

  .update-record figure img {
    height: 260px;
  }

  .update-governance-visual {
    width: 220px;
  }

  .updates-support-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 34px);
    padding: 90px 0;
  }

  .updates-support article,
  .updates-support article:last-child {
    min-height: 0;
    padding: 54px 18px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .updates-support article:last-child {
    border-bottom: 0;
  }

  .updates-support h2 {
    margin-top: 32px;
  }

  .updates-support p {
    min-height: 0;
  }
}

/* Contact: institutional enquiry page aligned with the current VitaPing system. */
.contact-page {
  background: var(--off-white);
}

.contact-page-main {
  overflow: hidden;
}

.contact-page-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
}

.contact-hero-copy {
  position: absolute;
  top: 24%;
  left: max(7vw, calc((100vw - 1104px) / 2));
  z-index: 2;
  width: min(570px, 48vw);
}

.contact-hero-copy > p:first-child {
  margin: 0 0 38px;
  color: rgba(17, 19, 21, 0.45);
  font-size: 14px;
  font-weight: 300;
}

.contact-hero-copy h1 {
  margin: 0 0 40px;
  font-size: 62px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-hero-copy > p:nth-of-type(2) {
  max-width: 440px;
  margin: 0 0 44px;
  color: rgba(17, 19, 21, 0.56);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.1;
}

.contact-hero-copy .arrow-link {
  color: var(--blue);
}

.contact-hero-products {
  position: absolute;
  top: 18%;
  right: max(4vw, calc((100vw - 1220px) / 2));
  width: 430px;
  height: 530px;
}

.contact-hero-products img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 42px 36px rgba(17, 19, 21, 0.16));
}

.contact-hero-products img:first-child {
  top: 0;
  left: 0;
  width: 290px;
  height: 370px;
  transform: rotate(-8deg);
}

.contact-hero-products img:last-child {
  right: 0;
  bottom: 0;
  width: 220px;
  height: 280px;
  transform: rotate(8deg);
}

.contact-hero-status {
  position: absolute;
  left: 56%;
  bottom: 5%;
  display: grid;
  justify-items: start;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  text-align: left;
}

.contact-hero-status span {
  color: rgba(17, 19, 21, 0.42);
}

.contact-hero-status strong {
  font-weight: 300;
}

.contact-page-hero .contact-page-scroll {
  left: 4.8vw;
  bottom: 4.8%;
}

.contact-inquiry {
  background: var(--off-black);
  padding: 150px 0;
}

.contact-inquiry-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 110px;
  width: min(1060px, calc(100% - 120px));
  margin: 0 auto;
}

.contact-inquiry-intro > span,
.contact-audiences-head > span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 300;
}

.contact-inquiry-intro h2 {
  margin: 48px 0 34px;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.contact-inquiry-intro > p {
  margin: 0;
  color: rgba(244, 244, 242, 0.58);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.16;
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.contact-direct span {
  margin-bottom: 8px;
  color: rgba(244, 244, 242, 0.36);
  font-size: 12px;
  font-weight: 300;
}

.contact-direct a {
  width: fit-content;
  color: rgba(244, 244, 242, 0.86);
  font-size: 15px;
  font-weight: 300;
}

.contact-direct a:hover {
  color: var(--blue);
}

.contact-page-form {
  min-width: 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-bottom: 34px;
}

.contact-page-form label {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.contact-page-form label > span {
  color: rgba(244, 244, 242, 0.48);
  font-size: 12px;
  font-weight: 300;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(244, 244, 242, 0.25);
  border-radius: 0;
  outline: 0;
  color: var(--off-white);
  background: transparent;
  font: 300 17px/1.2 var(--font);
  letter-spacing: 0;
  transition: border-color 0.18s ease;
}

.contact-page-form input,
.contact-page-form select {
  height: 48px;
}

.contact-page-form textarea {
  min-height: 150px;
  padding: 14px 0;
  resize: vertical;
}

.contact-page-form select {
  color-scheme: dark;
}

.contact-page-form textarea::placeholder {
  color: rgba(244, 244, 242, 0.28);
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  border-color: var(--blue);
}

.contact-message {
  margin-top: 42px;
}

.contact-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 14px !important;
  margin-top: 34px;
}

.contact-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.contact-consent span {
  color: rgba(244, 244, 242, 0.5) !important;
  line-height: 1.3;
}

.contact-consent a {
  color: rgba(244, 244, 242, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
}

.contact-form-actions button {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  min-height: 44px;
  padding: 0 8px 0 18px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--off-white);
  background: var(--blue);
  font-size: 14px;
  font-weight: 300;
}

.contact-form-actions button i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--off-white);
  font-style: normal;
}

.contact-form-actions > p {
  max-width: 210px;
  margin: 0;
  color: rgba(244, 244, 242, 0.34);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.2;
  text-align: right;
}

.contact-form-success {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 20px;
  margin-top: 42px;
  padding: 28px 0;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--line-dark);
}

.contact-form-success:not([hidden]) {
  display: grid;
}

.contact-form-success > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--off-black);
  background: var(--blue);
  font-size: 19px;
}

.contact-form-success strong {
  font-size: 18px;
  font-weight: 300;
}

.contact-form-success p {
  margin: 8px 0 0;
  color: rgba(244, 244, 242, 0.54);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
}

.contact-audiences {
  padding: 130px 0 150px;
}

.contact-audiences-head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 70px;
  width: min(1060px, calc(100% - 120px));
  margin: 0 auto 90px;
}

.contact-audiences-head h2 {
  max-width: 650px;
  margin: 0;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.contact-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1060px, calc(100% - 120px));
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact-audience-grid article {
  min-height: 360px;
  padding: 36px 40px;
  border-left: 1px solid var(--line-light);
}

.contact-audience-grid article:last-child {
  border-right: 1px solid var(--line-light);
}

.contact-audience-grid article > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 300;
}

.contact-audience-grid h3 {
  margin: 60px 0 26px;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0;
}

.contact-audience-grid p {
  min-height: 92px;
  margin: 0 0 38px;
  color: rgba(17, 19, 21, 0.56);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.16;
}

.contact-audience-grid .arrow-link {
  color: var(--blue);
}

@media (max-width: 900px) {
  .contact-hero-copy {
    width: 52vw;
  }

  .contact-hero-copy h1 {
    font-size: 50px;
  }

  .contact-hero-products {
    right: -20px;
    width: 360px;
  }

  .contact-inquiry-grid {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 70px;
  }
}

@media (max-width: 640px) {
  .contact-page-hero {
    min-height: 920px;
  }

  .contact-hero-copy {
    top: 120px;
    left: 17px;
    width: calc(100% - 34px);
  }

  .contact-hero-copy > p:first-child {
    margin-bottom: 28px;
  }

  .contact-hero-copy h1 {
    max-width: 350px;
    font-size: 46px;
  }

  .contact-hero-copy > p:nth-of-type(2) {
    max-width: 330px;
    font-size: 15px;
  }

  .contact-hero-products {
    top: auto;
    right: 8px;
    bottom: 90px;
    width: 300px;
    height: 340px;
  }

  .contact-hero-products img:first-child {
    width: 205px;
    height: 245px;
  }

  .contact-hero-products img:last-child {
    width: 145px;
    height: 190px;
  }

  .contact-hero-status {
    display: none;
  }

  .contact-page-hero .contact-page-scroll {
    left: 18px;
    bottom: 30px;
  }

  .contact-inquiry {
    padding: 100px 0;
  }

  .contact-inquiry-grid {
    grid-template-columns: 1fr;
    gap: 90px;
    width: calc(100% - 34px);
  }

  .contact-inquiry-intro h2 {
    font-size: 38px;
  }

  .contact-direct {
    margin-top: 52px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .contact-message {
    margin-top: 30px;
  }

  .contact-form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form-actions > p {
    max-width: 280px;
    text-align: left;
  }

  .contact-audiences {
    padding: 100px 0;
  }

  .contact-audiences-head {
    grid-template-columns: 1fr;
    gap: 40px;
    width: calc(100% - 34px);
    margin-bottom: 70px;
  }

  .contact-audiences-head h2 {
    font-size: 40px;
  }

  .contact-audience-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 34px);
  }

  .contact-audience-grid article,
  .contact-audience-grid article:last-child {
    min-height: 0;
    padding: 42px 18px 56px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .contact-audience-grid article:last-child {
    border-bottom: 0;
  }

  .contact-audience-grid h3 {
    margin-top: 38px;
  }

  .contact-audience-grid p {
    min-height: 0;
  }
}

/* Mobile navigation and controls aligned to the Augen mobile behavior. */
@media (max-width: 640px) {
  .site-nav .nav-mark,
  .site-nav .nav-toggle {
    position: relative;
    z-index: 3;
  }

  .nav-toggle span {
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .nav-toggle.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav .nav-list.active {
    position: absolute;
    top: -16px;
    left: 50%;
    z-index: 1;
    display: flex;
    width: 100vw;
    min-height: 338px;
    padding: 112px 20px 30px;
    border-radius: 0;
    color: var(--text);
    background: rgba(244, 244, 242, 0.94);
    box-shadow: 0 20px 50px rgba(17, 19, 21, 0.08);
    backdrop-filter: blur(24px);
    transform: translateX(-50%);
  }

  .site-nav .nav-list.active::before {
    content: "Navigation";
    position: absolute;
    top: 47px;
    left: 50%;
    font-size: 18px;
    font-weight: 300;
    transform: translateX(-50%);
  }

  .site-nav .nav-list.active::after {
    content: "";
    position: absolute;
    top: 91px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: rgba(17, 19, 21, 0.16);
  }

  .site-nav .nav-list.active li {
    width: 100%;
  }

  .site-nav .nav-list.active a,
  .site-nav .nav-list.active button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 36px;
    padding: 0;
    color: rgba(17, 19, 21, 0.94);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    text-align: left;
  }

  .site-nav .nav-list.active span {
    flex: 0 0 42px;
    width: 42px;
    color: rgba(17, 19, 21, 0.58);
    font-size: 10px;
  }

  .site-nav.nav-on-dark .nav-list.active {
    color: var(--off-white);
    background: rgba(17, 19, 21, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  }

  .site-nav.nav-on-dark .nav-list.active::after {
    background: rgba(244, 244, 242, 0.18);
  }

  .site-nav.nav-on-dark .nav-list.active a,
  .site-nav.nav-on-dark .nav-list.active button {
    color: rgba(244, 244, 242, 0.94);
  }

  .site-nav.nav-on-dark .nav-list.active span {
    color: rgba(244, 244, 242, 0.5);
  }

  .site-nav.products-open .nav-list {
    display: none;
  }

  .site-nav.products-open .nav-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .site-nav.products-open .nav-mark {
    background: rgba(17, 19, 21, 0.07);
    box-shadow: 0 0 0 1px rgba(17, 19, 21, 0.06);
  }

  .site-nav.nav-on-dark.products-open .nav-mark {
    background: rgba(244, 244, 242, 0.1);
    box-shadow: 0 0 0 1px rgba(244, 244, 242, 0.08);
  }

  .site-nav .products-dropdown {
    top: -16px;
    left: 50%;
    right: auto;
    z-index: 2;
    width: 100vw;
    min-height: 338px;
    padding: 24px 20px 30px 86px;
    border-radius: 0;
    transform: translateX(-50%);
  }

  .site-nav .products-dropdown-head {
    min-height: 48px;
  }

  .site-nav .products-dropdown-head p {
    font-size: 20px;
  }

  .site-nav .products-dropdown-list {
    width: min(300px, 100%);
  }

  .core-eye-page .core-page-mark,
  .care-neuro-page .care-page-mark {
    display: none !important;
  }

  .programs-hero .programs-scroll,
  .updates-hero .updates-scroll {
    left: calc(50% - 9px);
  }

  .hero-explore {
    max-width: calc(100% - 34px);
    align-items: center;
  }

  .hero-explore a {
    flex: 0 0 auto;
    min-width: max-content;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .update-link {
    bottom: 274px;
  }

  .hero h1 {
    bottom: 216px;
  }

  .hero-explore p {
    flex: 0 0 100%;
    width: 100%;
    margin-right: 0;
  }
}

/* Center the homepage lockup above the hero visual on mobile, matching Augen. */
@media (max-width: 640px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding-top: 26svh;
  }

  .update-link,
  .hero h1,
  .hero-explore {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .update-link {
    margin: 0;
    font-size: 14px;
    line-height: 1.1;
    text-align: center;
  }

  .hero h1 {
    width: 100%;
    max-width: 360px;
    margin: 8px 0 0;
    font-size: clamp(24px, 7vw, 28px);
    line-height: 1.05;
    text-align: center;
  }

  .hero-explore {
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin-top: 18px;
    gap: 6px;
  }

  .hero-explore p {
    display: none;
  }

  .hero-explore a {
    height: 24px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
  }
}

/* Keep the homepage product story as one Augen-style composition on mobile. */
@media (max-width: 640px) {
  .site-nav .products-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    transform: none;
  }

  .evidence-grid > * {
    min-width: 0;
  }

  .products {
    padding-bottom: 50px;
  }

  .product-hero,
  .product-head {
    min-height: 0;
    height: clamp(457px, calc(102.7vw + 211px), 611px);
  }

  .product-head {
    display: block;
  }

  .product-head p {
    top: clamp(54px, 22.7vw, 88px);
    width: 100%;
    text-align: center;
  }

  .product-head h2 {
    position: absolute;
    top: clamp(169px, calc(42.7vw + 67px), 233px);
    left: 50%;
    width: min(350px, calc(100% - 24px));
    margin: 0;
    font-size: 80px;
    line-height: 0.9;
    transform: translateX(-50%);
  }

  .hero-product-device {
    top: 55%;
    width: min(200px, 51.3vw);
    height: min(200px, 51.3vw);
  }

  .products > .product-copy {
    width: min(350px, calc(100% - clamp(24px, 10.25vw, 40px)));
    min-width: 0;
    gap: clamp(40px, 18vw, 68px);
  }

  .product-copy > p,
  .product-copy > div {
    min-width: 0;
  }

  .product-copy > p {
    width: 100%;
    max-width: 274px;
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
    line-height: 1.2;
  }

  .product-copy > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-pills {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 24px;
    gap: 6px;
  }

  .product-pills a {
    flex: 0 0 auto;
    height: 24px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
}
