/* Nexa design system — deliberately uses solid colors only */
:root {
  --navy: #123f4a;
  --navy-deep: #0b3039;
  --teal: #087f78;
  --cyan: #53d4c6;
  --mint: #e7f6ef;
  --mint-strong: #b7ead8;
  --sky: #e9f4f8;
  --peach: #fff0e8;
  --cream: #f8f4e9;
  --white: #ffffff;
  --ink: #153c43;
  --body: #4e676c;
  --border: rgba(21, 60, 67, 0.14);
  --danger: #ba3a36;
  --shadow: 0 24px 70px rgba(15, 54, 61, 0.16);
  --font-display: "Figtree", sans-serif;
  --font-body: "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mint);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

button {
  border: 0;
}

button,
.button,
.rail-dot,
.desktop-nav a,
.desktop-nav button,
.mobile-nav a,
.nav-dropdown-toggle {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #e9a23b;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 5vw;
  transition: height 220ms ease, background-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(15, 54, 61, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.on-dark:not(.scrolled) {
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 25px/1 var(--font-display);
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 11px;
}

.brand-mark svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.6;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font: 600 13px/1 var(--font-display);
}

.desktop-nav a,
.nav-dropdown-toggle {
  position: relative;
  padding: 12px 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 200ms ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.desktop-nav > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav > a:hover::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 120;
  display: grid;
  gap: 8px;
  width: min(460px, calc(100vw - 40px));
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 54, 61, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown.open .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.product-link {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.product-link:hover {
  background: #f3f9f7;
  transform: translateY(-1px);
}

.product-link.featured {
  padding: 18px 16px;
  background: #eef8f5;
  border: 1px solid rgba(8, 127, 120, 0.12);
}

.product-link.featured:hover {
  background: #e5f4ef;
}

.product-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.product-icon svg {
  width: 18px;
}

.product-icon.onemart {
  color: var(--white);
  background: var(--teal);
}

.product-icon.pharmacy {
  color: #b85840;
  background: #f8e1d8;
}

.product-icon.practice {
  color: #3e7193;
  background: #dcebf3;
}

.product-icon.platform {
  color: var(--teal);
  background: #daf1eb;
}

.product-copy strong,
.product-copy small {
  display: block;
}

.product-copy strong {
  margin-bottom: 6px;
  font: 700 13px/1.2 var(--font-display);
}

.product-copy strong em {
  margin-left: 6px;
  padding: 3px 7px;
  color: #2f7d55;
  background: #ddf1e5;
  border-radius: 100px;
  font: 800 8px/1 var(--font-display);
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.product-copy small {
  color: var(--body);
  font-size: 11px;
  line-height: 1.55;
  font-weight: 500;
}

.product-arrow {
  width: 16px;
  color: var(--teal);
}

.product-divider {
  height: 1px;
  margin: 6px 2px;
  background: var(--border);
}

.mobile-products {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.mobile-products > p {
  margin: 0 0 4px;
  color: var(--teal);
  font: 800 11px/1 var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-product {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  background: #f4f9f7;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: 700 clamp(16px, 4vw, 20px)/1.2 var(--font-display) !important;
}

.mobile-product.featured {
  background: #e8f5f1;
}

.mobile-product > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--white);
  border-radius: 12px;
}

.mobile-product > span svg,
.mobile-product > i {
  width: 18px;
}

.mobile-product strong,
.mobile-product small {
  display: block;
}

.mobile-product strong {
  font-size: 15px;
}

.mobile-product small {
  margin-top: 4px;
  color: var(--body);
  font-size: 11px;
  font-weight: 500;
}

.header-cta {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 100px;
  font: 700 13px/1 var(--font-display);
  transition: background-color 200ms ease, transform 200ms ease;
}

.on-dark:not(.scrolled) .header-cta {
  color: var(--navy);
  background: var(--white);
}

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

.header-cta svg,
.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  background: transparent;
}

.menu-button span {
  position: absolute;
  width: 23px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 90px 7vw 50px;
  background: var(--mint);
}

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

.mobile-nav a {
  width: fit-content;
  font: 700 clamp(28px, 8vw, 46px)/1.15 var(--font-display);
  letter-spacing: -0.04em;
}

.mobile-nav .button {
  margin-top: 20px;
  width: 100%;
}

.section-rail {
  position: fixed;
  z-index: 80;
  right: 2.5vw;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: translateY(-50%);
  color: var(--ink);
  transition: color 220ms ease;
}

.section-rail.on-dark {
  color: var(--white);
}

.rail-label {
  position: absolute;
  bottom: calc(100% + 58px);
  width: max-content;
  transform: rotate(90deg);
  font: 700 9px/1 var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rail-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background-color 180ms ease, transform 180ms ease;
}

.rail-dot::before {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  right: 18px;
  opacity: 0;
  font: 700 9px/1 var(--font-display);
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.rail-dot:hover::before,
.rail-dot.active::before {
  opacity: 1;
}

.rail-dot.active {
  background: currentColor;
  transform: scale(1.25);
}

.panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: 6vw;
  padding: 120px 8vw 70px;
  isolation: isolate;
}

.panel-hero {
  background: var(--mint);
}

.panel-solutions {
  color: var(--white);
  background: var(--navy);
}

.panel-pharmacy {
  background: var(--peach);
}

.panel-doctors {
  background: var(--sky);
}

.panel-trust {
  background: var(--cream);
}

.panel-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--teal);
  font: 800 11px/1 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

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

.eyebrow.centered {
  justify-content: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 25px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

h1 {
  max-width: 690px;
  font-size: clamp(56px, 6vw, 98px);
}

h2 {
  font-size: clamp(48px, 5vw, 80px);
}

h1 em,
h2 em {
  display: block;
  color: var(--teal);
  font-family: Georgia, serif;
  font-weight: 400;
}

.panel-solutions h2 em {
  color: var(--cyan);
}

.lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--body);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
}

.panel-solutions .lead {
  color: #c8dddf;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 52px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 100px;
  font: 700 13px/1 var(--font-display);
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(8, 127, 120, 0.22);
}

.button-primary:hover {
  background: #066c67;
}

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

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

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 700 13px/1 var(--font-display);
}

.proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.proof p {
  margin: 0;
  color: var(--body);
  font-size: 11px;
  line-height: 1.5;
}

.proof p strong {
  display: block;
  color: var(--ink);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  color: var(--white);
  background: #e8906f;
  font: 700 9px/1 var(--font-display);
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: #547eac;
}

.avatar-stack span:last-child {
  background: var(--teal);
}

.panel-number {
  position: absolute;
  z-index: -1;
  top: 52%;
  left: 4vw;
  opacity: 0.055;
  color: currentColor;
  font: 800 28vw/0.7 var(--font-display);
  transform: translateY(-50%);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.ambient-one {
  width: 34vw;
  height: 34vw;
  right: -8vw;
  bottom: -13vw;
  background: var(--mint-strong);
}

.hero-visual,
.product-visual,
.doctor-visual,
.network-visual {
  position: relative;
  z-index: 2;
  min-height: 600px;
}

.dashboard-window {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 48%;
  width: min(48vw, 770px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.window-top {
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--border);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 800 13px/1 var(--font-display);
}

.mini-logo {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 7px;
  font: 800 12px/1 var(--font-display);
}

.window-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.window-actions svg {
  width: 16px;
}

.user-chip {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #e38a6c;
  border-radius: 50%;
  font: 700 8px/1 var(--font-display);
}

.dashboard-body {
  min-height: 430px;
  display: grid;
  grid-template-columns: 60px 1fr;
  background: #f5f9f8;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  padding-top: 30px;
  color: #7c9699;
  background: var(--white);
  border-right: 1px solid var(--border);
}

.dash-sidebar svg {
  width: 16px;
}

.dash-sidebar svg:first-child {
  color: var(--teal);
}

.dash-content {
  padding: 24px;
}

.dash-heading,
.card-title,
.pharm-head,
.appointment-head,
.calendar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-heading small,
.dash-heading h3 {
  margin: 0;
}

.dash-heading small {
  color: #789094;
  font-size: 8px;
}

.dash-heading h3 {
  margin-top: 4px;
  font: 700 17px/1.2 var(--font-display);
}

.dash-heading button {
  width: 31px;
  height: 31px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.metric-card {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.metric-card.aqua {
  background: #d7f3ee;
  border-color: transparent;
}

.metric-card.green {
  background: #e8f0dc;
  border-color: transparent;
}

.metric-card.white {
  background: var(--white);
}

.metric-card svg {
  width: 15px;
  height: 15px;
  margin-bottom: 7px;
  color: var(--teal);
}

.metric-card span,
.metric-card small {
  color: #668084;
  font-size: 7px;
}

.metric-card strong {
  margin: 4px 0;
  font: 700 18px/1 var(--font-display);
}

.dash-lower {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-top: 12px;
}

.appointments,
.chart-card {
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.card-title {
  margin-bottom: 11px;
  font-size: 8px;
}

.card-title span {
  color: var(--teal);
  font-size: 7px;
}

.patient-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid var(--border);
}

.patient-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font: 700 7px/1 var(--font-display);
}

.patient-avatar.orange {
  background: #dd8769;
}

.patient-avatar.blue {
  background: #537da9;
}

.patient-avatar.pink {
  background: #bf6f84;
}

.patient-row strong,
.patient-row small {
  display: block;
  font-size: 7px;
}

.patient-row small {
  margin-top: 3px;
  color: #799093;
  font-size: 6px;
}

.patient-row time {
  color: #567277;
  font-size: 7px;
}

.bar-chart {
  height: 112px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 7px;
  padding-top: 15px;
  border-bottom: 1px solid var(--border);
}

.bar-chart span {
  width: 9%;
  background: #92d9cf;
  border-radius: 4px 4px 0 0;
}

.bar-chart span:nth-child(4),
.bar-chart span:nth-child(6) {
  background: var(--teal);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  color: #789094;
  font-size: 6px;
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 48%;
  border: 1px solid rgba(8, 127, 120, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-large {
  width: 700px;
  height: 700px;
}

.orbit-small {
  width: 520px;
  height: 520px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 14px 35px rgba(15, 54, 61, 0.14);
  animation: float 4s ease-in-out infinite;
}

.floating-card strong,
.floating-card small {
  display: block;
  font: 700 9px/1.2 var(--font-display);
}

.floating-card small {
  margin-top: 4px;
  color: #789094;
  font-weight: 500;
  font-size: 7px;
}

.floating-secure {
  top: 8%;
  right: 2%;
}

.floating-care {
  right: 2%;
  bottom: 7%;
  animation-delay: -1.5s;
}

.icon-box {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #dff4ef;
  border-radius: 8px;
}

.icon-box svg {
  width: 15px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: #40ad75;
  border: 3px solid #d6f0e2;
  box-sizing: content-box;
  border-radius: 50%;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 30px;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 14px;
  font: 700 9px/1 var(--font-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 16px;
  animation: bounce 2s ease-in-out infinite;
}

.feature-list {
  display: grid;
  gap: 17px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  color: #d9e9ea;
  font: 500 14px/1.4 var(--font-body);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
}

.feature-list svg {
  width: 13px;
  stroke-width: 3;
}

.network-visual {
  min-height: 620px;
}

.network-visual::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border: 1px solid rgba(83, 212, 198, 0.18);
  border-radius: 50%;
}

.network-center,
.network-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(4, 29, 34, 0.28);
}

.network-center {
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border: 8px solid rgba(83, 212, 198, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.network-center .mini-logo {
  width: 39px;
  height: 39px;
  margin-bottom: 9px;
}

.network-center strong,
.network-node strong {
  font: 700 15px/1.2 var(--font-display);
}

.network-center small,
.network-node small {
  margin-top: 5px;
  color: #6c8589;
  font-size: 8px;
}

.network-node {
  width: 160px;
  height: 120px;
  border-radius: 17px;
}

.network-node > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  color: var(--teal);
  background: #def3ef;
  border-radius: 10px;
}

.network-node svg {
  width: 18px;
}

.node-pharmacy {
  top: 4%;
  right: 5%;
}

.node-doctor {
  bottom: 4%;
  right: 3%;
}

.node-patient {
  top: 44%;
  left: 0;
}

.network-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: rgba(83, 212, 198, 0.55);
  transform-origin: left center;
}

.line-a {
  top: 44%;
  left: 54%;
  width: 35%;
  transform: rotate(-38deg);
}

.line-b {
  top: 55%;
  left: 55%;
  width: 35%;
  transform: rotate(34deg);
}

.line-c {
  top: 52%;
  left: 17%;
  width: 28%;
  transform: rotate(-4deg);
}

.network-status {
  position: absolute;
  bottom: 15%;
  left: 18%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(83, 212, 198, 0.2);
  border-radius: 100px;
  color: #cbe3e4;
  background: var(--navy-deep);
  font-size: 8px;
}

.network-status span {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
}

.stat-pair {
  display: flex;
  gap: 34px;
  margin: 0 0 36px;
}

.stat-pair > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.stat-pair > div + div {
  padding-left: 34px;
  border-left: 1px solid var(--border);
}

.stat-pair strong {
  font: 700 29px/1 var(--font-display);
}

.stat-pair span {
  color: var(--body);
  font-size: 9px;
  line-height: 1.5;
}

.tablet {
  position: absolute;
  top: 50%;
  left: 48%;
  width: min(49vw, 760px);
  padding: 10px;
  background: #183e45;
  border-radius: 25px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(2deg);
}

.tablet-camera {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 3px;
  width: 4px;
  height: 4px;
  background: #5e7478;
  border-radius: 50%;
}

.pharmacy-ui {
  min-height: 430px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 62px 1fr;
  background: #f7faf9;
  border-radius: 17px;
}

.pharm-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 20px;
  color: #789093;
  background: var(--white);
  border-right: 1px solid var(--border);
}

.pharm-side .mini-logo {
  margin-bottom: 10px;
}

.pharm-side svg {
  width: 16px;
}

.pharm-side svg:nth-of-type(2) {
  color: var(--teal);
}

.pharm-main {
  padding: 30px 27px;
}

.pharm-head h3,
.pharm-head small {
  display: block;
  margin: 0;
}

.pharm-head small {
  margin-bottom: 5px;
  color: #799093;
  font-size: 8px;
}

.pharm-head h3 {
  font: 700 20px/1 var(--font-display);
}

.pharm-head button {
  padding: 9px 14px;
  color: var(--white);
  background: var(--teal);
  border-radius: 7px;
  font-size: 8px;
}

.inventory-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 23px 0 18px;
}

.inventory-summary > div {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.inventory-summary span,
.inventory-summary strong {
  display: block;
}

.inventory-summary span {
  margin-bottom: 8px;
  color: #71898d;
  font-size: 7px;
}

.inventory-summary strong {
  font: 700 18px/1 var(--font-display);
}

.inventory-table {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 11px;
}

.inventory-table > div {
  min-height: 55px;
  display: grid;
  grid-template-columns: 1.55fr 0.85fr 0.7fr 0.65fr;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-top: 1px solid var(--border);
  color: #5b7478;
  font-size: 7px;
}

.inventory-table .table-head {
  min-height: 34px;
  border-top: 0;
  color: #84999c;
  background: #f3f7f6;
  font-weight: 600;
}

.inventory-table > div > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.medicine-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.medicine-icon svg {
  width: 13px;
}

.medicine-icon.cyan {
  color: var(--teal);
  background: #ddf3ef;
}

.medicine-icon.coral {
  color: #b95e43;
  background: #f8e2da;
}

.medicine-icon.green {
  color: #658337;
  background: #e9f0db;
}

.status {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 100px;
}

.status.good {
  color: #2b7c56;
  background: #dff2e7;
}

.status.low {
  color: #a65924;
  background: #f7e8d8;
}

.scan-card {
  position: absolute;
  z-index: 5;
  right: 1%;
  bottom: 7%;
  display: grid;
  grid-template-columns: 39px 1fr 25px;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  padding: 13px;
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 15px 35px rgba(70, 51, 41, 0.16);
  animation: float 4.2s ease-in-out infinite;
}

.scan-card > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #dff4ef;
  border-radius: 9px;
}

.scan-card svg {
  width: 18px;
}

.scan-card strong,
.scan-card small {
  display: block;
  font: 700 9px/1.2 var(--font-display);
}

.scan-card small {
  margin-top: 4px;
  color: #789094;
  font-size: 7px;
}

.scan-card > b {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #42a977;
  border-radius: 50%;
}

.scan-card > b svg {
  width: 12px;
  stroke-width: 3;
}

.mini-features {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.mini-features > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-features > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal);
  background: var(--white);
  border-radius: 11px;
  box-shadow: 0 7px 20px rgba(15, 54, 61, 0.08);
}

.mini-features svg {
  width: 19px;
}

.mini-features strong,
.mini-features small {
  display: block;
}

.mini-features strong {
  font: 700 13px/1.2 var(--font-display);
}

.mini-features small {
  margin-top: 4px;
  color: var(--body);
  font-size: 9px;
}

.doctor-visual {
  min-height: 620px;
}

.doctor-visual::before {
  content: "";
  position: absolute;
  top: 4%;
  right: 1%;
  width: 420px;
  height: 420px;
  background: #cce9ee;
  border-radius: 50%;
}

.appointment-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 43%;
  width: min(36vw, 530px);
  padding: 28px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(-1deg);
}

.appointment-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.appointment-head small,
.appointment-head strong {
  display: block;
}

.appointment-head small {
  margin-bottom: 5px;
  color: #799093;
  font-size: 8px;
}

.appointment-head strong {
  font: 700 15px/1.2 var(--font-display);
}

.appointment-head > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #dff4ef;
  border-radius: 10px;
}

