:root {
  --bg: #ffffff;
  --bg-soft: #f3f3ef;
  --panel: #ffffff;
  --panel-soft: #f6f6f2;
  --text: #0e1010;
  --muted: #5e655f;
  --line: rgba(14, 16, 16, 0.08);
  --line-strong: rgba(14, 16, 16, 0.16);
  --button-dark: #162a41;
  --button-dark-hover: #152340;
  --button-light: #ffffff;
  --button-light-hover: #f7f7fc;
  --button-light-border: rgba(23, 23, 23, 0.23);
  --brand-blue: #162a41;
  --brand-mint: #97d4c8;
  --shadow: 0 24px 60px rgba(14, 16, 16, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --wrap: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}

.page-shell {
  position: relative;
  overflow: clip;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2.5rem 1rem 2.75rem;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.46), rgba(8, 10, 12, 0.06));
}

.brand {
  width: min(10rem, 38vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #ffffff;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 1rem 2.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--button-dark);
  border-color: var(--button-dark);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--button-dark-hover);
  border-color: var(--button-dark-hover);
}

.button-secondary,
.button-ghost {
  background: var(--button-light);
  border-color: var(--button-light-border);
  color: var(--text);
}

.button-secondary:hover,
.button-ghost:hover {
  background: var(--button-light-hover);
  border-color: var(--button-light-hover);
}

.header-cta {
  min-height: 3.5rem;
  min-width: 116px;
  padding: 0.95rem 1.5rem;
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #ffffff;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.hero-stage {
  position: relative;
  min-height: 100svh;
  color: #ffffff;
  background: #090b0d;
  overflow: hidden;
}

.hero-media-layer,
.hero-fade,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-media-layer {
  z-index: 0;
}

.hero-media-layer video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-fade {
  z-index: 1;
  inset: -4px -4px -24px -4px;
  background: linear-gradient(180deg, rgba(7, 9, 11, 0.5), rgba(7, 9, 11, 0.3) 24%, rgba(7, 9, 11, 0.62) 72%, rgba(7, 9, 11, 0.82) 100%);
}

.hero-pattern {
  z-index: 1;
  inset: -4px -4px -24px -4px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mix-blend-mode: soft-light;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: 2rem;
  padding-top: 7rem;
  padding-bottom: 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-stage .eyebrow {
  color: #ffffff;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.92;
}

h2 {
  max-width: 16ch;
  font-size: clamp(2.6rem, 4.8vw, 5.5rem);
  line-height: 0.94;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.05;
}

.hero-text,
.section-head p,
.feature-card p,
.media-split-copy p,
.cta-card p,
.support-copy p,
.condition-card p,
.research-list p,
.footer-copy p,
.floating-card p,
.hero-pillars span,
.bullet-list {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.hero-text,
.hero-stage .floating-card p,
.hero-stage .hero-pillars span {
  color: rgba(255, 255, 255, 0.84);
}

.hero-text {
  max-width: 36rem;
  margin-top: 1.5rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  justify-self: end;
  width: min(100%, 24rem);
}

.hero-panel-shell {
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: 1.65rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius-lg) + 6px);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.hero-panel-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-align: center;
}

.hero-panel-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-mint);
  color: #14322a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid var(--brand-mint);
  white-space: nowrap;
}

