@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #101010;
  --muted: #777773;
  --soft: #f4f4f1;
  --canvas: #fafaf8;
  --paper: #ffffff;
  --line: #e7e7e2;
  --orange: #ef7b2d;
  --green: #0f6e56;
  --blue: #185fa5;
  --violet: #534ab7;
  --rust: #993c1d;
  --card-radius: 12px;
  --shell: min(1280px, calc(100vw - 80px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.svg-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 700;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 132px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(250, 250, 248, 0.96);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 3px;
  border-radius: 50%;
  background: var(--orange);
}

.browser-body aside b span {
  color: var(--orange);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  margin-left: 60px;
}

.main-nav a,
.footer-links a {
  color: #595956;
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.mobile-auth-actions {
  display: none;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover {
  background: #2d2d2b;
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button-light:hover {
  background: #ecece8;
}

.button-quiet {
  border-color: var(--line);
  background: transparent;
}

.button-quiet:hover {
  background: #fff;
}

.button-large {
  min-height: 56px;
  padding-inline: 28px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 160ms ease;
}

.nav-open .menu-button span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .menu-button span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.eyebrow {
  color: #7b7b76;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #999994;
}

.hero {
  overflow: hidden;
  padding-top: calc(var(--header-height) + 94px);
  background: var(--canvas);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero h1 {
  margin-top: 21px;
  font-size: clamp(72px, 10vw, 146px);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.hero-text {
  width: min(590px, 100%);
  margin-top: 38px;
  color: #666662;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  margin-top: 34px;
}

.hero-assurance {
  margin-top: 14px;
  color: #8b8b85;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-specialist-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border-bottom: 1px solid #d0d0ca;
  padding-bottom: 5px;
  color: #5f5f5b;
  font-size: 12px;
  font-weight: 650;
}

.hero-specialist-link:hover,
.hero-specialist-link:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
}

.store-download {
  display: grid;
  width: min(390px, 100%);
  justify-items: center;
  margin-top: 72px;
}

.store-download-label {
  color: #85857f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-links {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.store-link {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border: 1px solid #dcdcd6;
  border-radius: 12px;
  padding: 8px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.store-link:hover {
  border-color: #bdbdb7;
  background: #fff;
  transform: translateY(-2px);
}

.store-link svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-link span {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.store-link small {
  color: #777772;
  font-size: 8px;
  font-weight: 650;
}

.store-link strong {
  margin-top: 3px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-link {
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid #b9b9b3;
  padding: 0 4px;
  background: transparent;
  cursor: pointer;
  color: #62625e;
  font-size: 13px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.hero-stage {
  position: relative;
  height: 676px;
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid #ededE8;
  background: #f0f0ed;
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-stage::before {
  top: 66px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: #dcdcd6;
}

.hero-stage::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e1e1dc;
}

.device {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 7px solid #161616;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 15, 15, 0.16);
}

.device::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 32px;
  background: #f6f6f6;
  content: "";
}

.device::after,
.screen-crop::after {
  position: absolute;
  z-index: 3;
  top: 6px;
  left: 50%;
  width: 31.5%;
  aspect-ratio: 3.45 / 1;
  border-radius: 999px;
  background: #050505;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.device img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  transform: translateY(5.4%);
}

.notification-unread-dot {
  position: absolute;
  z-index: 4;
  top: 7.1%;
  right: 7.3%;
  width: clamp(8px, 3.5%, 11px);
  aspect-ratio: 1;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 1px 4px rgba(239, 123, 45, 0.24);
  pointer-events: none;
}

.progress-bars-demo {
  position: absolute;
  z-index: 2;
  top: 39.7%;
  left: 10.2%;
  width: 77.7%;
  height: 4.55%;
  overflow: visible;
  pointer-events: none;
}

.device-hero {
  position: absolute;
  bottom: -160px;
  width: 300px;
}

.device-center {
  z-index: 4;
  left: 50%;
  bottom: 12px;
  width: 300px;
  transform: translateX(-50%);
}

.device-left {
  left: calc(50% - 480px);
  transform: rotate(-5deg);
}

.device-right {
  right: calc(50% - 480px);
  transform: rotate(5deg);
}

.stage-note {
  position: absolute;
  z-index: 5;
  top: 96px;
  display: grid;
  padding: 20px 22px;
  border: 1px solid #deded8;
  border-radius: var(--card-radius);
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(10px);
}

.stage-note strong {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.stage-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.stage-note-left {
  left: 7%;
}

.stage-note-right {
  right: 7%;
}

.note-index {
  color: #979792;
  font-size: 10px;
  font-weight: 700;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.stage-caption {
  position: absolute;
  z-index: 1;
  right: 38px;
  bottom: 32px;
  left: 38px;
  display: flex;
  justify-content: space-between;
  color: #8a8a85;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.signal-row div {
  display: flex;
  min-height: 106px;
  align-items: center;
  gap: 16px;
  padding-inline: 32px;
}

.signal-row div + div {
  border-left: 1px solid var(--line);
}

.signal-row strong {
  font-size: 24px;
  letter-spacing: -0.05em;
}

.signal-row span {
  color: var(--muted);
  font-size: 12px;
}

.partners {
  background: #fff;
}

.partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: 10vw;
  align-items: center;
}

.partners h2 {
  margin-top: 26px;
  font-size: clamp(42px, 4.2vw, 64px);
}

.section-lead {
  max-width: 570px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  margin-top: 38px;
  border-bottom: 1px solid #cfcfca;
  padding-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.arrow-link:hover {
  border-color: var(--ink);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-cell {
  display: grid;
  min-height: 168px;
  place-items: center;
  align-content: center;
  gap: 9px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-cell span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #d8d8d2;
  color: #60605c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.partner-cell strong {
  font-size: 12px;
  font-weight: 700;
}

.partner-cell small {
  color: #8b8b86;
  font-size: 9px;
  text-align: center;
}

.journey-intro {
  padding-bottom: 98px;
  background: var(--canvas);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.15fr 0.65fr;
  gap: 58px;
  align-items: start;
}

.intro-grid h2 {
  font-size: clamp(48px, 5.6vw, 82px);
}

.intro-grid .section-lead {
  margin-top: 7px;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.journey-steps article {
  min-height: 224px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 31px;
}

.journey-steps span,
.control-grid span {
  color: #a0a09a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.journey-steps h3,
.control-grid h3 {
  margin-top: 47px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.journey-steps p,
.control-grid p {
  max-width: 300px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feature-block {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #fff;
}

.feature-soft {
  background: var(--soft);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: 9vw;
  align-items: center;
}

.feature-layout.reverse {
  grid-template-columns: minmax(560px, 1.18fr) minmax(360px, 0.82fr);
}

.feature-copy {
  position: relative;
  padding-left: 64px;
}

.step-number {
  position: absolute;
  top: 1px;
  left: 0;
  color: #adada7;
  font-size: 13px;
  font-weight: 700;
}

.feature-copy h2 {
  margin-top: 23px;
  font-size: clamp(46px, 4.5vw, 68px);
}

.feature-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin-top: 29px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.plain-list {
  margin: 43px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 55px;
  border-top: 1px solid #deded8;
  font-size: 13px;
  font-weight: 600;
}

.plain-list li:last-child {
  border-bottom: 1px solid #deded8;
}

.plain-list span {
  color: #a3a39d;
  font-size: 10px;
}

.screen-scene {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
}

.screen-scene::before {
  position: absolute;
  inset: 9% 5%;
  border: 1px solid #deded8;
  content: "";
}

.screen-scene::after {
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 50%;
  width: 1px;
  background: #e1e1dc;
  content: "";
}

.device-feature {
  width: 303px;
}

.floating-label {
  position: absolute;
  z-index: 5;
  display: grid;
  min-width: 190px;
  padding: 17px 19px;
  border: 1px solid #deded8;
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 38px rgba(15, 15, 15, 0.08);
}

.floating-label strong {
  font-size: 13px;
}

.floating-label small {
  color: var(--muted);
  font-size: 10px;
}

.label-top {
  z-index: 6;
  top: 18%;
  right: 2%;
}

.label-bottom {
  z-index: 6;
  bottom: 17%;
  left: 2%;
  grid-template-columns: 26px 1fr;
  align-items: center;
}

.check-mark {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 11px;
}

.screen-scene-double .device-feature {
  position: absolute;
}

.screen-scene-double .device-back {
  z-index: 2;
  left: 11%;
  width: 266px;
  transform: translateY(-34px) rotate(-4deg);
}

.screen-scene-double .device-front {
  z-index: 4;
  right: 11%;
  width: 288px;
  transform: translateY(45px) rotate(3deg);
}

.lab-marker {
  position: absolute;
  z-index: 6;
  display: grid;
  min-width: 142px;
  padding: 14px 16px;
  border: 1px solid #deded8;
  border-radius: var(--card-radius);
  background: #fff;
  box-shadow: 0 12px 38px rgba(15, 15, 15, 0.07);
}

.lab-marker-status {
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lab-marker-high .lab-marker-status {
  color: #c04a1f;
}

.lab-marker-low .lab-marker-status {
  color: #c99216;
}

.lab-marker-normal .lab-marker-status {
  color: var(--green);
}

.analysis-demo-overlay {
  position: absolute;
  z-index: 2;
  right: 5.8%;
  height: max(5.85%, 34px);
  background: #fff;
  pointer-events: none;
}

.analysis-demo-overlay-high {
  top: 27.8%;
  width: max(26%, 72px);
  color: #c04a1f;
}

.analysis-demo-overlay-low {
  top: 72.3%;
  width: max(24%, 56px);
  color: #c99216;
}

.analysis-demo-reading {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: var(--ink);
  white-space: nowrap;
}

.analysis-demo-reading b {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.analysis-demo-reading small {
  color: #8f8f8b;
  font-size: 8px;
  font-weight: 400;
}

.analysis-demo-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border-radius: 50%;
  color: inherit;
  background: currentColor;
}

.analysis-demo-badge svg {
  width: 7px;
  height: 7px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lab-marker b {
  font-size: 24px;
  letter-spacing: -0.05em;
}

.lab-marker small {
  color: var(--muted);
  font-size: 10px;
}

.marker-a {
  top: 25%;
  right: 3%;
}

.marker-b {
  bottom: 23%;
  left: 2%;
}

.marker-c {
  right: 2%;
  bottom: 9%;
}

.trend-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trend-line::before {
  position: absolute;
  z-index: 1;
  top: 58%;
  right: -3%;
  left: -3%;
  border-top: 1px solid #cfcfca;
  content: "";
  transform: rotate(-8deg);
}

.trend-line span {
  position: absolute;
  z-index: 5;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--canvas);
}

.feature-soft .trend-line span {
  box-shadow: 0 0 0 3px var(--soft);
}

.trend-line span:nth-child(1) {
  top: calc(63.2% - 4.5px);
  left: calc(10% - 4.5px);
  background: var(--green);
}

.trend-line span:nth-child(2) {
  top: calc(61.8% - 4.5px);
  left: calc(20% - 4.5px);
  background: var(--rust);
}

.trend-line span:nth-child(3) {
  top: calc(52.8% - 4.5px);
  left: calc(88% - 4.5px);
  background: var(--violet);
}

.screen-scene-double .trend-line span:nth-child(1) {
  top: calc(64.3% - 4.5px);
  left: calc(2% - 4.5px);
}

.screen-scene-double .trend-line span:nth-child(2) {
  top: calc(63.6% - 4.5px);
  left: calc(7% - 4.5px);
}

.screen-scene-double .trend-line span:nth-child(3) {
  top: calc(51.5% - 4.5px);
  left: calc(97% - 4.5px);
}

.screen-scene-labs .trend-line span:nth-child(1) {
  top: calc(64.5% - 4.5px);
  left: calc(1% - 4.5px);
}

.screen-scene-labs .trend-line span:nth-child(2) {
  top: calc(61.1% - 4.5px);
  left: calc(25% - 4.5px);
}

.collaboration {
  color: #fff;
  background: #111110;
}

.collaboration-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: 10vw;
  align-items: center;
}

.collaboration-copy h2 {
  max-width: 600px;
  margin-top: 26px;
  font-size: clamp(48px, 5vw, 72px);
}

.collaboration-copy > p:not(.eyebrow) {
  max-width: 545px;
  margin-top: 31px;
  color: #aaa9a3;
  font-size: 17px;
  line-height: 1.7;
}

.collaboration-notes {
  display: grid;
  gap: 14px;
  margin-top: 43px;
}

.control-note {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 700;
}

.control-note span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: #fff;
  font-size: 10px;
}

.control-note + .control-note span {
  padding-right: 1px;
  letter-spacing: -0.14em;
}

.access-panel {
  overflow: hidden;
  border: 1px solid #343432;
  border-radius: 18px;
  padding: 8px;
  color: var(--ink);
  background: #efefec;
}

.access-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: 13px;
  padding: 5px;
  background: #fff;
}

.access-tabs button {
  min-height: 43px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #767672;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.access-tabs button:hover {
  color: var(--ink);
}

.access-tabs button:active {
  transform: scale(0.985);
}

.access-tabs button.active {
  color: #fff;
  background: var(--ink);
}

.role-panel {
  display: grid;
  min-height: 436px;
  align-content: start;
  gap: 12px;
  padding-top: 12px;
}

.role-panel[hidden] {
  display: none;
}

.system-card,
.system-client-card {
  border: 1px solid #e5e5e0;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02), 0 5px 18px rgba(15, 15, 15, 0.035);
}

.avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #272725;
  background: #e5e5df;
  font-size: 12px;
  font-weight: 800;
}

.system-person {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
}

.system-person-copy {
  display: grid;
  min-width: 0;
}

.system-person-copy strong {
  overflow: hidden;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.system-person-copy small {
  margin-top: 2px;
  color: #8b8b86;
  font-size: 11px;
}

.system-status {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 0 10px;
  color: #146b50;
  background: #dff4e7;
  font-size: 10px;
  font-weight: 700;
}

.system-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.system-access {
  border-top: 1px solid #ededE8;
  padding: 14px 16px 16px;
}

.system-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.system-card-head > div {
  display: grid;
  gap: 3px;
}

.system-card-head small,
.system-view-head small {
  color: #8a8a85;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.system-card-head strong {
  font-size: 14px;
  font-weight: 800;
}

.system-card-head button {
  min-height: 32px;
  border: 1px solid #e4e4df;
  border-radius: 999px;
  padding: 0 11px;
  color: #555551;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
}

.system-scope-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.system-scope-pills span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 9.5px;
  font-weight: 700;
}

.system-scope-pills span::before {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.system-scope-pills .scope-labs {
  color: #185fa5;
  background: #e6f1fb;
}

.system-scope-pills .scope-workouts {
  color: #993c1d;
  background: #faece7;
}

.system-scope-pills .scope-intake {
  color: #0f6e56;
  background: #e1f5ee;
}

.system-scope-pills .scope-habits {
  color: #534ab7;
  background: #eeedfe;
}

.system-scope-pills .scope-comparisons {
  color: #9a6b12;
  background: #fbefd6;
}

.system-scope-pills span.off {
  opacity: 0.42;
  text-decoration: line-through;
}

.system-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid #ededE8;
  color: #898984;
  font-size: 10.5px;
}

.system-meta b {
  color: #555551;
  font-weight: 700;
}

.system-actions {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 9px;
  margin-top: auto;
}

.system-icon-button,
.system-primary-button {
  min-height: 48px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.system-icon-button {
  display: grid;
  place-items: center;
  border: 1px solid #deded9;
  color: var(--ink);
  background: #fff;
}

.system-primary-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 17px;
  color: #fff;
  background: var(--ink);
}

.system-dialog-preview {
  overflow: hidden;
  border: 1px solid #e5e5e0;
  border-radius: 15px;
  background: #f7f7f4;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02), 0 5px 18px rgba(15, 15, 15, 0.03);
}

.system-dialog-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid #ebebe6;
  padding: 8px 10px;
  background: #fff;
}

.system-dialog-avatar {
  position: relative;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: #353532;
  background: #e5e5df;
  font-size: 8.5px;
  font-weight: 800;
}

.system-dialog-avatar i {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #1a8a66;
}

.system-dialog-peer {
  display: grid;
  min-width: 0;
}

.system-dialog-peer strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.system-dialog-peer small {
  color: #1a8a66;
  font-size: 8.5px;
  font-weight: 700;
}

.system-dialog-head button {
  min-height: 27px;
  border: 1px solid #e5e5e0;
  border-radius: 999px;
  padding: 0 9px;
  color: #656560;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 8.5px;
  font-weight: 700;
}

.system-dialog-feed {
  display: grid;
  gap: 7px;
  padding: 8px;
}

.system-dialog-event {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid #e8e8e3;
  border-radius: 11px;
  padding: 6px 8px;
  background: #fff;
}

.system-dialog-event-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  color: #3d3d3a;
  background: #eeeeeb;
}

.system-dialog-event > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.system-dialog-event strong {
  overflow: hidden;
  font-size: 9px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.system-dialog-event small,
.system-dialog-event time {
  color: #92928d;
  font-size: 7.5px;
}

.system-dialog-messages {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.system-message {
  max-width: 48%;
  margin: 0;
  border-radius: 11px;
  padding: 6px 8px 5px;
  font-size: 8.5px;
  font-weight: 600;
  line-height: 1.3;
}

.system-message time {
  display: block;
  margin-top: 2px;
  text-align: right;
  font-size: 7px;
  opacity: 0.55;
}

.system-message-theirs {
  border-bottom-left-radius: 4px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 3px 12px rgba(15, 15, 15, 0.04);
}

.system-message-mine {
  border-bottom-right-radius: 4px;
  color: #fff;
  background: var(--ink);
}

.system-view-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 3px 4px 1px;
}

.system-view-head > div {
  display: grid;
  gap: 2px;
}

.system-view-head strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.system-view-head > span {
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.system-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.system-search {
  display: flex;
  min-width: 0;
  min-height: 38px;
  flex: 1;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 0 12px;
  color: #999994;
  background: #eeeeec;
  font-size: 12px;
  font-weight: 600;
}

.system-sort-button {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 15, 15, 0.05);
  cursor: pointer;
}

.system-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.system-filter-pills span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 0 11px;
  color: #5b5b57;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.system-filter-pills span.active {
  color: #fff;
  background: var(--ink);
}

.system-filter-pills b {
  color: #aaa9a4;
  font-size: 10.5px;
}

.system-filter-pills .active b {
  color: rgba(255, 255, 255, 0.62);
}

.system-list-caption {
  padding: 0 2px;
  color: #c0c0bb;
  font-size: 9px;
  line-height: 1.5;
}

.system-client-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.system-client-card {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: start;
  border: 0;
  border-radius: 15px;
  padding: 12px 13px;
  box-shadow: 0 2px 8px rgba(15, 15, 15, 0.04);
}

.system-client-avatar {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  color: #272725;
  background: #e5e5df;
  font-size: 12px;
  font-weight: 800;
}

.system-client-avatar i {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 13px;
  height: 13px;
  border: 2.5px solid #fff;
  border-radius: 50%;
  background: #1a8a66;
}

.muted-avatar {
  color: #6c5b43;
  background: #f3e8dc;
}

.system-client-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.system-client-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.system-client-meta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.system-client-copy strong {
  overflow: hidden;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.system-client-copy time,
.system-client-copy > small {
  color: #999994;
  font-size: 11px;
}

.system-client-copy > small {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
}

.system-client-attention {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  border-radius: 8px;
  padding: 5px 8px;
  color: #9a6510;
  background: #fff3d9;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
}

.system-client-attention svg {
  flex: 0 0 auto;
}

.system-today {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 9px;
  row-gap: 3px;
  margin-top: 7px;
  font-size: 11.5px;
  font-weight: 700;
}

.system-today span {
  color: #a1a19b;
}

.system-today b {
  display: inline-flex;
  align-items: center;
  gap: 3.5px;
  color: #6c6c67;
  font-weight: 700;
}

.system-today b.plan {
  color: #8c8c87;
}

.system-today b.done {
  color: #16915b;
}

.system-today b.missed {
  color: #3d3d3a;
}

.system-scope-pills.compact {
  gap: 6px;
  margin-top: 7px;
}

.system-scope-pills.compact span {
  min-height: 24px;
  padding-inline: 9px;
  font-size: 11px;
}

.system-chevron {
  align-self: center;
  color: #bbbbaf;
  font-size: 20px;
}

.system-unread {
  display: inline-flex;
  min-width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 10.5px;
  font-weight: 800;
}

.control-section {
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.control-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(600px, 1.28fr);
  gap: 8vw;
  align-items: start;
}

.control-heading h2 {
  margin-top: 24px;
  font-size: clamp(46px, 4.6vw, 68px);
}

.control-heading > p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.control-grid article {
  min-height: 310px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
}

.control-grid h3 {
  margin-top: 72px;
  font-size: 20px;
  line-height: 1.15;
}

.inside {
  background: #fff;
}

.inside-heading {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 12vw;
  align-items: end;
  margin-bottom: 75px;
}

.inside-heading h2 {
  margin-top: 24px;
}

.inside-heading > p {
  max-width: 440px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.screen-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.screen-card:nth-child(1) { grid-column: span 5; }
.screen-card:nth-child(2) { grid-column: span 7; }
.screen-card:nth-child(3) { grid-column: span 7; }
.screen-card:nth-child(4) { grid-column: span 5; }
.screen-card:nth-child(5) { grid-column: span 5; }
.screen-card:nth-child(6) { grid-column: span 7; }
.screen-card:nth-child(7) { grid-column: span 7; min-height: 720px; }
.screen-card:nth-child(8) { grid-column: span 5; }

.inside-more {
  display: none;
}

.card-heading {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 27px 29px;
}

.card-heading span {
  color: #a0a09a;
  font-size: 10px;
  font-weight: 700;
}

.card-heading h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.screen-crop {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: min(260px, calc(100% - 72px));
  overflow: hidden;
  border: 7px solid #171716;
  border-radius: 40px;
  background: #171716;
  box-shadow: 0 22px 50px rgba(15, 15, 15, 0.12);
  transform: translateX(-50%);
}

.screen-crop::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 33px;
  background: #f6f6f6;
  content: "";
}

.screen-crop img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  border-radius: 33px;
  transform: translateY(5.4%);
}

.card-day .screen-crop {
  width: min(256px, calc(100% - 72px));
}

.card-protocol .screen-crop {
  left: 56%;
  width: min(268px, calc(100% - 72px));
}

.card-workout .screen-crop {
  left: 44%;
  width: min(268px, calc(100% - 72px));
}

.workout-graph-demo {
  position: absolute;
  z-index: 4;
  top: 78%;
  right: 5.2%;
  left: 5.2%;
  height: 14.6%;
  overflow: hidden;
  background: #fff;
  pointer-events: none;
}

.workout-graph-demo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.card-labs .screen-crop {
  width: min(256px, calc(100% - 72px));
}

.card-labs-trend .screen-crop {
  width: min(256px, calc(100% - 72px));
}

.card-labs-list .screen-crop {
  width: min(276px, calc(100% - 72px));
}

.card-specialists .screen-crop {
  width: min(256px, calc(100% - 72px));
}

.card-progress {
  background: #efefec;
}

.card-progress .screen-crop {
  right: 6%;
  bottom: 24px;
  left: auto;
  width: 300px;
  transform: none;
}

.screen-carousel .card-heading {
  padding-right: 150px;
}

.screen-carousel .comparison-carousel-controls {
  top: 22px;
  right: 22px;
  bottom: auto;
  left: auto;
  gap: 7px;
}

.screen-carousel .comparison-carousel-controls > button {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

.screen-carousel .comparison-carousel-dots {
  gap: 4px;
}

.screen-carousel .comparison-carousel-dots button {
  width: 6px;
  height: 6px;
}

.screen-carousel .comparison-carousel-dots button.active {
  width: 17px;
}

.comparison-carousel-viewport {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  outline: 0;
  touch-action: pan-y;
}

.comparison-carousel-viewport:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: -4px;
}

.carousel-peek-control {
  position: absolute;
  z-index: 2;
  top: 88px;
  bottom: 18px;
  width: 50%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  outline: 0;
}

.carousel-peek-control-previous {
  left: 0;
}

.carousel-peek-control-next {
  right: 0;
}

.carousel-peek-control[hidden] {
  display: none;
}

.carousel-peek-control:focus-visible {
  outline: 0;
}

.comparison-carousel-track {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.comparison-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex: 0 0 100%;
}

.screen-carousel .comparison-carousel-track,
.comparison-carousel .comparison-carousel-track {
  display: block;
  transform: none !important;
}

.screen-carousel .comparison-slide,
.comparison-carousel .comparison-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.screen-carousel .comparison-slide.is-active,
.comparison-carousel .comparison-slide.is-active {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.screen-carousel .comparison-slide.is-before,
.screen-carousel .comparison-slide.is-after,
.comparison-carousel .comparison-slide.is-before,
.comparison-carousel .comparison-slide.is-after {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.screen-carousel .comparison-slide.is-active .screen-crop,
.screen-carousel .comparison-slide.is-before .screen-crop,
.screen-carousel .comparison-slide.is-after .screen-crop,
.comparison-carousel .comparison-slide.is-active .screen-crop,
.comparison-carousel .comparison-slide.is-before .screen-crop,
.comparison-carousel .comparison-slide.is-after .screen-crop {
  pointer-events: auto;
}

.screen-carousel .comparison-slide .screen-crop,
.comparison-carousel .comparison-slide .screen-crop {
  transform-origin: center bottom;
  transition: opacity 460ms ease, filter 460ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.screen-carousel .comparison-slide .screen-crop {
  right: 5%;
  left: auto;
  transform: none;
}

.screen-carousel .comparison-slide.is-before .screen-crop {
  opacity: 0.2;
  filter: saturate(0.7);
  transform: translateX(-54px) scale(0.88);
}

.screen-carousel .comparison-slide.is-after .screen-crop {
  opacity: 0.24;
  filter: saturate(0.7);
  transform: translateX(54px) scale(0.88);
}

.comparison-carousel .comparison-slide.is-before .screen-crop {
  opacity: 0.18;
  filter: saturate(0.65);
  transform: translateX(-54px) scale(0.88);
}

.comparison-carousel .comparison-slide.is-after .screen-crop {
  opacity: 0.22;
  filter: saturate(0.65);
  transform: translateX(54px) scale(0.88);
}

.comparison-carousel .comparison-slide:not(.is-active) .comparison-slide-copy {
  opacity: 0;
}

.screen-card-copy {
  position: absolute;
  z-index: 2;
  top: 150px;
  left: 9%;
  display: grid;
  max-width: 160px;
  gap: 9px;
  pointer-events: none;
}

.screen-card-copy small {
  color: var(--violet);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-card-copy strong {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.screen-card-copy p {
  max-width: 150px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.comparison-slide-copy {
  position: absolute;
  z-index: 2;
  top: 150px;
  left: 9%;
  display: grid;
  max-width: 230px;
  gap: 9px;
}

.comparison-slide-copy small {
  color: var(--violet);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-slide-copy strong {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.comparison-slide-copy p {
  max-width: 205px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.comparison-carousel-controls {
  position: absolute;
  z-index: 4;
  bottom: 34px;
  left: 9%;
  display: flex;
  align-items: center;
  gap: 9px;
}

.comparison-carousel-controls > button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #d8d8d3;
  border-radius: 50%;
  padding: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.comparison-carousel-controls > button:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-1px);
}

.comparison-carousel-controls > button:focus-visible,
.comparison-carousel-dots button:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

.comparison-carousel-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.comparison-carousel-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #c3c3bd;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.comparison-carousel-dots button.active {
  width: 20px;
  background: var(--ink);
}

.comparison-variant-layer {
  display: none;
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.comparison-demo-subtitle {
  position: absolute;
  top: 8.35%;
  right: 20%;
  left: 20%;
  display: grid;
  min-height: 3.3%;
  place-items: center;
  color: #999994;
  background: #f6f6f6;
  font-size: 7px;
  white-space: nowrap;
}

.comparison-demo-summary {
  position: absolute;
  top: 12.15%;
  right: 4.1%;
  left: 4.1%;
  height: 13.1%;
  border-radius: 13px 13px 0 0;
  padding: 8px 9px;
  color: var(--ink);
  background: #fff;
}

.comparison-demo-label,
.comparison-demo-delta {
  position: absolute;
  top: 8px;
  font-size: 6.5px;
  font-weight: 800;
}

.comparison-demo-label {
  left: 9px;
  color: #8f8f8b;
  letter-spacing: 0.06em;
}

.comparison-demo-delta {
  right: 9px;
  color: #8f8f8b;
}

.comparison-demo-summary > strong {
  position: absolute;
  top: 21px;
  left: 9px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.comparison-demo-summary > strong small {
  color: #8f8f8b;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0;
}

.comparison-demo-legend {
  position: absolute;
  right: 9px;
  bottom: 6px;
  left: 9px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #3d3d3a;
  font-size: 6.5px;
  font-weight: 700;
  white-space: nowrap;
}

.comparison-demo-legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.comparison-demo-legend i {
  display: block;
  width: 11px;
  height: 3px;
  border-radius: 999px;
  background: #111;
}

.comparison-demo-legend span:last-child i {
  background: #c2521b;
}

.comparison-variant-labs .comparison-demo-legend span:last-child i {
  background: #185fa5;
}

.comparison-demo-chart {
  position: absolute;
  top: 25.2%;
  right: 6.2%;
  left: 6.2%;
  width: 87.6%;
  height: 22.3%;
  overflow: visible;
  background: #fff;
}

.comparison-demo-factor {
  position: absolute;
  top: 64.45%;
  right: 4.1%;
  left: 4.1%;
  display: grid;
  height: 11.35%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  border-radius: 14px;
  padding: 7px 8px;
  color: var(--ink);
  background: #fff;
}

.comparison-demo-factor-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 9px;
  color: #c2521b;
  background: #faece7;
  font-size: 11px;
  font-weight: 800;
}

.comparison-variant-labs .comparison-demo-factor-icon {
  color: #185fa5;
  background: #e7f1fb;
}

.comparison-demo-factor-copy,
.comparison-demo-factor-value {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.comparison-demo-factor-copy b,
.comparison-demo-factor-value b {
  font-size: 7.5px;
  line-height: 1.2;
}

.comparison-demo-factor-copy small,
.comparison-demo-factor-value small {
  color: #999994;
  font-size: 5.5px;
  line-height: 1.25;
}

.comparison-demo-factor-copy b,
.comparison-demo-factor-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comparison-demo-factor-value {
  justify-items: end;
}

.comparison-demo-factor-value b {
  color: #c2521b;
  font-size: 11px;
}

.comparison-variant-labs .comparison-demo-factor-value b {
  color: #185fa5;
}

.card-link {
  color: #fff;
  background: #171716;
}

.card-link .card-heading span {
  color: #777772;
}

.dialog-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin: 35px 28px 0;
  padding: 22px;
  border: 1px solid #363633;
  border-radius: var(--card-radius);
  background: #20201f;
}

.dialog-preview div:last-child {
  display: grid;
  gap: 10px;
}

.dialog-preview strong {
  font-size: 12px;
}

.dialog-preview p {
  color: #aaa9a4;
  font-size: 11px;
  line-height: 1.6;
}

.permission-line {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #363633;
  color: #85857f;
  font-size: 9px;
}

.permission-line span {
  color: #78caaa;
}

.desktop-callout {
  overflow: hidden;
  padding-bottom: 0;
  background: var(--soft);
}

.desktop-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 7vw;
  align-items: center;
}

.desktop-copy {
  padding-bottom: 132px;
}

.desktop-copy h2 {
  margin-top: 26px;
  font-size: clamp(46px, 4.5vw, 67px);
}

.desktop-copy > p:not(.eyebrow) {
  margin-top: 27px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.desktop-copy .button {
  margin-top: 34px;
}

.browser-frame {
  align-self: end;
  min-width: 700px;
  height: 570px;
  overflow: hidden;
  border: 1px solid #d5d5cf;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 40px 80px rgba(15, 15, 15, 0.13);
}

.browser-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e2e2dc;
  padding: 0 15px;
  background: #f7f7f5;
}

.browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c3c3bd;
}

.browser-bar div {
  width: 240px;
  margin-left: 45px;
  border: 1px solid #deded9;
  border-radius: 5px;
  padding: 5px 10px;
  color: #a0a09a;
  background: #fff;
  font-size: 8px;
  text-align: center;
}

.browser-body {
  display: grid;
  grid-template-columns: 145px 1fr;
  min-height: 528px;
}

.browser-body aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid #e8e8e3;
  padding: 26px 17px;
}

.browser-body aside b {
  margin-bottom: 26px;
  font-size: 17px;
  letter-spacing: -0.06em;
}

.browser-body aside a {
  padding: 9px 10px;
  color: #8a8a84;
  font-size: 8px;
  font-weight: 600;
}

.browser-body aside a.active {
  color: #171716;
  background: #f0f0ed;
}

.desktop-dashboard {
  padding: 32px;
  background: #fbfbf9;
}

.dashboard-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.dashboard-top small,
.dash-card small {
  color: #969690;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.dashboard-top h3 {
  margin-top: 7px;
  font-size: 22px;
}

.dashboard-top > span {
  color: #686863;
  font-size: 8px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 12px;
  margin-top: 27px;
}

.dash-card {
  border: 1px solid #e5e5df;
  border-radius: 10px;
  padding: 18px;
  background: #fff;
}

.dash-card > strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

.dash-today {
  grid-row: span 2;
}

.dash-today > i {
  position: relative;
  display: block;
  height: 3px;
  margin: 18px 0;
  overflow: hidden;
  background: #e7e7e1;
}

.dash-today > i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress);
  background: var(--green);
  content: "";
}

.dash-today p,
.dash-lab p {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ededE8;
  color: #565652;
  font-size: 8px;
}

.dash-today p b,
.dash-lab p b {
  font-size: 8px;
}

.chart-bars {
  display: flex;
  height: 75px;
  align-items: end;
  gap: 8px;
  margin-top: 17px;
}

.chart-bars i {
  flex: 1;
  height: 42%;
  background: #c9c6ed;
}

.chart-bars i:nth-child(2) { height: 55%; }
.chart-bars i:nth-child(3) { height: 47%; }
.chart-bars i:nth-child(4) { height: 72%; }
.chart-bars i:nth-child(5) { height: 66%; }
.chart-bars i:nth-child(6) { height: 83%; }
.chart-bars i:nth-child(7) { height: 92%; background: var(--violet); }

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(540px, 1.32fr);
  gap: 10vw;
  align-items: start;
}

.faq-heading h2 {
  margin-top: 24px;
  font-size: clamp(46px, 4.6vw, 68px);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 410px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid #d8d8d2;
}

.faq-list details {
  border-bottom: 1px solid #d8d8d2;
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d5d5cf;
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  color: #fff;
  background: var(--ink);
}

.faq-list details[open] summary span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-list details > p {
  max-width: 670px;
  padding: 0 72px 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  padding-block: 104px;
  color: #fff;
  background: #111110;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(500px, 1.1fr) minmax(340px, 0.9fr);
  gap: 10vw;
  align-items: end;
}

.final-cta h2 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(48px, 5vw, 74px);
}

.final-cta-action {
  display: grid;
  justify-items: start;
}

.final-cta-action > p {
  max-width: 430px;
  color: #aaa9a3;
  font-size: 16px;
  line-height: 1.7;
}

.final-cta-action .button {
  margin-top: 30px;
}

.final-cta-action > a {
  margin-top: 19px;
  border-bottom: 1px solid #565651;
  padding-bottom: 5px;
  color: #bdbdb7;
  font-size: 12px;
  font-weight: 650;
}

.final-cta-action > a:hover,
.final-cta-action > a:focus-visible {
  border-color: #fff;
  color: #fff;
}

.contact {
  border-top: 1px solid var(--line);
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 11vw;
}

.contact-copy h2 {
  margin-top: 24px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin-top: 29px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.direct-contact {
  display: grid;
  gap: 8px;
  margin-top: 64px;
}

.direct-contact small {
  color: #999993;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.direct-contact a {
  width: max-content;
  border-bottom: 1px solid #b8b8b3;
  font-size: 17px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 29px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-form label:not(.consent) {
  display: grid;
  gap: 10px;
}

.contact-form label > span {
  font-size: 10px;
  font-weight: 700;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cfcfca;
  border-radius: 0;
  outline: 0;
  padding: 12px 0 15px;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  resize: vertical;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa9a4;
}

.contact-form [aria-invalid="true"] {
  border-color: #a43c2f !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #777773;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--ink);
}

.consent span {
  max-width: 500px;
  font-size: 10px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.form-footer {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-status {
  color: #9b3c30;
  font-size: 11px;
}

.form-status.success {
  color: var(--green);
}

.site-footer {
  padding-top: 80px;
  color: #fff;
  background: #111110;
}

.brand-light {
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.5fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 74px;
}

.footer-top > p {
  max-width: 350px;
  color: #90908a;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 34px;
}

.footer-links a {
  color: #b1b1ab;
}

.footer-download {
  display: flex;
  grid-column: 2 / -1;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #30302e;
  padding-top: 30px;
}

.footer-store-links {
  width: min(390px, 100%);
  margin-top: 0;
}

.footer-store-links .store-link {
  border-color: #363634;
  background: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #30302e;
  color: #72726d;
  font-size: 9px;
}

.auth-dialog {
  width: min(470px, calc(100vw - 40px));
  border: 0;
  padding: 44px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
}

.auth-dialog::backdrop {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(5px);
}

.auth-dialog h2 {
  margin-top: 19px;
  font-size: 40px;
}

.auth-dialog > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 14px;
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.auth-dialog > .button {
  position: static;
  width: 100%;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

@media (max-width: 1279px) {
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .screen-card:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .desktop-only {
    display: none;
  }

  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner,
  .header-actions {
    position: relative;
  }

  .header-actions {
    z-index: 2;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: calc(var(--header-height) + 24px) max(24px, calc((100vw - 960px) / 2)) max(24px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--canvas);
  }

  .main-nav a {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 34px;
    letter-spacing: -0.05em;
    line-height: 1.1;
  }

  .nav-open .main-nav {
    display: flex;
  }

  .mobile-auth-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
  }

  .mobile-auth-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .device-left {
    left: calc(50% - 420px);
  }

  .device-right {
    right: calc(50% - 420px);
  }

  .partners-layout,
  .collaboration-layout,
  .contact-layout {
    gap: 7vw;
  }

  .control-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .control-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-layout,
  .feature-layout.reverse {
    grid-template-columns: minmax(300px, 0.8fr) minmax(480px, 1.2fr);
    gap: 5vw;
  }

  .screen-scene-double .device-back {
    left: 4%;
  }

  .screen-scene-double .device-front {
    right: 3%;
  }

  .desktop-layout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 5vw;
  }
}

@media (max-width: 1000px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .section {
    padding-block: 100px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-stage {
    height: 620px;
  }

  .device-center {
    bottom: 8px;
    width: 278px;
  }

  .device-left {
    left: -55px;
    opacity: 0.62;
  }

  .device-right {
    right: -55px;
    opacity: 0.62;
  }

  .stage-note {
    display: none;
  }

  .partners-layout,
  .collaboration-layout,
  .control-layout,
  .faq-layout,
  .final-cta-inner,
  .contact-layout,
  .inside-heading,
  .desktop-layout {
    grid-template-columns: 1fr;
  }

  .partners-layout,
  .collaboration-layout,
  .control-layout,
  .faq-layout,
  .final-cta-inner,
  .contact-layout {
    gap: 70px;
  }

  .partners-layout {
    align-items: start;
  }

  .partner-grid {
    width: 100%;
  }

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

  .intro-grid .section-lead {
    margin-top: 0;
  }

  .control-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .final-cta-inner {
    align-items: start;
  }

  .feature-layout,
  .feature-layout.reverse {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .feature-layout.reverse .screen-scene {
    order: 2;
  }

  .feature-layout.reverse .feature-copy {
    order: 1;
  }

  .feature-copy {
    max-width: 650px;
  }

  .screen-scene {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .inside-heading {
    gap: 30px;
  }

  .inside-heading > p {
    margin-bottom: 0;
  }

  .screen-card:nth-child(n) {
    grid-column: auto;
  }

  .screen-card:nth-child(-n + 4) {
    min-height: 620px;
  }

  .card-day .screen-crop,
  .card-protocol .screen-crop,
  .card-workout .screen-crop,
  .card-labs .screen-crop,
  .card-labs-trend .screen-crop,
  .card-labs-list .screen-crop,
  .card-specialists .screen-crop {
    width: min(220px, calc(100% - 72px));
  }

  .screen-card:nth-child(7),
  .screen-card:nth-child(8) {
    grid-column: auto;
  }

  .desktop-callout {
    padding-bottom: 0;
  }

  .desktop-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
  }

  .desktop-layout > * {
    min-width: 0;
  }

  .desktop-copy {
    max-width: 680px;
    padding-bottom: 0;
  }

  .browser-frame {
    width: 100%;
    min-width: 0;
    height: 550px;
    margin-bottom: 0;
    transform: none;
  }

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

  .footer-links {
    grid-column: 1 / -1;
  }

  .footer-download {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 70px;
  }

  .section {
    padding-block: 78px;
  }

  h2 {
    font-size: 43px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 58px);
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(61px, 20vw, 88px);
  }

  .hero-text {
    margin-top: 28px;
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-specialist-link {
    justify-content: center;
    text-align: center;
  }

  .store-download {
    margin-top: 52px;
  }

  .store-link {
    padding-inline: 11px;
  }

  .hero-stage {
    width: 100%;
    height: 560px;
    margin-top: 52px;
    border-right: 0;
    border-left: 0;
  }

  .device-center {
    bottom: 14px;
    width: 244px;
  }

  .device-left,
  .device-right,
  .stage-caption {
    display: none;
  }

  .signal-row {
    width: 100%;
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .signal-row div {
    min-height: 74px;
    padding-inline: 24px;
  }

  .signal-row div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .partners h2,
  .feature-copy h2,
  .collaboration-copy h2,
  .control-heading h2,
  .faq-heading h2,
  .final-cta h2,
  .desktop-copy h2,
  .intro-grid h2 {
    font-size: 43px;
  }

  .journey-steps,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    margin-top: 52px;
  }

  .journey-steps article,
  .control-grid article {
    min-height: auto;
    padding: 25px;
  }

  .journey-steps h3,
  .control-grid h3 {
    margin-top: 34px;
  }

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

  .partner-cell {
    min-height: 130px;
  }

  .feature-copy {
    padding-left: 0;
  }

  .step-number {
    position: static;
    display: block;
    margin-bottom: 20px;
  }

  .feature-copy > p:not(.eyebrow),
  .collaboration-copy > p:not(.eyebrow),
  .inside-heading > p,
  .contact-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .screen-scene {
    min-height: 610px;
  }

  .device-feature {
    width: 268px;
  }

  .floating-label {
    min-width: 150px;
    padding: 13px 14px;
  }

  .label-top {
    right: -8px;
  }

  .label-bottom {
    left: -8px;
  }

  .screen-scene-double .device-back {
    left: -5%;
    width: 220px;
  }

  .screen-scene-double .device-front {
    right: -4%;
    width: 230px;
  }

  .trend-line span:nth-child(1) {
    top: calc(62.6% - 4.5px);
    left: calc(3% - 4.5px);
  }

  .trend-line span:nth-child(2) {
    top: calc(61.5% - 4.5px);
    left: calc(10% - 4.5px);
  }

  .trend-line span:nth-child(3) {
    top: calc(53.6% - 4.5px);
    left: calc(96% - 4.5px);
  }

  .screen-scene-double .trend-line::before {
    top: 3%;
    transform: rotate(-1deg);
  }

  .screen-scene-double .trend-line span:nth-child(1) {
    top: calc(3.4% - 4.5px);
    left: calc(15% - 4.5px);
  }

  .screen-scene-double .trend-line span:nth-child(2) {
    top: calc(3% - 4.5px);
    left: calc(50% - 4.5px);
  }

  .screen-scene-double .trend-line span:nth-child(3) {
    top: calc(2.6% - 4.5px);
    left: calc(85% - 4.5px);
  }

  .screen-scene-labs .trend-line::before {
    top: 48%;
    transform: rotate(-6deg);
  }

  .screen-scene-labs .trend-line span:nth-child(1) {
    top: calc(51% - 4.5px);
    left: calc(3% - 4.5px);
  }

  .screen-scene-labs .trend-line span:nth-child(2) {
    top: calc(50.5% - 4.5px);
    left: calc(10% - 4.5px);
  }

  .screen-scene-labs .trend-line span:nth-child(3) {
    top: calc(45% - 4.5px);
    left: calc(96% - 4.5px);
  }

  .lab-marker {
    min-width: 105px;
  }

  .marker-a {
    right: -8px;
  }

  .marker-b {
    left: -8px;
  }

  .marker-c {
    right: -8px;
  }

  .access-panel {
    border-radius: 16px;
    padding: 6px;
  }

  .access-tabs {
    gap: 4px;
    padding: 4px;
  }

  .access-tabs button {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .role-panel {
    min-height: auto;
    gap: 10px;
    padding-top: 10px;
  }

  .system-person {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .system-status {
    grid-column: 2;
    width: max-content;
  }

  .system-access {
    padding: 13px 14px 14px;
  }

  .system-card-head {
    align-items: flex-end;
  }

  .system-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .system-actions {
    margin-top: 0;
  }

  .system-view-head {
    padding-inline: 2px;
  }

  .system-client-card {
    gap: 12px;
    padding: 12px 13px;
  }

  .system-client-avatar {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .system-client-copy strong {
    font-size: 15px;
  }

  .system-today {
    column-gap: 9px;
    row-gap: 3px;
  }

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

  .screen-card:nth-child(n) {
    grid-column: auto;
    min-height: 610px;
  }

  .screen-card:nth-child(7) {
    min-height: 610px;
  }

  .js .inside:not(.is-expanded) .screen-card-secondary {
    display: none;
  }

  .inside-more {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 21px;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
  }

  .inside-more span:last-child {
    font-size: 18px;
    transition: transform 180ms ease;
  }

  .inside.is-expanded .inside-more span:last-child {
    transform: rotate(180deg);
  }

  .card-workout .screen-crop,
  .card-protocol .screen-crop {
    left: 50%;
  }

  .card-progress .screen-crop {
    right: 2%;
    left: auto;
    width: 195px;
  }

  .screen-carousel .comparison-slide .screen-crop {
    right: 2%;
    width: min(210px, calc(100% - 72px));
  }

  .screen-carousel .card-heading {
    gap: 12px;
    padding-right: 126px;
  }

  .screen-carousel .comparison-carousel-controls {
    top: 20px;
    right: 16px;
  }

  .comparison-slide-copy,
  .screen-card-copy {
    top: 112px;
    left: 8%;
    max-width: 112px;
    gap: 7px;
  }

  .screen-card-copy {
    max-width: 106px;
  }

  .comparison-slide-copy strong,
  .screen-card-copy strong {
    font-size: 18px;
  }

  .comparison-slide-copy p,
  .screen-card-copy p {
    max-width: 112px;
    font-size: 8.5px;
  }

  .screen-card-copy p {
    max-width: 106px;
  }

  .comparison-carousel-controls {
    bottom: 26px;
    left: 8%;
    gap: 7px;
  }

  .comparison-carousel-controls > button {
    width: 32px;
    height: 32px;
  }

  .faq-layout,
  .final-cta-inner {
    gap: 52px;
  }

  .faq-list summary {
    min-height: 70px;
    font-size: 15px;
  }

  .faq-list details > p {
    padding: 0 0 24px;
    font-size: 13px;
  }

  .final-cta {
    padding-block: 78px;
  }

  .final-cta-action .button {
    width: 100%;
  }

  .desktop-layout {
    gap: 48px;
  }

  .desktop-copy {
    width: 100%;
  }

  .desktop-copy h2 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 43px);
    line-height: 0.98;
  }

  .desktop-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 15px;
  }

  .browser-frame {
    width: 100%;
    min-width: 0;
    height: 390px;
    margin-bottom: 0;
    transform: none;
  }

  .browser-bar {
    height: 36px;
    gap: 5px;
    padding-inline: 10px;
  }

  .browser-bar > span {
    width: 6px;
    height: 6px;
  }

  .browser-bar div {
    width: auto;
    min-width: 0;
    flex: 1;
    margin-left: 10px;
    padding-block: 4px;
  }

  .browser-body {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 354px;
  }

  .browser-body aside {
    gap: 4px;
    padding: 18px 9px;
  }

  .browser-body aside b {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .browser-body aside a {
    padding: 8px 7px;
    font-size: 7px;
  }

  .desktop-dashboard {
    min-width: 0;
    padding: 22px 14px;
  }

  .dashboard-top {
    align-items: flex-start;
  }

  .dashboard-top h3 {
    font-size: 16px;
    line-height: 1.1;
  }

  .dashboard-top > span {
    display: none;
  }

  .dashboard-grid {
    gap: 8px;
    margin-top: 18px;
  }

  .dash-card {
    padding: 12px;
  }

  .dash-card > strong {
    font-size: 11px;
  }

  .chart-bars {
    height: 52px;
    gap: 3px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    padding-bottom: 52px;
  }

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

  .footer-download {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .auth-dialog {
    padding: 38px 25px 28px;
  }

  .auth-dialog h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