.appointment-head svg {
  width: 17px;
}

.patient-profile {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 20px 0;
}

.large-avatar {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #cf796c;
  border-radius: 50%;
  font: 700 11px/1 var(--font-display);
}

.patient-profile strong,
.patient-profile small {
  display: block;
}

.patient-profile strong {
  font: 700 12px/1.2 var(--font-display);
}

.patient-profile small {
  margin-top: 4px;
  color: #789094;
  font-size: 7px;
}

.patient-profile b {
  padding: 7px 9px;
  color: var(--teal);
  background: #e3f4f1;
  border-radius: 100px;
  font-size: 8px;
}

.patient-vitals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: #f1f7f6;
  border-radius: 11px;
}

.patient-vitals > div {
  padding: 14px;
  border-left: 1px solid var(--border);
}

.patient-vitals > div:first-child {
  border: 0;
}

.patient-vitals small,
.patient-vitals strong {
  display: block;
}

.patient-vitals small {
  margin-bottom: 6px;
  color: #789094;
  font-size: 6px;
}

.patient-vitals strong {
  font: 700 11px/1 var(--font-display);
}

.appointment-note {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 11px;
}

.appointment-note svg {
  width: 17px;
  color: var(--teal);
}

.appointment-note p {
  margin: 0;
  font-size: 8px;
  line-height: 1.5;
}

.appointment-note span {
  color: #6d8589;
  font-size: 7px;
}

.appointment-card > button {
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--teal);
  border-radius: 10px;
  font: 700 10px/1 var(--font-display);
}

.appointment-card > button svg {
  width: 15px;
}

.calendar-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 6%;
  width: 250px;
  padding: 19px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(15, 54, 61, 0.16);
  transform: rotate(3deg);
}

.calendar-title {
  margin-bottom: 14px;
  font: 700 11px/1 var(--font-display);
}

.calendar-title span {
  display: flex;
  gap: 6px;
}

.calendar-title svg {
  width: 13px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  text-align: center;
  font-size: 7px;
}