.floating-card,
.hero-pillars article,
.feature-card,
.cta-card,
.condition-card,
.device-card,
.research-list article,
.research-list a,
.footer,
.support-copy,
.image-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-stage .floating-card,
.hero-stage .hero-pillars article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.floating-card,
.hero-pillars article,
.feature-card,
.cta-card,
.condition-card,
.device-card,
.research-list article,
.research-list a,
.support-copy {
  padding: 1.45rem;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-pillars {
  display: grid;
  gap: 0.9rem;
}

.hero-pillars strong {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 1rem;
}

.hero-pillars span {
  line-height: 1.3;
}

.section {
  padding: 6rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 60rem;
  margin-bottom: 2rem;
}

.section-head p + p {
  margin-top: -0.55rem;
}

.screening-head h2 {
  max-width: 20ch;
}

.conditions-head h2 {
  max-width: 22ch;
}

.conditions-head {
  max-width: none;
}

.text-highlight {
  color: #4f9f8f;
  font-weight: 700;
}

.research-head {
  max-width: var(--wrap);
}

.research-head h2 {
  max-width: none;
  font-size: clamp(2rem, 3.1vw, 3.5rem);
  line-height: 1;
}

.research-head h2 span {
  color: var(--brand-mint);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.showcase-grid .section-head {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  max-width: none;
}

.showcase-grid .section-head .eyebrow,
.showcase-grid .section-head h2 {
  grid-column: 1 / -1;
}

.showcase-grid .section-head p + p {
  margin-top: 0;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card img.smartwatch-photo {
  opacity: 0.9;
  object-position: center 62%;
}

.image-card img.platform-screenshot {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.image-card img.support-photo {
  object-position: center 72%;
}

.image-tall {
  min-height: 0;
  grid-column: 2;
  grid-row: 2;
}

.feature-grid,
.condition-grid,
.device-grid,
.research-list {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-column: 1;
  grid-template-columns: 1fr;
  align-self: start;
}

.showcase-grid .feature-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  align-self: stretch;
}

.showcase-grid .feature-card {
  width: 100%;
  min-height: 0;
}

.media-split,
.callout-grid,
.support-layout,
.devices-layout,
.footer {
  display: grid;
  gap: 1rem;
}

.media-split,
.support-layout,
.callout-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.media-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
}

.support-layout {
  align-items: stretch;
}

.media-split .image-card,
.support-layout .image-card {
  min-height: 34rem;
}

.media-split-copy,
.support-copy {
  display: grid;
  gap: 1.1rem;
}

.bullet-list {
  padding-left: 1.2rem;
}

.bullet-list li + li {
  margin-top: 0.55rem;
}

.cta-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  text-align: center;
}

.cta-actions,
.footer-actions-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cta-actions .button {
  flex: 1 1 0;
}

.ecosystem-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.ecosystem-split .section-head {
  margin-bottom: 0;
}

.ecosystem-keyline {
  max-width: 34rem;
  margin-top: 0.35rem;
  color: var(--brand-blue);
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ecosystem-network {
  position: relative;
  min-height: 34rem;
  overflow: visible;
}

.ecosystem-network::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 212, 200, 0.24), rgba(151, 212, 200, 0.07) 34%, transparent 68%);
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-line,
.network-pulse {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.network-line {
  stroke: rgba(18, 19, 49, 0.28);
  stroke-width: 2.8;
}

.network-pulse {
  stroke: var(--brand-mint);
  stroke-width: 3.6;
  stroke-dasharray: 0 18 6 90;
  opacity: 0.95;
}

.pulse-out {
  animation: pulseOut 3.8s linear infinite;
}

.pulse-in {
  animation: pulseIn 3.8s linear infinite;
}

.delay-1 {
  animation-delay: 0s;
}

.delay-2 {
  animation-delay: 0.45s;
}

.delay-3 {
  animation-delay: 0.9s;
}

.delay-4 {
  animation-delay: 1.35s;
}

.delay-5 {
  animation-delay: 1.8s;
}

.network-core,
.network-node {
  position: absolute;
  z-index: 1;
}

.network-core {
  left: 50%;
  top: 50%;
  width: 10.5rem;
  height: 10.5rem;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  gap: 0.28rem;
  padding: 1rem;
  border: 10px solid var(--brand-mint);
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-blue);
  text-align: center;
  box-shadow: 0 24px 60px rgba(22, 42, 65, 0.14);
}

.network-core img {
  width: 3.2rem;
}

.network-core strong {
  font-size: 1.08rem;
  line-height: 1.15;
}

.network-node {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-blue);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.15;
  animation: nodeBreathe 5.4s ease-in-out infinite;
}

.network-node span {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  border: 4px solid var(--brand-blue);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(151, 212, 200, 0.24);
}

.node-specialists {
  left: 8%;
  top: 12%;
}

.node-family {
  right: 14%;
  top: 12%;
  animation-delay: 0.35s;
}

.node-diagnostics {
  left: 6%;
  bottom: 20%;
  animation-delay: 0.7s;
}

.node-pharmacies {
  right: 18%;
  bottom: 20%;
  animation-delay: 1.05s;
}

.node-devices {
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  animation-delay: 1.4s;
}

@keyframes pulseOut {
  to {
    stroke-dashoffset: -114;
  }
}