.calendar-grid b {
  color: #91a3a6;
}

.calendar-grid span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
}

.calendar-grid .selected {
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
}

.panel-trust {
  display: flex;
  justify-content: center;
  text-align: center;
}

.trust-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
}

.trust-content h2 em {
  display: inline;
}

.trust-content > .lead {
  margin-right: auto;
  margin-left: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.trust-grid article {
  min-height: 250px;
  padding: 38px 29px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(21, 60, 67, 0.1);
  border-radius: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.trust-grid article:hover {
  background: var(--white);
  box-shadow: 0 18px 40px rgba(15, 54, 61, 0.09);
  transform: translateY(-6px);
}

.trust-grid article > span {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--teal);
  background: #dcefe9;
  border-radius: 15px;
}

.trust-grid svg {
  width: 25px;
}

.trust-grid strong {
  display: block;
  margin-bottom: 11px;
  font: 700 17px/1.2 var(--font-display);
}

.trust-grid p {
  margin: 0;
  color: var(--body);
  font-size: 12px;
  line-height: 1.75;
}

.compliance-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 42px;
  color: #657c80;
  font: 700 9px/1 var(--font-display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.compliance-row span {
  padding: 0 23px;
  border-left: 1px solid var(--border);
}

.compliance-row span:first-child {
  border: 0;
}

.contact-section {
  min-height: 68vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 90px 8vw 35px;
  color: var(--white);
  background: var(--navy-deep);
}

.contact-section h2 {
  max-width: 760px;
  margin: 0;
}

.contact-section h2 em {
  color: var(--cyan);
}

.contact-section footer {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9eb8bc;
  font-size: 10px;
}

.contact-section footer p {
  margin: 0;
}

.contact-section footer p:last-child {
  text-align: right;
}

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

.demo-modal {
  width: min(630px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 40px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(4, 28, 33, 0.3);
}

.demo-modal::backdrop {
  background: rgba(5, 34, 40, 0.72);
  backdrop-filter: blur(6px);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #edf4f2;
  border-radius: 50%;
}

.modal-close svg {
  width: 19px;
}

.modal-heading {
  padding-right: 40px;
}

.modal-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--teal);
  background: #dcf1ec;
  border-radius: 14px;
}

.modal-icon svg {
  width: 24px;
}

.modal-heading .eyebrow {
  margin-bottom: 14px;
}

.modal-heading h2,
.form-success h2 {
  margin-bottom: 12px;
  font-size: 37px;
  line-height: 1.05;
}

.modal-heading > p:last-child,
.form-success p {
  color: var(--body);
  font-size: 13px;
  line-height: 1.6;
}

#demoForm {
  display: grid;
  gap: 15px;
  margin-top: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

#demoForm label {
  display: grid;
  gap: 7px;
  font: 700 11px/1.2 var(--font-display);
}

#demoForm input,
#demoForm select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #f7faf9;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

#demoForm input:focus,
#demoForm select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 127, 120, 0.12);
}

#demoForm .invalid input,
#demoForm .invalid select {
  border-color: var(--danger);
}

.field-error {
  min-height: 12px;
  color: var(--danger);
  font-size: 9px;
  font-weight: 500;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  color: #7b9094;
  font-size: 9px;
}

.privacy-note svg {
  width: 11px;
}

.form-success {
  padding: 55px 10px 35px;
  text-align: center;
}

.form-success > span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
}

.form-success > span svg {
  width: 31px;
  stroke-width: 3;
}

.form-success .button {
  margin: 12px auto 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visual-delay {
  transition-delay: 120ms;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 1150px) {
  .panel {
    grid-template-columns: minmax(280px, 0.8fr) minmax(440px, 1.2fr);
    gap: 3vw;
    padding-right: 7vw;
    padding-left: 6vw;
  }

  .desktop-nav {
    gap: 19px;
  }

  .dashboard-window,
  .tablet {
    width: 54vw;
  }

  .section-rail {
    right: 1.4vw;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 76px;
    padding: 0 5vw;
  }

  .desktop-nav,
  .header-cta,
  .section-rail {
    display: none;
  }

  .menu-button {
    display: grid;
    margin-left: auto;
  }

  .panel {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 115px 7vw 80px;
  }

  .panel-copy {
    max-width: 680px;
  }

  h1 {
    max-width: 720px;
  }

  .hero-visual,
  .product-visual,
  .doctor-visual,
  .network-visual {
    min-height: 620px;
  }

  .dashboard-window,
  .tablet {
    width: min(88vw, 740px);
  }

  .appointment-card {
    width: min(68vw, 530px);
  }

  .node-patient {
    left: 6%;
  }

  .node-pharmacy,
  .node-doctor {
    right: 7%;
  }

  .scroll-cue {
    display: none;
  }

  .contact-section {
    grid-template-columns: 1fr;
    align-content: center;
  }
}

@media (max-width: 600px) {
  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .panel {
    padding: 105px 20px 65px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

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

  .text-link {
    justify-content: center;
  }

  .hero-visual,
  .product-visual {
    min-height: 420px;
  }

  .dashboard-window {
    left: 50%;
    width: 720px;
    transform: translate(-45%, -50%) scale(0.55) rotate(-2deg);
  }

  .floating-secure {
    top: 0;
    right: 0;
  }

  .floating-care {
    display: none;
  }

  .orbit-large {
    width: 470px;
    height: 470px;
  }

  .orbit-small {
    width: 340px;
    height: 340px;
  }

  .panel-number {
    font-size: 56vw;
  }

  .network-visual {
    min-height: 520px;
    transform: scale(0.84);
    margin: -50px -35px;
  }

  .network-node {
    width: 140px;
    height: 105px;
  }

  .network-center {
    width: 145px;
    height: 145px;
  }

  .node-pharmacy {
    right: 0;
  }

  .node-doctor {
    right: 0;
  }

  .node-patient {
    left: -7%;
  }

  .network-status {
    left: 7%;
    bottom: 9%;
  }

  .stat-pair {
    gap: 16px;
  }

  .stat-pair > div + div {
    padding-left: 16px;
  }

  .stat-pair strong {
    font-size: 23px;
  }

  .tablet {
    left: 50%;
    width: 760px;
    transform: translate(-46%, -50%) scale(0.52) rotate(2deg);
  }

  .scan-card {
    right: 0;
    bottom: 0;
  }

  .doctor-visual {
    min-height: 500px;
  }

  .appointment-card {
    left: 46%;
    width: 510px;
    transform: translate(-50%, -50%) scale(0.67) rotate(-1deg);
  }

  .calendar-card {
    right: -12px;
    bottom: 0;
    transform: scale(0.78) rotate(3deg);
    transform-origin: bottom right;
  }

  .doctor-visual::before {
    top: 9%;
    right: -35%;
    width: 350px;
    height: 350px;
  }

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

  .trust-grid article {
    min-height: 0;
  }

  .compliance-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .compliance-row span,
  .compliance-row span:first-child {
    border-left: 1px solid var(--border);
  }

  .contact-section {
    min-height: 80vh;
    padding: 80px 20px 28px;
  }

  .contact-section .button {
    width: 100%;
  }

  .contact-section footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-section footer p:last-child {
    text-align: left;
  }

  .demo-modal {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .modal-heading h2,
  .form-success h2 {
    font-size: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

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

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

/* Shared inner-page layouts */
.inner-page {
  background: var(--white);
}

.desktop-nav .nav-active::after {
  transform: scaleX(1);
}

.sub-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 5vw;
  overflow: hidden;
  padding: 130px 7vw 75px;
}

.sub-hero-platform {
  background: var(--mint);
}

.sub-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.sub-hero-copy h1 {
  font-size: clamp(58px, 6.2vw, 98px);
}

.content-section,
.faq-section,
.day-section,
.values-section,
.people-section,
.join-section {
  padding: 120px 8vw;
}

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

.section-heading {
  max-width: 790px;
  margin-bottom: 62px;
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading h2 em {
  display: inline;
}

.section-heading .lead {
  margin-bottom: 0;
}

.inner-footer {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 45px;
  padding: 45px 8vw;
  color: #a7c0c3;
  background: #082a32;
  font-size: 11px;
}

.inner-footer .brand {
  color: var(--white);
}

.inner-footer p {
  margin: 0;
}

.inner-footer > div {
  display: flex;
  gap: 24px;
}

.inner-footer > div a {
  color: var(--white);
  font-weight: 600;
}

.inner-footer small {
  text-align: right;
}

.inner-cta {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  padding: 100px 8vw;
  color: var(--white);
  background: var(--navy);
}

.inner-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.inner-cta h2 em {
  color: var(--cyan);
}

.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
  color: #d4e6e8;
  font-size: 13px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list svg {
  width: 18px;
  color: var(--cyan);
}

/* Platform page */
.platform-orbit {
  position: relative;
  min-height: 650px;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(8, 127, 120, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 560px;
  height: 560px;
}

.ring-two {
  width: 380px;
  height: 380px;
}

.core-node {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 8px solid #cdece4;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.core-node .mini-logo {
  width: 43px;
  height: 43px;
  margin-bottom: 9px;
  font-size: 18px;
}

.core-node strong {
  font: 800 19px/1 var(--font-display);
}

.core-node small {
  margin-top: 6px;
  color: var(--body);
  font-size: 8px;
}

.satellite {
  position: absolute;
  z-index: 4;
  width: 126px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 54, 61, 0.14);
  animation: float 4.5s ease-in-out infinite;
  font: 700 10px/1 var(--font-display);
}

.satellite svg {
  width: 24px;
  color: var(--teal);
}

.sat-one {
  top: 7%;
  left: 43%;
}

.sat-two {
  top: 44%;
  right: 0;
  animation-delay: -1s;
}

.sat-three {
  bottom: 2%;
  left: 42%;
  animation-delay: -2s;
}

.sat-four {
  top: 43%;
  left: 0;
  animation-delay: -3s;
}

.data-pulse {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border: 4px solid #cbece3;
  border-radius: 50%;
  animation: pulseTravel 5s linear infinite;
}

.pulse-one {
  top: 25%;
  left: 35%;
}

.pulse-two {
  right: 24%;
  bottom: 31%;
  animation-delay: -2.5s;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 370px;
  padding: 30px 27px;
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.feature-card:hover {
  background: #fbfdfc;
  box-shadow: 0 18px 40px rgba(15, 54, 61, 0.09);
  transform: translateY(-7px);
}

.feature-icon,
.value-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #daf1eb;
  border-radius: 14px;
}

.feature-icon svg,
.value-icon svg {
  width: 23px;
}

.coral-icon {
  color: #b85840 !important;
  background: #f8e1d8 !important;
}

.green-icon {
  color: #607f36 !important;
  background: #e7efd8 !important;
}

.blue-icon {
  color: #3e7193 !important;
  background: #dcebf3 !important;
}

.feature-card > b {
  display: block;
  margin: 35px 0 15px;
  color: #9badaf;
  font: 700 9px/1 var(--font-display);
}

.feature-card h3,
.bento-card h3,
.timeline-copy h3,
.value-row h3,
.role-grid h3 {
  font: 700 23px/1.15 var(--font-display);
  letter-spacing: -0.035em;
}

.feature-card p,
.bento-card p,
.timeline-copy p,
.value-row p,
.role-grid p {
  color: var(--body);
  font-size: 12px;
  line-height: 1.75;
}

.feature-card a,
.bento-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--teal);
  font: 700 11px/1 var(--font-display);
}

.feature-card a svg,
.bento-card a svg {
  width: 15px;
}

.split-story {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 7vw;
  padding: 110px 8vw;
}

.split-story-dark,
.stock-section,
.clinical-story {
  color: var(--white);
  background: var(--navy);
}

.split-story h2 {
  max-width: 650px;
}

.split-story h2 em {
  color: var(--teal);
}

.split-story-dark h2 em,
.clinical-story h2 em {
  color: var(--cyan);
}

.workflow-board {
  max-width: 570px;
  padding: 29px;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(2, 24, 29, 0.3);
  transform: rotate(-1.5deg);
}

.workflow-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.workflow-top span {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 700 13px/1 var(--font-display);
}

.workflow-top svg {
  width: 18px;
  color: var(--teal);
}

.workflow-top b {
  padding: 6px 10px;
  color: #2f7d55;
  background: #ddf1e5;
  border-radius: 100px;
  font-size: 8px;
}

.flow-step {
  display: grid;
  grid-template-columns: 46px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
}

.flow-step > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #e0f2ed;
  border-radius: 12px;
}

.flow-step svg {
  width: 18px;
}

.flow-step > div small,
.flow-step > div strong,
.flow-step > div p {
  display: block;
  margin: 0;
}

.flow-step > div small {
  margin-bottom: 4px;
  color: #8b9da0;
  font-size: 7px;
}

.flow-step > div strong {
  font: 700 11px/1.2 var(--font-display);
}

.flow-step > div p {
  margin-top: 4px;
  color: var(--body);
  font-size: 8px;
}

.flow-step > svg {
  color: var(--teal);
}

.flow-step.active > svg {
  animation: spin 2s linear infinite;
}

.flow-line {
  width: 1px;
  height: 15px;
  margin-left: 21px;
  background: #acdcd2;
}

.insight-section {
  background: var(--sky);
}

.insight-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 6vw;
}

.insight-dashboard {
  padding: 28px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.insight-head,
.insight-head > div,
.insight-kpis {
  display: flex;
}

.insight-head {
  align-items: center;
  justify-content: space-between;
}

.insight-head > div {
  flex-direction: column;
}

.insight-head small {
  color: var(--body);
  font-size: 8px;
}

.insight-head strong {
  margin-top: 5px;
  font: 700 19px/1 var(--font-display);
}

.insight-head > span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 8px;
}

.insight-head svg {
  width: 12px;
}

.insight-kpis {
  gap: 10px;
  margin: 26px 0;
}

.insight-kpis > div {
  flex: 1;
  padding: 15px;
  background: #f3f8f7;
  border-radius: 11px;
}

.insight-kpis small,
.insight-kpis strong {
  display: block;
}

.insight-kpis small {
  color: var(--body);
  font-size: 7px;
}

.insight-kpis strong {
  margin: 8px 0;
  font: 700 18px/1 var(--font-display);
}

.insight-kpis em {
  color: #38885e;
  font: 700 7px/1 var(--font-display);
}

.insight-chart {
  min-height: 230px;
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
}

.chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #93a5a7;
  font-size: 7px;
}

.solid-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 14px;
  padding: 0 15px;
  border-bottom: 1px solid var(--border);
  background-size: 100% 25%;
}

.solid-chart span {
  width: 7%;
  background: #9bd9d0;
  border-radius: 6px 6px 0 0;
  transform-origin: bottom;
  animation: barGrow 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.solid-chart span:nth-child(n+6) {
  background: var(--teal);
}

.insight-points {
  display: grid;
  gap: 10px;
}

.insight-points article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.insight-points article > span {
  color: var(--teal);
  font: 800 11px/1 var(--font-display);
}

.insight-points h3 {
  margin: 0 0 7px;
  font: 700 18px/1.2 var(--font-display);
}

.insight-points p {
  margin: 0;
  color: var(--body);
  font-size: 11px;
  line-height: 1.6;
}

.numbers-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 65px 8vw;
  background: var(--cream);
}

.numbers-band > div {
  padding: 15px 35px;
  border-left: 1px solid var(--border);
}

.numbers-band > div:first-child {
  border-left: 0;
}

.numbers-band strong,
.numbers-band span {
  display: block;
}

.numbers-band strong {
  margin-bottom: 8px;
  font: 700 37px/1 var(--font-display);
  letter-spacing: -0.04em;
}

.numbers-band span {
  color: var(--body);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Pharmacy page */
.pharmacy-sub-hero {
  background: var(--peach);
}

.compact-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}

.compact-proof > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--white);
  border-radius: 10px;
}

.compact-proof svg {
  width: 18px;
}

.compact-proof p,
.compact-proof strong,
.compact-proof small {
  display: block;
  margin: 0;
}

.compact-proof strong {
  font: 700 10px/1.2 var(--font-display);
}

.compact-proof small {
  margin-top: 4px;
  color: var(--body);
  font-size: 8px;
}

.pharmacy-hero-ui,
.practice-hero-ui {
  position: relative;
  min-height: 620px;
}

.rx-window {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(51vw, 760px);
  display: grid;
  grid-template-columns: 65px 1fr;
  overflow: hidden;
  background: #f5f8f7;
  border: 9px solid #183e45;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(1.5deg);
}

.rx-nav {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29px;
  padding-top: 20px;
  color: #879a9d;
  background: var(--white);
}

.rx-nav svg {
  width: 17px;
}

.rx-nav svg:nth-of-type(2) {
  color: var(--teal);
}

.rx-main {
  padding: 28px;
}

.rx-heading,
.rx-patient {
  display: flex;
  align-items: center;
}

.rx-heading {
  justify-content: space-between;
}

.rx-heading small,
.rx-heading h3 {
  display: block;
  margin: 0;
}

.rx-heading small {
  color: var(--body);
  font-size: 8px;
}

.rx-heading h3 {
  margin-top: 4px;
  font: 700 20px/1 var(--font-display);
}

.rx-heading button {
  padding: 10px 13px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-size: 8px;
}

.queue-tabs {
  display: flex;
  gap: 25px;
  margin: 27px 0 12px;
  border-bottom: 1px solid var(--border);
}

.queue-tabs span {
  padding: 0 2px 11px;
  color: #6f8588;
  font-size: 8px;
}

.queue-tabs span.active {
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
  font-weight: 700;
}

.queue-tabs b {
  margin-left: 4px;
  padding: 2px 5px;
  background: #e0eeeb;
  border-radius: 100px;
}

.rx-patient {
  display: grid;
  grid-template-columns: 36px 1fr auto 16px;
  gap: 10px;
  min-height: 74px;
  padding: 0 13px;
  margin-top: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 11px;
}

.rx-patient strong,
.rx-patient small {
  display: block;
  font-size: 9px;
}

.rx-patient small {
  margin-top: 5px;
  color: var(--body);
  font-size: 7px;
}

.rx-patient em {
  padding: 6px 8px;
  color: #a45425;
  background: #f8e7d7;
  border-radius: 100px;
  font: 700 7px/1 var(--font-display);
}

.rx-patient em.standard {
  color: #47737a;
  background: #e5efef;
}

.rx-patient > svg {
  width: 14px;
}

.safety-pop,
.note-pop {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 5%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(15, 54, 61, 0.15);
  animation: float 4s ease-in-out infinite;
}

.safety-pop > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #397f59;
  background: #ddf0e5;
  border-radius: 50%;
}

.safety-pop svg,
.note-pop > svg {
  width: 18px;
}

.safety-pop strong,
.safety-pop small,
.note-pop strong,
.note-pop small {
  display: block;
  font: 700 9px/1.2 var(--font-display);
}

.safety-pop small,
.note-pop small {
  margin-top: 4px;
  color: var(--body);
  font-size: 7px;
  font-weight: 500;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bento-card {
  min-height: 360px;
  overflow: hidden;
  padding: 34px;
  background: #f4f8f7;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.bento-wide {
  grid-column: 1 / -1;
  min-height: 390px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 6vw;
}

.bento-card h3 {
  margin: 28px 0 12px;
  font-size: 27px;
}

.bento-dark {
  color: var(--white);
  background: var(--navy);
}

.bento-dark p {
  color: #cbdfe1;
}

.verification-demo {
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 54, 61, 0.12);
}

.verify-medicine {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 12px;
}

.verify-medicine > b {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #def1ed;
  border-radius: 11px;
}

.verify-medicine svg {
  width: 20px;
}