@keyframes pulseIn {
  from {
    stroke-dashoffset: -114;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes nodeBreathe {
  0%,
  100% {
    opacity: 0.88;
  }

  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-pulse,
  .network-node {
    animation: none;
  }
}

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

.condition-card {
  min-height: 18rem;
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.condition-card img {
  align-self: start;
  width: 3.6rem;
  height: 3.6rem;
  object-fit: contain;
  padding: 0.72rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--brand-blue), #2b6a68);
}

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

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

.device-card {
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.device-card h3 {
  font-size: 1.35rem;
}

.device-icon {
  width: 3.6rem;
  height: 3.6rem;
  flex: 0 0 3.6rem;
  display: inline-grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--brand-blue), #2b6a68);
  color: #ffffff;
}

.device-icon svg {
  width: 2.15rem;
  height: 2.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.device-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 1rem;
  min-height: 15rem;
  padding: 2rem;
  align-items: center;
  border: 1px solid rgba(151, 212, 200, 0.48);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-blue), #234762 62%, #2b6a68);
  color: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device-hero-copy {
  display: grid;
  gap: 1rem;
  align-content: end;
}

.device-hero-card .mini-label {
  justify-self: start;
  background: var(--brand-mint);
  color: #14322a;
}

.device-hero-card h3 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.88;
}

.device-hero-card p {
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.device-hero-media {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 11rem;
  margin: -2rem -2rem -2rem 0;
  overflow: hidden;
}

.device-hero-media img {
  width: min(132%, 39rem);
  max-width: none;
  max-height: 25rem;
  object-fit: contain;
  transform: translate(22%, 2%);
  opacity: 0.94;
  filter: blur(0.35px) drop-shadow(0 26px 36px rgba(0, 0, 0, 0.16));
}

.connected-devices {
  display: grid;
  gap: 1rem;
}

.connected-devices-kicker,
.connected-devices-note {
  margin-top: 0.75rem;
  font-size: 0.86rem;
  line-height: 1.4;
}

.connected-devices-kicker {
  max-width: 62rem;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.research-list article,
.research-list a {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.research-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.research-list a:hover,
.research-list a:focus-visible {
  border-color: var(--line-strong);
}

.research-list span {
  color: var(--brand-blue);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.4rem 0;
  background: #eff1f4;
}

.privacy-header {
  background: var(--button-dark);
}

.privacy-nav {
  color: #ffffff;
}

.privacy-main {
  padding-top: 5.8rem;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 820px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.privacy-sidebar {
  position: sticky;
  top: 7rem;
}

.privacy-content {
  display: grid;
  gap: 1rem;
}

.privacy-content h1 {
  max-width: none;
  color: var(--text);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.privacy-content h2 {
  max-width: none;
  margin-top: 1.25rem;
  color: var(--brand-blue);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.privacy-content ul,
.privacy-content ol {
  margin: 0;
  padding-left: 1.35rem;
}

.privacy-content li + li {
  margin-top: 0.45rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1.2rem;
}

.contact-copy h1 {
  max-width: 10ch;
  color: var(--text);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.92;
}

.contact-copy p,
.contact-details p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.contact-details {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.contact-details strong {
  display: block;
  color: var(--brand-blue);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  color: var(--text);
  background: #ffffff;
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(151, 212, 200, 0.42);
  border-color: var(--brand-mint);
}

.form-hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  padding: 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-alert p,
.form-alert ul {
  margin: 0;
}

.form-alert ul {
  padding-left: 1.2rem;
}

.form-alert-success {
  color: #14322a;
  background: rgba(151, 212, 200, 0.28);
}

.form-alert-error {
  color: #7b1d2f;
  background: rgba(221, 66, 95, 0.12);
}

.turnstile-field {
  min-height: 65px;
  display: flex;
  align-items: center;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-top,
.footer-bottom {
  display: grid;
  gap: 1.1rem;
}

.footer-top {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.footer-copy {
  max-width: 34rem;
}

.footer-copy p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-copy h2 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-weight: 500;
  max-width: none;
}

.footer-cta {
  display: flex;
  align-items: end;
}

.footer-divider {
  height: 1px;
  background: #cacfd8;
}

.footer-bottom {
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: start;
}

.footer-year {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-note {
  max-width: 22rem;
  color: #6f7581;
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-links-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem 1.15rem;
}

.footer-menu,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
}

.footer-menu a,
.footer-legal a {
  display: inline-block;
  padding: 0 6px;
  color: #6f7581;
  font-size: 0.9rem;
}

.footer-menu a:hover,
.footer-legal a:hover {
  color: var(--text);
}

.footer-link {
  text-decoration: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-content,
  .showcase-grid,
  .media-split,
  .callout-grid,
  .support-layout,
  .condition-grid,
  .device-grid,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

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

}

@media (max-width: 860px) {
  .hero-stage,
  .hero-content {
    min-height: 100vh;
    min-height: 100svh;
    min-height: -webkit-fill-available;
  }

  .site-header {
    padding: 1rem;
    background: var(--button-dark);
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    min-width: 6rem;
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--button-dark);
    font-weight: 700;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 0.5rem;
  }

  .site-nav a:not(.header-cta) {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.08rem;
    font-weight: 600;
  }

  .site-nav a:not(.header-cta)::before {
    content: "";
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    opacity: 0.54;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z' /%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 6l-.112 .006a1 1 0 0 0 -.669 1.619l3.501 4.375l-3.5 4.375a1 1 0 0 0 .78 1.625h6a1 1 0 0 0 .78 -.375l4 -5a1 1 0 0 0 0 -1.25l-4 -5a1 1 0 0 0 -.78 -.375h-6z' /%3E%3C/svg%3E") center / contain no-repeat;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .header-cta {
    margin-top: 1rem;
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--button-dark);
  }

  .site-nav .header-cta:hover {
    background: var(--button-light-hover);
    border-color: var(--button-light-hover);
    color: var(--button-dark);
  }

  .hero-media-layer video {
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
  }

  @supports (-webkit-touch-callout: none) {
    .hero-media-layer video {
      min-height: 100vh;
      min-height: -webkit-fill-available;
    }
  }

  .hero-content,
  .showcase-grid,
  .showcase-grid .section-head,
  .feature-grid,
  .privacy-layout,
  .contact-layout,
  .media-split,
  .callout-grid,
  .support-layout,
  .ecosystem-split,
  .condition-grid,
  .device-grid,
  .device-hero-card,
  .research-list,
  .research-list article,
  .research-list a,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: end;
    padding-top: 8rem;
  }

  .privacy-main {
    padding-top: 5rem;
  }

  .privacy-sidebar {
    position: static;
  }

  .hero-text {
    display: none;
  }

  .ecosystem-network {
    min-height: 25rem;
    margin-top: 0.75rem;
    overflow: visible;
  }

  .ecosystem-network::before {
    inset: 2%;
  }

  .network-core {
    width: 7.4rem;
    height: 7.4rem;
    gap: 0.2rem;
    border-width: 7px;
    padding: 0.7rem;
  }

  .network-core img {
    width: 2.3rem;
  }

  .network-core strong {
    font-size: 0.78rem;
  }

  .network-line {
    stroke-width: 2.2;
  }

  .network-pulse {
    stroke-width: 2.8;
  }

  .network-node {
    gap: 0.35rem;
    max-width: 8.7rem;
    font-size: 0.75rem;
    animation: none;
  }

  .network-node span {
    width: 0.78rem;
    height: 0.78rem;
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(151, 212, 200, 0.24);
  }

  .node-specialists {
    left: 0;
    top: 10%;
  }

  .node-family {
    right: 0;
    top: 10%;
  }

  .node-diagnostics {
    left: 0;
    bottom: 18%;
  }

  .node-pharmacies {
    right: 0;
    bottom: 18%;
  }

  .node-devices {
    bottom: 2%;
  }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
  }

  .device-hero-media {
    margin: 0 -2rem -2rem;
    min-height: 11rem;
  }

  .device-hero-media img {
    width: min(120%, 28rem);
    transform: translate(10%, 8%);
  }

  .image-tall {
    grid-column: auto;
  }

  .media-split .image-card {
    min-height: 0;
  }

  .image-card img.smartwatch-photo {
    height: auto;
  }

  .button,
  .button-primary,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .cta-actions,
  .footer-actions-block {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta .button {
    width: 100%;
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(3.25rem, 13vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3.8rem);
    line-height: 1.06;
    max-width: 12ch;
  }
}