.verify-medicine small,
.verify-medicine strong {
  display: block;
}

.verify-medicine small {
  margin-bottom: 4px;
  color: var(--body);
  font-size: 7px;
}

.verify-medicine strong {
  font: 700 11px/1 var(--font-display);
}

.verify-medicine em {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  color: #317b53;
  background: #def1e6;
  border-radius: 100px;
  font: 700 7px/1 var(--font-display);
}

.verify-medicine em svg {
  width: 11px;
}

.verify-code {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--teal);
  background: #eef7f5;
  border: 1px dashed #85c7bb;
  border-radius: 12px;
  font-size: 8px;
}

.verify-code svg {
  width: 28px;
  animation: scanMove 1.6s ease-in-out infinite;
}

.mini-stock {
  height: 105px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 25px;
}

.mini-stock span {
  flex: 1;
  background: #e2a18a;
  border-radius: 6px 6px 0 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 35px;
}

.service-tags span {
  padding: 9px 12px;
  color: #d7e8e9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  font-size: 8px;
}

.dispensing-story {
  background: var(--mint);
}

.numbered-list {
  display: grid;
  gap: 0;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.numbered-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.numbered-list li > span {
  color: var(--teal);
  font: 800 10px/1.2 var(--font-display);
}

.numbered-list strong {
  font: 700 14px/1.2 var(--font-display);
}

.numbered-list p {
  margin: 5px 0 0;
  color: var(--body);
  font-size: 10px;
  line-height: 1.5;
}

.dispense-card {
  max-width: 510px;
  margin-left: auto;
  padding: 27px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.dispense-top,
.dispense-person,
.medicine-detail,
.check-rows span {
  display: flex;
  align-items: center;
}

.dispense-top {
  justify-content: space-between;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--border);
}

.dispense-top span {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 700 11px/1 var(--font-display);
}

.dispense-top svg {
  width: 17px;
  color: var(--teal);
}

.dispense-top b {
  color: var(--body);
  font-size: 7px;
}

.dispense-person {
  gap: 11px;
  padding: 18px 0;
}

.dispense-person strong,
.dispense-person small {
  display: block;
}

.dispense-person strong {
  font: 700 11px/1.2 var(--font-display);
}

.dispense-person small {
  margin-top: 4px;
  color: var(--body);
  font-size: 7px;
}

.medicine-detail {
  align-items: flex-start;
  gap: 13px;
  padding: 17px;
  background: #eff7f5;
  border-radius: 12px;
}

.medicine-detail > b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal);
  background: var(--white);
  border-radius: 10px;
}

.medicine-detail svg {
  width: 18px;
}

.medicine-detail small,
.medicine-detail strong {
  display: block;
}

.medicine-detail small {
  color: var(--body);
  font-size: 7px;
}

.medicine-detail strong {
  margin-top: 4px;
  font: 700 10px/1 var(--font-display);
}

.medicine-detail p {
  margin: 7px 0 0;
  color: var(--body);
  font-size: 8px;
}

.check-rows {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  font-size: 8px;
}

.check-rows span {
  gap: 8px;
}

.check-rows svg {
  width: 15px;
  color: #378359;
}

.dispense-card > button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--teal);
  border-radius: 10px;
  font: 700 9px/1 var(--font-display);
}

.dispense-card > button svg {
  width: 14px;
}

.stock-section .section-heading {
  color: var(--white);
}

.stock-section .lead {
  color: #c8dddf;
}

.stock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stock-stats article {
  min-height: 220px;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: 18px;
}

.stock-stats article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #def1ed;
  border-radius: 11px;
}

.stock-stats svg {
  width: 19px;
}

.stock-stats strong {
  display: block;
  margin: 33px 0 8px;
  font: 700 42px/1 var(--font-display);
  letter-spacing: -0.05em;
}

.stock-stats p {
  color: var(--body);
  font-size: 10px;
}

.stock-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 55px;
}

.stock-features > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  column-gap: 12px;
}

.stock-features svg {
  grid-row: 1 / 3;
  width: 22px;
  color: var(--cyan);
}

.stock-features strong {
  font: 700 13px/1.2 var(--font-display);
}

.stock-features p {
  margin: 6px 0 0;
  color: #bad1d4;
  font-size: 9px;
  line-height: 1.5;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  background: var(--cream);
}

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

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

.faq-button {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font: 700 16px/1.3 var(--font-display);
}

.faq-button svg {
  width: 19px;
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.faq-item.open .faq-button svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--body);
  font-size: 12px;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 25px;
}

.peach-cta {
  color: var(--ink);
  background: var(--peach);
}

.peach-cta h2 em {
  color: var(--teal);
}

/* Doctors page */
.doctors-sub-hero,
.sky-faq {
  background: var(--sky);
}

.practice-window {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(53vw, 800px);
  overflow: hidden;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(-1.5deg);
}

.practice-top {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--border);
}

.practice-top > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.practice-top svg {
  width: 15px;
}

.practice-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 455px;
  background: #f6f9f8;
}

.practice-body > aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 29px;
  color: #84999c;
  background: var(--white);
  border-right: 1px solid var(--border);
}

.practice-body > aside svg {
  width: 16px;
}

.practice-body > aside svg:first-child {
  color: var(--teal);
}

.day-view {
  padding: 24px;
}

.day-head,
.schedule-title,
.record-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.day-head small,
.day-head h3 {
  display: block;
  margin: 0;
}

.day-head small {
  color: var(--body);
  font-size: 7px;
}

.day-head h3 {
  margin-top: 4px;
  font: 700 18px/1 var(--font-display);
}

.day-head button {
  padding: 9px 12px;
  color: var(--white);
  background: var(--teal);
  border-radius: 7px;
  font-size: 7px;
}

.day-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  margin-top: 21px;
}

.schedule-column,
.patient-summary {
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.schedule-title {
  margin-bottom: 12px;
  font-size: 8px;
}

.schedule-title span {
  color: var(--body);
  font-size: 7px;
}

.time-slot {
  display: grid;
  grid-template-columns: 34px 2px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 63px;
  border-top: 1px solid var(--border);
}

.time-slot time {
  color: var(--body);
  font-size: 7px;
}

.slot-line {
  width: 2px;
  height: 34px;
  background: #b6dcd5;
  border-radius: 2px;
}

.time-slot.current .slot-line {
  background: var(--teal);
}

.time-slot b,
.time-slot small {
  display: block;
  font-size: 8px;
}

.time-slot small {
  margin-top: 4px;
  color: var(--body);
  font-size: 6px;
}

.patient-summary {
  text-align: center;
}

.patient-summary .large-avatar {
  margin: 4px auto 9px;
}

.patient-summary > strong,
.patient-summary > small {
  display: block;
}

.patient-summary > strong {
  font: 700 10px/1 var(--font-display);
}

.patient-summary > small {
  margin-top: 4px;
  color: var(--body);
  font-size: 6px;
}

.summary-vitals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin: 15px 0;
}

.summary-vitals span {
  padding: 9px 4px;
  color: var(--body);
  background: #eff5f4;
  border-radius: 7px;
  font-size: 5px;
}

.summary-vitals b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 8px;
}

.patient-summary button {
  width: 100%;
  min-height: 34px;
  color: var(--teal);
  background: #def1ed;
  border-radius: 8px;
  font: 700 7px/1 var(--font-display);
}

.patient-summary button svg {
  width: 11px;
  vertical-align: middle;
}

.note-pop {
  right: 2%;
  color: var(--ink);
}

.note-pop > svg {
  color: var(--teal);
}

.day-section {
  background: var(--white);
}

.day-timeline {
  display: grid;
  gap: 70px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 55px 0.8fr 1.2fr;
  align-items: center;
  gap: 4vw;
  min-height: 500px;
  padding: 45px;
  background: #f5f9f8;
  border-radius: 24px;
}

.timeline-step.reverse {
  grid-template-columns: 55px 1.2fr 0.8fr;
}

.timeline-step.reverse .timeline-copy {
  order: 3;
}

.timeline-step.reverse .timeline-art {
  order: 2;
}

.timeline-number {
  align-self: start;
  color: var(--teal);
  font: 800 12px/1 var(--font-display);
}

.timeline-copy > small {
  color: var(--teal);
  font: 800 9px/1 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-copy h3 {
  margin: 14px 0;
  font-size: 36px;
}

.timeline-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  list-style: none;
  font: 700 9px/1 var(--font-display);
}

.timeline-copy li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.timeline-copy li svg {
  width: 14px;
  color: var(--teal);
}

.timeline-art {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.prep-card,
.consult-note,
.follow-card {
  width: min(100%, 480px);
  padding: 27px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 54, 61, 0.12);
}

.prep-card > div {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 10px;
}

.prep-card p,
.prep-card strong,
.prep-card small {
  display: block;
  margin: 0;
}

.prep-card strong {
  font: 700 10px/1 var(--font-display);
}

.prep-card small {
  margin-top: 4px;
  color: var(--body);
  font-size: 7px;
}

.prep-card b {
  padding: 6px 9px;
  color: #367b54;
  background: #dff1e6;
  border-radius: 100px;
  font-size: 7px;
}

.prep-card hr {
  margin: 18px 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.prep-card > span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 8px;
}

.prep-card > span svg {
  width: 16px;
  color: var(--teal);
}

.consult-tabs {
  display: flex;
  gap: 21px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.consult-tabs span {
  padding-bottom: 11px;
  color: var(--body);
  font-size: 8px;
}

.consult-tabs .active {
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
  font-weight: 700;
}

.consult-note label {
  display: block;
  margin: 16px 0 7px;
  font: 700 8px/1 var(--font-display);
}

.consult-note > p {
  padding: 12px;
  color: var(--body);
  background: #f4f8f7;
  border-radius: 8px;
  font-size: 8px;
  line-height: 1.5;
}

.note-lines {
  display: grid;
  gap: 8px;
  padding: 13px;
  background: #f4f8f7;
  border-radius: 8px;
}

.note-lines span {
  height: 5px;
  background: #d7e4e2;
  border-radius: 5px;
}

.note-lines span:last-child {
  width: 63%;
}

.consult-note > button {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 17px;
  padding: 9px 12px;
  color: var(--teal);
  background: #dff1ed;
  border-radius: 8px;
  font: 700 8px/1 var(--font-display);
}

.consult-note > button svg {
  width: 14px;
}

.follow-card {
  text-align: center;
}

.follow-card > span {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
}

.follow-card > span svg {
  width: 25px;
}

.follow-card > strong {
  display: block;
  font: 700 16px/1 var(--font-display);
}

.follow-card > p {
  margin: 9px 0 20px;
  color: var(--body);
  font-size: 8px;
}

.follow-card > div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid var(--border);
  font-size: 7px;
}

.follow-card > div small {
  color: var(--body);
}

.clinical-stats {
  display: flex;
  gap: 35px;
  margin-top: 40px;
}

.clinical-stats > div + div {
  padding-left: 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.clinical-stats strong,
.clinical-stats span {
  display: block;
}

.clinical-stats strong {
  color: var(--cyan);
  font: 700 37px/1 var(--font-display);
}

.clinical-stats span {
  margin-top: 7px;
  color: #c2d9db;
  font-size: 8px;
}

.record-timeline {
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(2, 24, 29, 0.3);
}

.record-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.record-head > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.record-head p,
.record-head strong,
.record-head small {
  display: block;
  margin: 0;
}

.record-head strong {
  font: 700 10px/1 var(--font-display);
}

.record-head small {
  margin-top: 4px;
  color: var(--body);
  font-size: 7px;
}

.record-head > span {
  display: flex;
  gap: 7px;
  color: var(--body);
  font-size: 8px;
}

.record-head svg {
  width: 13px;
}

.record-event {
  display: grid;
  grid-template-columns: 38px 12px 1fr;
  gap: 11px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.record-event > b {
  color: var(--body);
  font-size: 7px;
}

.record-dot {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border: 3px solid #cfece5;
  box-sizing: content-box;
  border-radius: 50%;
}

.record-dot.coral-dot {
  background: #d47c62;
  border-color: #f5dcd5;
}

.record-dot.green-dot {
  background: #799949;
  border-color: #e4edda;
}

.record-event small,
.record-event strong {
  display: block;
}

.record-event small {
  margin-bottom: 4px;
  color: var(--body);
  font-size: 7px;
}

.record-event strong {
  font: 700 10px/1 var(--font-display);
}

.record-event p {
  margin: 6px 0 0;
  color: var(--body);
  font-size: 8px;
}

.team-section {
  background: var(--cream);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.role-grid article {
  min-height: 300px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 17px;
  transition: transform 220ms ease, background-color 220ms ease;
}

.role-grid article:hover {
  background: var(--white);
  transform: translateY(-6px);
}

.role-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #daf0ea;
  border-radius: 13px;
}

.role-grid svg {
  width: 21px;
}

.role-grid h3 {
  margin-top: 50px;
}

/* Distinct page heroes */
.hero-platform {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
  padding: 140px 8vw 70px;
  color: var(--white);
  background: var(--navy);
}

.hero-platform::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 8%;
  right: 6%;
  width: 220px;
  height: 220px;
  background: rgba(83, 212, 198, 0.16);
  border-radius: 50%;
}

.hero-platform-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6vw;
  align-items: end;
}

.hero-platform h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(58px, 7vw, 104px);
}

.hero-platform h1 em {
  color: var(--cyan);
}

.hero-platform .lead {
  color: #c5dbde;
}

.hero-platform-actions .hero-actions {
  margin-top: 28px;
}

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

.arch-strip {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

.arch-core {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 18px;
}

.arch-core .mini-logo {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

.arch-core strong {
  font: 800 16px/1 var(--font-display);
}

.arch-core small {
  margin-top: 6px;
  color: var(--body);
  font-size: 8px;
}

.arch-connectors {
  display: none;
}

.arch-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.arch-modules article {
  min-height: 150px;
  padding: 22px;
  background: rgba(8, 42, 50, 0.55);
  border: 1px solid rgba(83, 212, 198, 0.18);
  border-radius: 16px;
  transition: transform 220ms ease, background-color 220ms ease;
}

.arch-modules article:hover {
  background: rgba(8, 42, 50, 0.9);
  transform: translateY(-4px);
}

.arch-modules svg {
  width: 22px;
  margin-bottom: 28px;
  color: var(--cyan);
}

.arch-modules strong,
.arch-modules small {
  display: block;
}

.arch-modules strong {
  margin-bottom: 6px;
  font: 700 14px/1.2 var(--font-display);
}

.arch-modules small {
  color: #9eb8bc;
  font-size: 8px;
}

.hero-pharmacy {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5vw;
  padding: 130px 7vw 70px;
  background: var(--peach);
}

.hero-pharmacy-aside {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.pharmacy-stat-stack {
  display: grid;
  gap: 28px;
  margin-top: 42px;
}

.pharmacy-stat-stack strong,
.pharmacy-stat-stack span {
  display: block;
}

.pharmacy-stat-stack strong {
  margin-bottom: 6px;
  font: 700 42px/1 var(--font-display);
  letter-spacing: -0.05em;
}

.pharmacy-stat-stack span {
  color: var(--body);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-pharmacy-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4vw;
  align-items: center;
}

.hero-pharmacy-main h1 {
  max-width: 560px;
  font-size: clamp(52px, 5.4vw, 84px);
}

.rx-stack {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(21, 60, 67, 0.08);
  border-radius: 22px;
}

.rx-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(70, 51, 41, 0.08);
  transition: transform 220ms ease;
}

.rx-ticket:hover {
  transform: translateX(6px);
}

.rx-ticket.priority {
  outline: 2px solid rgba(8, 127, 120, 0.18);
}

.rx-ticket > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rx-ticket strong,
.rx-ticket small {
  display: block;
}

.rx-ticket strong {
  font: 700 13px/1.2 var(--font-display);
}

.rx-ticket small {
  margin-top: 4px;
  color: var(--body);
  font-size: 8px;
}

.rx-ticket em {
  padding: 7px 10px;
  color: #a45425;
  background: #f8e7d7;
  border-radius: 100px;
  font: 700 8px/1 var(--font-display);
}

.rx-ticket em.standard {
  color: #47737a;
  background: #e5efef;
}

.rx-safe-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 14px;
  color: #2f7d55;
  background: #ddf1e5;
  border-radius: 100px;
  font: 700 9px/1 var(--font-display);
}

.rx-safe-chip svg {
  width: 15px;
}

.hero-doctors {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
  padding: 140px 7vw 60px;
  background: var(--sky);
}

.hero-doctors::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 6%;
  right: 4%;
  width: 260px;
  height: 260px;
  background: #cce9ee;
  border-radius: 50%;
}

.hero-doctors-intro h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(56px, 6.4vw, 96px);
}

.hero-doctors-meta {
  display: grid;
  grid-template-columns: minmax(280px, 520px) auto;
  gap: 40px;
  align-items: end;
}

.day-ribbon {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 60, 67, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15, 54, 61, 0.08);
}

.day-ribbon-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: var(--white);
  border-radius: 16px;
}

.day-ribbon-label small {
  color: var(--body);
  font-size: 8px;
}

.day-ribbon-label strong {
  margin: 8px 0;
  font: 700 18px/1.2 var(--font-display);
}

.day-ribbon-label > span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--teal);
  background: #dff4ef;
  border-radius: 100px;
  font: 700 8px/1 var(--font-display);
}

.day-ribbon-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.day-ribbon-track article {
  position: relative;
  min-height: 150px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  transition: transform 220ms ease;
}

.day-ribbon-track article:hover {
  transform: translateY(-5px);
}

.day-ribbon-track article.active {
  color: var(--white);
  background: var(--teal);
}

.day-ribbon-track time,
.day-ribbon-track strong,
.day-ribbon-track small {
  display: block;
}

.day-ribbon-track time {
  margin-bottom: 28px;
  font: 700 10px/1 var(--font-display);
  opacity: 0.7;
}

.day-ribbon-track strong {
  margin-bottom: 6px;
  font: 700 15px/1.2 var(--font-display);
}

.day-ribbon-track small {
  font-size: 9px;
  opacity: 0.75;
}

.day-ribbon-track b {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 8px;
  color: var(--teal);
  background: var(--white);
  border-radius: 100px;
  font: 800 8px/1 var(--font-display);
}

.hero-company {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
  padding: 150px 8vw 70px;
  background: var(--cream);
}

.hero-company::before,
.hero-company::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.hero-company::before {
  right: 5%;
  top: 12%;
  width: 220px;
  height: 220px;
  background: #f0d9cf;
}

.hero-company::after {
  left: 4%;
  bottom: 10%;
  width: 240px;
  height: 240px;
  background: #e7f0d8;
}

.hero-company-inner {
  max-width: 980px;
}

.hero-company h1 {
  max-width: 980px;
  font-size: clamp(52px, 6vw, 92px);
}

.hero-company h1 em {
  display: inline;
}

.hero-company .lead {
  max-width: 680px;
}

.founder-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 16px;
}

.founder-strip-item,
.founder-strip-note {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 120px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 60, 67, 0.1);
  border-radius: 18px;
}

.founder-strip-item small {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font: 800 8px/1 var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-strip-item strong {
  display: block;
  margin-bottom: 4px;
  font: 700 16px/1.2 var(--font-display);
}

.founder-strip-item p,
.founder-strip-note p {
  margin: 0;
  color: var(--body);
  font-size: 11px;
}

.founder-strip-note {
  color: var(--ink);
  background: var(--white);
}

.founder-strip-note svg {
  width: 26px;
  flex: 0 0 auto;
  color: var(--teal);
}

.founder-strip-note p {
  font: 700 13px/1.4 var(--font-display);
  color: var(--ink);
}

.manifesto-section {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 8vw;
  padding: 140px 8vw;
  background: var(--cream);
}

.manifesto-label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  color: var(--body);
  font: 700 9px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto-copy h2 {
  max-width: 950px;
}

.manifesto-copy h2 em {
  display: inline;
}

.manifesto-copy > p {
  max-width: 740px;
  margin-left: 20%;
  color: var(--body);
  font-size: 16px;
  line-height: 1.8;
}

.values-section {
  background: var(--white);
}

.value-list {
  border-top: 1px solid var(--border);
}

.value-row {
  min-height: 170px;
  display: grid;
  grid-template-columns: 60px 65px 0.65fr 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--border);
}

.value-number {
  color: var(--teal);
  font: 800 10px/1 var(--font-display);
}

.value-row h3,
.value-row p {
  margin: 0;
}

.impact-section {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 7vw;
  padding: 110px 8vw;
  background: var(--mint);
}

.impact-copy h2 em {
  display: inline;
}

.impact-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.impact-numbers > div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.impact-numbers strong {
  font: 700 45px/1 var(--font-display);
  letter-spacing: -0.05em;
}

.impact-numbers span {
  margin-top: 10px;
  color: var(--body);
  font-size: 9px;
}

.security-section {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 8vw;
  padding: 110px 8vw;
  color: var(--white);
  background: var(--navy);
}

.security-seal {
  text-align: center;
}

.seal-ring {
  width: min(30vw, 390px);
  height: min(30vw, 390px);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(83, 212, 198, 0.25);
  border-radius: 50%;
  animation: sealPulse 3.5s ease-in-out infinite;
}

.seal-ring > span {
  width: 46%;
  height: 46%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border: 12px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.seal-ring svg {
  width: 50%;
  height: 50%;
}

.security-seal small {
  color: #acc7ca;
  font: 700 8px/1 var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.security-copy h2 em {
  color: var(--cyan);
}

.security-copy .lead {
  color: #c4dadd;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 32px 0;
}

.security-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  color: #d7e7e9;
  font-size: 8px;
}

.security-badges svg {
  width: 15px;
  color: var(--cyan);
}

.people-section {
  background: var(--peach);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.founders-grid {
  grid-template-columns: repeat(4, minmax(0, 280px));
  justify-content: center;
  gap: 28px;
}

.founder-card {
  text-align: center;
}

.founder-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 12px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 100px;
  font: 800 9px/1 var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.people-grid article h3 {
  margin: 17px 0 5px;
  font: 700 15px/1 var(--font-display);
}

.founder-card h3 {
  margin-top: 14px;
  font-size: 22px;
}

.people-grid article p {
  color: var(--body);
  font-size: 9px;
}

.founder-card p {
  font-size: 12px;
}

.person-photo {
  aspect-ratio: 0.82;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
}

.person-photo.compact {
  width: 72px;
  height: 72px;
  aspect-ratio: auto;
  flex: 0 0 auto;
  border-radius: 16px;
}

.person-photo.compact > span {
  font-size: 22px;
  opacity: 0.45;
}

.person-photo span {
  opacity: 0.32;
  font: 800 55px/1 var(--font-display);
}

.person-a {
  color: #3d7682;
  background: #bde0e3;
}

.person-b {
  color: #a15f49;
  background: #efc0af;
}

.person-c {
  color: #657f3e;
  background: #d2dfb5;
}

.person-d {
  color: #6f5788;
  background: #dac8e2;
}

.join-section {
  background: var(--white);
}

.join-card {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 65px;
  color: var(--white);
  background: var(--teal);
  border-radius: 25px;
}

.join-card > div {
  max-width: 690px;
}

.join-card h2 {
  margin-bottom: 17px;
}

.join-card h2 em {
  color: #c8f0e7;
}

.join-card p {
  max-width: 560px;
  color: #d6efeb;
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.contact-cards > a {
  display: grid;
  grid-template-columns: 45px 1fr 20px;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 15px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-cards > a:hover {
  box-shadow: 0 12px 30px rgba(15, 54, 61, 0.08);
  transform: translateY(-4px);
}

.contact-cards > a > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #def1ed;
  border-radius: 11px;
}

.contact-cards svg {
  width: 18px;
}

.contact-cards small,
.contact-cards strong {
  display: block;
}

.contact-cards small {
  margin-bottom: 4px;
  color: var(--body);
  font-size: 8px;
}

.contact-cards strong {
  font: 700 12px/1 var(--font-display);
}

@keyframes pulseTravel {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(35px, 20px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

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

@keyframes sealPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

/* Hero image replacement + continuous motion */
.hero-shot {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 48%;
  width: min(52vw, 820px);
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(-2deg);
  background: var(--white);
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.live-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 100px;
  font: 700 10px/1 var(--font-display);
  box-shadow: 0 10px 24px rgba(15, 54, 61, 0.12);
}

.floating-sync {
  top: 18%;
  left: 2%;
}

.orbit.is-spinning {
  animation: orbitSpin 28s linear infinite;
}

.orbit.is-spinning-reverse {
  animation: orbitSpin 36s linear infinite reverse;
}

.float-slow {
  animation: float 5.5s ease-in-out infinite;
}

.float-delayed {
  animation: float 4.8s ease-in-out infinite;
  animation-delay: -1.8s;
}

.float-mid {
  animation: float 4.2s ease-in-out infinite;
  animation-delay: -0.8s;
}

.spin-icon {
  animation: spin 2.4s linear infinite;
}

.pulse-dot {
  animation: pulseDot 1.6s ease-in-out infinite;
}

.marquee-band {
  overflow: hidden;
  padding: 18px 0;
  color: var(--white);
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 28s linear infinite;
  font: 700 12px/1 var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}

.media-frame {
  position: absolute;
  top: 50%;
  left: 48%;
  width: min(46vw, 720px);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(1.5deg);
  background: var(--white);
}

.media-frame img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.media-frame-peach {
  transform: translate(-50%, -50%) rotate(2deg);
}

.media-frame-sky {
  transform: translate(-50%, -50%) rotate(-1.5deg);
}

.media-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--white);
  font: 700 11px/1 var(--font-display);
}

.media-caption svg {
  width: 16px;
  color: var(--teal);
}

.doctor-visual .calendar-card {
  z-index: 4;
}

.home-process,
.home-stories {
  padding: 110px 8vw;
}

.home-process {
  background: var(--white);
}

.home-stories {
  background: var(--mint);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f7fbfa;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.process-grid article:hover {
  box-shadow: 0 16px 36px rgba(15, 54, 61, 0.08);
  transform: translateY(-6px);
}

.process-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font: 800 12px/1 var(--font-display);
}

.process-grid h3 {
  margin: 0 0 12px;
  font: 700 22px/1.2 var(--font-display);
}

.process-grid p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.7;
}

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

.story-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 60, 67, 0.1);
  border-radius: 20px;
  transition: transform 220ms ease, background-color 220ms ease;
}

.story-card:hover {
  background: var(--white);
  transform: translateY(-6px);
}

.story-card blockquote {
  margin: 0;
  font: 500 18px/1.55 var(--font-display);
  letter-spacing: -0.02em;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.story-meta strong,
.story-meta small {
  display: block;
}

.story-meta strong {
  font: 700 13px/1.2 var(--font-display);
}

.story-meta small {
  margin-top: 4px;
  color: var(--body);
  font-size: 10px;
}

.module-showcase {
  display: grid;
  gap: 24px;
}

.module-showcase article {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4vw;
  align-items: center;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #f7fbfa;
}

.module-showcase article:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
}

.module-showcase article:nth-child(even) img {
  order: 2;
}

.module-showcase img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
}

.module-showcase h3 {
  margin: 0 0 12px;
  font: 700 28px/1.15 var(--font-display);
}

.module-showcase p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.75;
}

.module-showcase a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--teal);
  font: 700 12px/1 var(--font-display);
}

.module-showcase a svg {
  width: 15px;
}

.quote-band {
  padding: 100px 8vw;
  text-align: center;
  background: var(--mint);
}

.quote-band blockquote {
  max-width: 920px;
  margin: 0 auto 28px;
  font: 500 clamp(24px, 3vw, 36px)/1.35 var(--font-display);
  letter-spacing: -0.03em;
}

.quote-band strong,
.quote-band span {
  display: block;
}

.quote-band strong {
  font: 700 14px/1 var(--font-display);
}

.quote-band span {
  margin-top: 6px;
  color: var(--body);
  font-size: 11px;
}

.media-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5vw;
  align-items: center;
}

.media-feature.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.media-feature.reverse img {
  order: 2;
}

.media-feature img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.dark-checks {
  color: var(--ink);
}

.dark-checks svg {
  color: var(--teal);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.principle-grid article {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f7fbfa;
  transition: transform 220ms ease;
}

.principle-grid article:hover {
  transform: translateY(-5px);
}

.principle-grid h3 {
  margin: 0 0 12px;
  font: 700 22px/1.2 var(--font-display);
}

.principle-grid p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.7;
}

.network-status span,
.pulse-dot {
  box-shadow: 0 0 0 0 rgba(64, 173, 117, 0.45);
}

.soft-rise {
  animation: softRise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(64, 173, 117, 0.45);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(64, 173, 117, 0);
  }
}

@media (max-width: 900px) {
  .hero-shot {
    width: min(88vw, 760px);
  }

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

  .media-frame {
    width: min(88vw, 720px);
  }

  .media-frame img {
    height: 360px;
  }

  .module-showcase article,
  .module-showcase article:nth-child(even),
  .media-feature,
  .media-feature.reverse {
    grid-template-columns: 1fr;
  }

  .module-showcase article:nth-child(even) img,
  .media-feature.reverse img {
    order: 0;
  }
}

@media (max-width: 600px) {
  .hero-shot {
    left: 50%;
    width: 720px;
    transform: translate(-45%, -50%) scale(0.55) rotate(-2deg);
  }

  .floating-sync {
    display: none;
  }

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

  .home-process,
  .home-stories {
    padding: 80px 20px;
  }

  .media-frame {
    left: 48%;
    width: 760px;
    transform: translate(-46%, -50%) scale(0.52) rotate(2deg);
  }

  .media-frame-sky {
    transform: translate(-50%, -50%) scale(0.52) rotate(-1.5deg);
  }

  .module-showcase img,
  .media-feature img {
    height: 260px;
  }

  .story-card blockquote {
    font-size: 16px;
  }
}

@media (max-width: 1050px) {
  .hero-platform-top,
  .hero-pharmacy,
  .hero-pharmacy-main,
  .hero-doctors-meta,
  .day-ribbon,
  .founder-strip {
    grid-template-columns: 1fr;
  }

  .arch-strip {
    grid-template-columns: 1fr;
  }

  .arch-modules {
    grid-template-columns: 1fr 1fr;
  }

  .day-ribbon-track {
    grid-template-columns: 1fr 1fr;
  }

  .capability-grid,
  .role-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card {
    min-height: 330px;
  }

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

@media (max-width: 820px) {
  .hero-platform,
  .hero-pharmacy,
  .hero-doctors,
  .hero-company {
    min-height: auto;
    padding: 120px 7vw 70px;
  }

  .hero-pharmacy {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pharmacy-stat-stack {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
  }

  .content-section,
  .faq-section,
  .day-section,
  .values-section,
  .people-section,
  .join-section {
    padding: 90px 7vw;
  }

  .split-story,
  .impact-section,
  .security-section {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 90px 7vw;
  }

  .insight-layout,
  .faq-section,
  .manifesto-section {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-template-columns: 1fr;
  }

  .timeline-step,
  .timeline-step.reverse {
    grid-template-columns: 45px 1fr;
  }

  .timeline-art,
  .timeline-step.reverse .timeline-art {
    grid-column: 2;
    order: 3;
  }

  .timeline-step.reverse .timeline-copy {
    order: 2;
  }

  .manifesto-copy > p {
    margin-left: 0;
  }

  .security-seal {
    order: 2;
  }

  .seal-ring {
    width: min(70vw, 390px);
    height: min(70vw, 390px);
  }

  .inner-cta {
    min-height: 520px;
    grid-template-columns: 1fr;
    align-content: center;
  }

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

  .inner-footer small {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .hero-platform,
  .hero-pharmacy,
  .hero-doctors,
  .hero-company {
    padding: 110px 20px 60px;
  }

  .hero-platform h1,
  .hero-pharmacy-main h1,
  .hero-doctors-intro h1,
  .hero-company h1 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .arch-modules,
  .day-ribbon-track,
  .pharmacy-stat-stack,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .bento-grid,
  .stock-stats,
  .stock-features,
  .role-grid,
  .people-grid,
  .contact-cards,
  .numbers-band {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-column: auto;
  }

  .feature-card,
  .bento-card {
    min-height: auto;
  }

  .insight-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .insight-chart {
    min-height: 170px;
  }

  .numbers-band > div,
  .numbers-band > div:first-child {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .split-story {
    gap: 60px;
  }

  .workflow-board,
  .dispense-card,
  .record-timeline {
    padding: 20px;
    transform: none;
  }

  .verification-demo {
    padding: 16px;
  }

  .verify-medicine {
    grid-template-columns: 43px 1fr;
  }

  .verify-medicine em {
    grid-column: 2;
    width: fit-content;
  }

  .timeline-step,
  .timeline-step.reverse {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 20px;
  }

  .timeline-art,
  .timeline-step.reverse .timeline-art {
    grid-column: 1;
  }

  .timeline-number {
    padding-bottom: 12px;
  }

  .clinical-stats {
    gap: 18px;
  }

  .clinical-stats > div + div {
    padding-left: 18px;
  }

  .manifesto-section {
    padding: 90px 20px;
  }

  .value-row {
    grid-template-columns: 35px 50px 1fr;
    gap: 15px;
    padding: 25px 0;
  }

  .value-row p {
    grid-column: 3;
  }

  .impact-numbers {
    grid-template-columns: 1fr;
  }

  .join-card {
    min-height: 500px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 35px 24px;
  }

  .join-card .button {
    width: 100%;
  }

  .inner-cta {
    padding: 80px 20px;
  }

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

  .inner-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding: 50px 20px;
  }

  .inner-footer > div {
    flex-wrap: wrap;
  }
}

/* Improved CSS mockups (no photo assets) */
.dash-pro {
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 80px rgba(15, 54, 61, 0.18), 0 8px 24px rgba(15, 54, 61, 0.08);
}

.dash-pro .window-top { background: #fbfefd; }

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: #2f7d55;
  background: #ddf1e5;
  border-radius: 100px;
  font: 700 8px/1 var(--font-display);
}

.dash-sidebar .active-nav,
.pharm-side .active-nav { color: var(--teal); }

.metric-live { position: relative; overflow: hidden; }
.trend-up { color: #2f7d55 !important; }

.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  margin-top: 8px;
}

.sparkline span {
  flex: 1;
  background: rgba(8, 127, 120, 0.35);
  border-radius: 2px;
  animation: sparkPulse 2.4s ease-in-out infinite;
}

.sparkline span:nth-child(1) { height: 40%; }
.sparkline span:nth-child(2) { height: 65%; animation-delay: 0.1s; }
.sparkline span:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.sparkline span:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.sparkline span:nth-child(5) { height: 58%; animation-delay: 0.4s; }
.sparkline span:nth-child(6) { height: 90%; animation-delay: 0.5s; background: var(--teal); }

.progress-ring {
  width: 100%;
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  background: rgba(8, 127, 120, 0.12);
  border-radius: 100px;
}

.progress-ring b {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--teal);
  border-radius: 100px;
  animation: progressFill 2.8s ease-in-out infinite alternate;
}

.score-wave {
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  background: rgba(8, 127, 120, 0.12);
  border-radius: 100px;
}

.score-wave::after {
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  background: var(--teal);
  border-radius: 100px;
  animation: progressFill 2.2s ease-in-out infinite alternate;
}

.patient-row.is-active {
  background: #eff8f5;
  border-radius: 8px;
  padding-left: 6px;
  padding-right: 6px;
  margin: 0 -6px;
}

.animated-bars span {
  height: var(--h, 50%);
  animation: barPulse 2.6s ease-in-out infinite;
  transform-origin: bottom;
}

.animated-bars span:nth-child(odd) { animation-delay: 0.2s; }
.animated-bars span:nth-child(even) { animation-delay: 0.55s; }

.tablet-pro {
  box-shadow: 0 34px 80px rgba(15, 54, 61, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.inventory-summary .alert-soft {
  background: #fff4ec;
  border-color: #f0d5c2;
}

.inventory-table .row-alert { background: #fff8f3; }

.appt-pro {
  box-shadow: 0 30px 70px rgba(15, 54, 61, 0.16), 0 8px 20px rgba(15, 54, 61, 0.06);
}

.live-call { animation: softGlow 2.2s ease-in-out infinite; }

.ui-preview {
  overflow: hidden;
  background: #f5f9f8;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 54, 61, 0.1);
}

.ui-preview-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font: 700 12px/1 var(--font-display);
}

.ui-preview-top em {
  margin-left: auto;
  padding: 5px 9px;
  color: #2f7d55;
  background: #ddf1e5;
  border-radius: 100px;
  font: 700 8px/1 var(--font-display);
}

.ui-preview-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.preview-slot,
.preview-rx {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.preview-slot.active {
  border-color: rgba(8, 127, 120, 0.28);
  background: #eff8f5;
}

.preview-slot time {
  width: 42px;
  color: var(--body);
  font: 700 10px/1 var(--font-display);
}

.preview-slot b,
.preview-rx b,
.preview-med strong {
  display: block;
  font: 700 12px/1.2 var(--font-display);
}

.preview-slot small,
.preview-rx small,
.preview-med small {
  display: block;
  margin-top: 4px;
  color: var(--body);
  font-size: 9px;
}

.preview-rx i {
  margin-left: auto;
  padding: 6px 8px;
  color: #a45425;
  background: #f8e7d7;
  border-radius: 100px;
  font: 700 8px/1 var(--font-display);
  font-style: normal;
}

.preview-rx i.std {
  color: #47737a;
  background: #e5efef;
}

.preview-vitals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.preview-vitals span {
  padding: 12px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--body);
  font-size: 8px;
}

.preview-vitals strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font: 700 13px/1 var(--font-display);
}

.preview-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #2f7d55;
  background: #ddf1e5;
  border-radius: 10px;
  font: 700 10px/1 var(--font-display);
}

.preview-check svg { width: 15px; }

.preview-med {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.preview-med > b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #dff4ef;
  border-radius: 10px;
}

.preview-med svg { width: 18px; }

.preview-note {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.preview-note small { color: var(--body); font-size: 8px; }
.preview-note p { margin: 8px 0 0; font-size: 11px; line-height: 1.55; }

.large-preview { min-height: 420px; }
.practice-preview { background: #eef6f8; }
.pharmacy-preview { background: #fff4ee; }

.module-showcase article:nth-child(even) .ui-preview { order: 2; }
.media-feature.reverse .ui-preview { order: 2; }

@keyframes sparkPulse {
  0%, 100% { opacity: 0.55; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes progressFill {
  from { width: 58%; }
  to { width: 86%; }
}

@keyframes barPulse {
  0%, 100% { transform: scaleY(0.92); }
  50% { transform: scaleY(1); }
}

@keyframes softGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(8, 127, 120, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(8, 127, 120, 0); }
}

@media (max-width: 900px) {
  .module-showcase article:nth-child(even) .ui-preview,
  .media-feature.reverse .ui-preview { order: 0; }
}

@media (max-width: 600px) {
  .large-preview { min-height: 0; }
}
