:root {
  --ink: #f3fbf8;
  --muted: #a3b4af;
  --line: rgba(231, 247, 240, 0.14);
  --paper: #050809;
  --white: #f8fffc;
  --mint: #102a23;
  --green: #38b876;
  --teal: #197e84;
  --blue: #2f6fdd;
  --amber: #d98c27;
  --red: #df4f45;
  --charcoal: #080d0f;
  --surface: #0b1214;
  --surface-strong: #10191b;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(10, 19, 18, 0.82), rgba(10, 19, 18, 0.08));
  pointer-events: none;
}

.brand,
.nav-links,
.nav-cta {
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 1rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  background: #101010;
  box-shadow: 0 0 0 1px rgba(145, 240, 191, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(13, 26, 24, 0.32);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  white-space: nowrap;
}

.nav-menu {
  position: relative;
}

.nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-menu-trigger::after {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  content: "";
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  width: 250px;
  padding: 8px;
  border: 1px solid rgba(231, 247, 240, 0.14);
  border-radius: 8px;
  background: rgba(7, 13, 15, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  padding: 11px 12px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: rgba(145, 240, 191, 0.1);
  color: #f8fffc;
  outline: none;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
}

.nav-cta {
  min-width: 124px;
  padding: 0 18px;
  background: var(--white);
  color: #07100d;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(820px, 88vh, 980px);
  overflow: hidden;
  padding: 124px clamp(18px, 5vw, 76px) 56px;
  color: var(--white);
  isolation: isolate;
}

.monitor-scene {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: grid;
  align-items: center;
  justify-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.98) 0%, rgba(5, 8, 9, 0.86) 42%, rgba(5, 8, 9, 0.32) 100%),
    radial-gradient(circle at 76% 18%, rgba(57, 184, 118, 0.2), transparent 33%),
    radial-gradient(circle at 88% 82%, rgba(47, 111, 221, 0.13), transparent 34%),
    linear-gradient(135deg, #030505, #0d1718 52%, #152620);
}

.device-hero {
  position: relative;
  display: grid;
  width: min(1180px, 80vw);
  margin-right: clamp(-340px, -8vw, -90px);
  place-items: center;
}

.device-hero::before {
  position: absolute;
  inset: 17% 11% 15% 26%;
  border-radius: 50%;
  background: rgba(95, 255, 172, 0.12);
  filter: blur(70px);
  content: "";
}

.aura-device {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  opacity: 0.92;
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.68));
  transform: translateX(5%) scale(1.2);
}

.aura-device img {
  display: block;
  width: 100%;
}

.device-callout {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(231, 247, 240, 0.14);
  border-radius: 8px;
  background: rgba(7, 13, 15, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.device-callout:not(.callout-uptime) {
  grid-template-columns: 10px 1fr;
  align-items: center;
}

.device-callout strong {
  color: #f3fbf8;
  font-size: 0.82rem;
}

.device-callout p {
  color: #a8bbb5;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.callout-alert {
  top: 25%;
  right: 10%;
}

.callout-live {
  left: 31%;
  bottom: 24%;
}

.callout-uptime {
  right: 19%;
  bottom: 18%;
}

.callout-uptime strong {
  color: #8ff0c3;
  font-size: 1.35rem;
  line-height: 1;
}

.monitor-shell {
  width: min(950px, 78vw);
  min-height: 590px;
  margin-right: clamp(-380px, -10vw, -80px);
  transform: perspective(1200px) rotateY(-13deg) rotateX(5deg);
  border: 1px solid rgba(178, 247, 214, 0.2);
  border-radius: 22px;
  background: rgba(8, 15, 17, 0.92);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.monitor-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(231, 247, 240, 0.12);
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #64746f;
}

.window-dot:nth-child(2) {
  background: #f1bb6d;
}

.window-dot:nth-child(3) {
  background: #55c987;
}

.dashboard-title {
  margin-left: 12px;
  color: #d6eee6;
  font-size: 0.85rem;
  font-weight: 800;
}

.sync-status {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(56, 184, 118, 0.16);
  color: #8ff0c3;
  font-size: 0.75rem;
  font-weight: 800;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr 0.9fr;
  grid-template-rows: 176px 236px 140px;
  gap: 14px;
  padding: 18px;
}

.panel {
  min-width: 0;
  border: 1px solid rgba(231, 247, 240, 0.12);
  border-radius: 8px;
  background: rgba(13, 23, 25, 0.88);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  color: #e3f7f1;
  font-size: 0.78rem;
  font-weight: 800;
}

.muted,
.patient-id,
.signal {
  color: #8fa19b;
  font-size: 0.72rem;
  font-weight: 700;
}

.ward-panel {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.bed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 14px 14px;
}

.bed {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(231, 247, 240, 0.12);
  border-radius: 7px;
  background: rgba(8, 14, 16, 0.76);
  color: #b8c9c3;
  font-size: 0.74rem;
  font-weight: 800;
}

.bed::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52625e;
  content: "";
}

.bed.active::after {
  background: var(--green);
}

.bed.warning::after {
  background: var(--amber);
}

.bed.alert::after {
  background: var(--red);
}

.vitals-panel {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.metric-row {
  display: grid;
  grid-template-columns: 44px 1fr 42px;
  align-items: baseline;
  gap: 10px;
  padding: 7px 14px;
  border-top: 1px solid rgba(231, 247, 240, 0.1);
}

.metric-row span {
  color: #9eb0aa;
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-row strong {
  color: #bcffe0;
  font-size: 1.9rem;
  line-height: 1;
}

.metric-row small {
  color: #8fa19b;
  font-size: 0.7rem;
  font-weight: 800;
}

.ecg-panel {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.ecg-trace {
  position: relative;
  height: 180px;
  margin: 4px 14px 14px;
  overflow: hidden;
  border-radius: 7px;
  background: #0e1d1a;
}

.ecg-trace::after {
  position: absolute;
  inset: 0;
  width: 90px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.16), transparent);
  animation: scan 3.2s linear infinite;
  content: "";
}

.ecg-trace svg {
  width: 200%;
  height: 100%;
  animation: traceMove 5.5s linear infinite;
}

.grid-line {
  fill: none;
  stroke: rgba(114, 145, 136, 0.22);
  stroke-width: 1;
}

.wave {
  fill: none;
  stroke: #59e28f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  filter: drop-shadow(0 0 8px rgba(89, 226, 143, 0.45));
}

.wave-two {
  transform: translateX(640px);
}

.alerts-panel {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.alert-list {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
}

.alert-item {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(231, 247, 240, 0.12);
  border-radius: 7px;
  background: rgba(8, 14, 16, 0.76);
}

.alert-item span {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
}

.alert-item p {
  color: #dceee8;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.alert-item.high span {
  background: var(--red);
}

.alert-item.medium span {
  background: var(--amber);
}

.alert-item.low span {
  background: var(--teal);
}

.device-panel {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}

.device-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 14px 14px;
}

.device-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(231, 247, 240, 0.12);
  border-radius: 7px;
  background: rgba(8, 14, 16, 0.76);
  color: #b5c7c1;
  font-size: 0.74rem;
  font-weight: 800;
}

.device-row span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.device-row strong {
  color: #e9fbf5;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.status-dot.ok {
  background: var(--green);
}

.status-dot.warn {
  background: var(--amber);
}

.uptime-meter {
  grid-column: 1 / 3;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #1c2a28;
}

.uptime-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.device-stack small {
  align-self: center;
  justify-self: end;
  color: #9eb0aa;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 48%;
  background: linear-gradient(0deg, rgba(5, 8, 9, 1), rgba(5, 8, 9, 0));
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: 760px;
  flex: 0 1 760px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ff0c3;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.primary-button {
  min-width: 142px;
  margin-top: 34px;
  padding: 0 22px;
  background: #91f0bf;
  color: #0b241e;
  box-shadow: 0 12px 30px rgba(24, 184, 118, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #a2f5cb;
  box-shadow: 0 16px 38px rgba(24, 184, 118, 0.32);
}

.primary-button.dark {
  background: #91f0bf;
  color: #07100d;
  box-shadow: 0 12px 30px rgba(24, 184, 118, 0.2);
}

.band {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 76px);
}

.problem {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  background: #060b0c;
}

.section-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.split > p,
.solution-grid p,
.reliability-list p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.solution {
  background: #070c0e;
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.solution-grid h2 + p {
  max-width: 680px;
  margin-top: 22px;
}

.clinical-flow {
  display: grid;
  gap: 14px;
}

.flow-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 0.55fr) minmax(180px, 1.2fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.flow-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--mint);
  color: #91f0bf;
  font-size: 0.8rem;
  font-weight: 900;
}

.flow-step strong {
  font-size: 1.2rem;
}

.flow-step p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.capabilities {
  background:
    linear-gradient(90deg, rgba(25, 126, 132, 0.12), transparent 45%),
    #091011;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(231, 247, 240, 0.14);
  border-left: 1px solid rgba(231, 247, 240, 0.14);
}

.capability {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid rgba(231, 247, 240, 0.14);
  border-bottom: 1px solid rgba(231, 247, 240, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.capability.wide {
  grid-column: span 2;
}

.capability-index {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.capability h3,
.product-card h3 {
  margin-top: 22px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.capability p,
.product-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.products {
  background: #070c0e;
}

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

.product-card {
  display: block;
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(145, 240, 191, 0.36);
  background: #0d1718;
}

.reusable-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  max-width: 100%;
  width: fit-content;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}

.status-badge::before {
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  content: "";
}

.status-normal {
  background: rgba(56, 184, 118, 0.14);
  color: #91f0bf;
}

.status-normal::before {
  background: var(--green);
}

.status-warning {
  background: rgba(217, 140, 39, 0.14);
  color: #f3bd6d;
}

.status-warning::before {
  background: var(--amber);
}

.status-critical {
  background: rgba(223, 79, 69, 0.15);
  color: #ff9a92;
}

.status-critical::before {
  background: var(--red);
}

.product-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(25, 126, 132, 0.22);
  border-radius: 8px;
  background: #0d241f;
}

.product-icon::before,
.product-icon::after {
  position: absolute;
  content: "";
}

.monitor-icon::before {
  inset: 14px 10px 18px;
  border: 3px solid var(--teal);
  border-radius: 4px;
}

.monitor-icon::after {
  left: 20px;
  right: 20px;
  bottom: 12px;
  height: 3px;
  background: var(--teal);
}

.edge-icon::before {
  inset: 14px;
  border: 3px solid var(--teal);
  border-radius: 6px;
}

.edge-icon::after {
  inset: 8px;
  border: 2px dotted rgba(25, 126, 132, 0.75);
  border-radius: 8px;
}

.analytics-icon::before {
  left: 12px;
  right: 12px;
  bottom: 14px;
  height: 24px;
  background: linear-gradient(90deg, var(--teal) 0 20%, transparent 20% 30%, var(--green) 30% 52%, transparent 52% 62%, var(--blue) 62% 100%);
  clip-path: polygon(0 100%, 0 58%, 20% 58%, 20% 100%, 30% 100%, 30% 25%, 52% 25%, 52% 100%, 62% 100%, 62% 0, 100% 0, 100% 100%);
}

.layer-icon::before {
  left: 12px;
  right: 12px;
  top: 13px;
  height: 10px;
  border-radius: 4px;
  background: var(--teal);
  box-shadow:
    0 11px 0 rgba(25, 126, 132, 0.65),
    0 22px 0 rgba(25, 126, 132, 0.35);
}

.reliability {
  background: #050809;
  color: var(--white);
}

.reliability .eyebrow {
  color: #91f0bf;
}

.reliability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.reliability-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.reliability-list div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.reliability-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.reliability-list p {
  color: rgba(255, 255, 255, 0.68);
}

.final-cta {
  padding: clamp(72px, 9vw, 112px) clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 184, 118, 0.22), transparent 34%),
    #07100d;
  text-align: center;
}

.final-cta .section-inner {
  display: grid;
  justify-items: center;
}

.final-cta .eyebrow {
  color: #91f0bf;
}

.final-cta h2 {
  max-width: 860px;
}

.product-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(56, 184, 118, 0.14), transparent 30%),
    var(--paper);
}

.product-page .site-header::before {
  background: linear-gradient(180deg, rgba(5, 8, 9, 0.94), rgba(5, 8, 9, 0.18));
}

.product-hero {
  position: relative;
  display: grid;
  min-height: clamp(720px, 86vh, 900px);
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 76px) 84px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.98), rgba(5, 8, 9, 0.88) 46%, rgba(5, 8, 9, 0.7)),
    radial-gradient(circle at 78% 42%, rgba(25, 126, 132, 0.2), transparent 30%),
    #050809;
  isolation: isolate;
}

.product-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(231, 247, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 247, 240, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
  content: "";
}

.product-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}

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

.product-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 0.98;
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.product-hero .primary-button {
  max-width: 100%;
  white-space: normal;
}

.product-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 18%, rgba(56, 184, 118, 0.13), transparent 30%),
    #081012;
  box-shadow: var(--shadow);
}

.visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: #e8fbf5;
  font-weight: 900;
}

.visual-topbar strong {
  color: #91f0bf;
  font-size: 0.78rem;
}

.icu-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
}

.patient-tile {
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(231, 247, 240, 0.12);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.patient-tile span,
.patient-tile small {
  display: block;
  color: #9eb0aa;
  font-size: 0.76rem;
  font-weight: 800;
}

.patient-tile strong {
  display: block;
  margin: 16px 0 6px;
  color: #effff9;
  font-size: 1.45rem;
}

.patient-tile.critical {
  border-left-color: var(--red);
  background: rgba(223, 79, 69, 0.08);
}

.patient-tile.warning {
  border-left-color: var(--amber);
  background: rgba(217, 140, 39, 0.08);
}

.severity-panel,
.prediction-grid {
  display: grid;
  gap: 10px;
  padding: 0 20px 20px;
}

.severity-panel div,
.prediction-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(231, 247, 240, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: #d7ebe5;
  font-weight: 800;
}

.severity {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.severity.critical {
  background: var(--red);
}

.severity.warning {
  background: var(--amber);
}

.severity.ok {
  background: var(--green);
}

.product-band {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: #060b0c;
}

.problem-solution {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 72px);
}

.problem-solution article {
  min-height: 260px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.problem-solution h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.product-features {
  background:
    linear-gradient(90deg, rgba(25, 126, 132, 0.09), transparent 42%),
    #091011;
}

.product-features > .section-inner > h2 {
  max-width: 840px;
  margin-bottom: 40px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-list article {
  min-height: 280px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.feature-list span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-list h3 {
  margin-top: 28px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.feature-list p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.analytics-visual {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.trend-chart {
  margin: 22px 20px;
  overflow: hidden;
  border: 1px solid rgba(231, 247, 240, 0.1);
  border-radius: 8px;
  background: #07100f;
}

.trend-chart svg {
  display: block;
  width: 100%;
  min-height: 280px;
}

.chart-grid {
  fill: none;
  stroke: rgba(231, 247, 240, 0.08);
  stroke-width: 1;
}

.trend-line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 6;
}

.trend-line.green {
  stroke: #59e28f;
}

.trend-line.blue {
  stroke: #37c8e5;
}

.trend-line.amber {
  stroke: #d7d91e;
}

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

.prediction-grid article {
  display: grid;
  align-content: start;
}

.prediction-grid strong {
  color: #effff9;
}

.prediction-grid p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.edge-visual {
  display: grid;
  place-items: center;
}

.edge-device-image {
  width: 118%;
  max-width: 880px;
  transform: translateX(2%) scale(1.18);
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.72));
}

.edge-device-image img {
  display: block;
  width: 100%;
}

.sensor-stack {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(460px, calc(100% - 48px));
}

.sensor-stack div {
  padding: 14px;
  border: 1px solid rgba(231, 247, 240, 0.14);
  border-radius: 8px;
  background: rgba(7, 13, 15, 0.78);
  backdrop-filter: blur(18px);
}

.sensor-stack span,
.sensor-stack small {
  display: block;
  color: #91a49e;
  font-size: 0.72rem;
  font-weight: 900;
}

.sensor-stack strong {
  display: block;
  margin: 6px 0 2px;
  color: #8ff0c3;
  font-size: 2rem;
  line-height: 1;
}

.integration-visual {
  min-height: 540px;
}

.integration-visual::before,
.integration-visual::after {
  position: absolute;
  inset: 50% 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 240, 191, 0.42), transparent);
  content: "";
}

.integration-visual::after {
  transform: rotate(90deg);
}

.integration-core,
.integration-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(145, 240, 191, 0.24);
  border-radius: 8px;
  background: rgba(7, 13, 15, 0.84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.integration-core {
  top: 50%;
  left: 50%;
  width: 220px;
  min-height: 118px;
  padding: 18px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.integration-core span {
  color: #8ff0c3;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.integration-core strong {
  margin-top: 8px;
  font-size: 1.25rem;
}

.integration-node {
  min-width: 124px;
  min-height: 58px;
  padding: 14px;
  color: #effff9;
  font-weight: 900;
}

.node-hl7 {
  top: 20%;
  left: 16%;
}

.node-fhir {
  top: 18%;
  right: 17%;
}

.node-api {
  right: 10%;
  top: 48%;
}

.node-emr {
  bottom: 18%;
  right: 18%;
}

.node-pipe {
  bottom: 20%;
  left: 12%;
}

.product-cta {
  padding: clamp(72px, 9vw, 112px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 184, 118, 0.2), transparent 34%),
    #07100d;
  text-align: center;
}

.product-cta .section-inner {
  display: grid;
  justify-items: center;
}

.product-cta .eyebrow {
  color: #91f0bf;
}

.product-cta h2 {
  max-width: 860px;
}

.solution-page {
  background:
    radial-gradient(circle at 78% 10%, rgba(25, 126, 132, 0.13), transparent 32%),
    #050809;
}

.solution-hero {
  min-height: clamp(720px, 84vh, 900px);
}

.solution-page .product-hero-copy h1 {
  font-size: clamp(2.5rem, 4.45vw, 4.45rem);
}

.solution-page .product-hero-copy p:not(.eyebrow) {
  line-height: 1.62;
}

.solution-focus {
  background:
    linear-gradient(90deg, rgba(25, 126, 132, 0.08), transparent 44%),
    #091011;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.focus-card {
  min-width: 0;
  min-height: 230px;
  padding: 24px;
}

.focus-card span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.focus-card h3 {
  margin-top: 24px;
  font-size: 1.28rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.focus-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.dashboard-mock {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 540px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 16%, rgba(56, 184, 118, 0.12), transparent 34%),
    #081012;
  box-shadow: var(--shadow);
}

.dashboard-mock.compact {
  min-height: 500px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.dashboard-header span {
  color: #e8fbf5;
  font-weight: 900;
}

.dashboard-header strong {
  color: #91f0bf;
  font-size: 0.78rem;
}

.patient-monitor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 16px;
}

.patient-monitor-grid.single {
  grid-template-columns: 1fr;
}

.patient-monitor-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  min-height: 196px;
  padding: 16px;
}

.patient-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.patient-card-header strong {
  color: #effff9;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

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

.vital-reading {
  min-width: 0;
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(231, 247, 240, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.vital-reading span {
  display: block;
  color: #92a7a0;
  font-size: 0.7rem;
  font-weight: 900;
}

.vital-reading strong {
  display: block;
  margin-top: 8px;
  color: #effff9;
  font-size: 1.25rem;
  overflow-wrap: anywhere;
}

.ecg-placeholder {
  position: relative;
  min-width: 0;
  height: 62px;
  overflow: hidden;
  border: 1px solid rgba(231, 247, 240, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(rgba(231, 247, 240, 0.05) 1px, transparent 1px),
    #07100f;
  background-size: 100% 20px;
}

.ecg-placeholder svg {
  display: block;
  width: 190%;
  height: 100%;
  animation: traceMove 5.5s linear infinite;
}

.ecg-placeholder path {
  fill: none;
  stroke: #59e28f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.escalation-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.escalation-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(231, 247, 240, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  color: #dceee8;
  font-weight: 800;
}

.escalation-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 56px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: #050809;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.6fr));
  gap: clamp(30px, 5vw, 72px);
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 460px;
}

.footer-brand .brand {
  width: fit-content;
}

.footer-brand p,
.footer-column a {
  color: var(--muted);
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 6px;
  color: #effff9;
}

.footer-column a {
  font-size: 0.95rem;
}

.footer-column a:hover,
.footer-column a:focus {
  color: #91f0bf;
}

@keyframes traceMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scan {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateX(720px);
  }
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .device-hero {
    width: 980px;
    margin-right: -350px;
  }

  .aura-device {
    transform: translateX(6%) scale(1.28);
  }

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

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

  .product-visual {
    min-height: 480px;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 14px 16px;
  }

  .section-inner {
    max-width: calc(100vw - 36px);
  }

  .solution-page .section-inner {
    width: calc(100vw - 36px);
    max-width: 100%;
  }

  .brand {
    font-size: 0.94rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: clamp(720px, 88vh, 820px);
    padding: 116px 18px 72px;
  }

  .monitor-scene {
    align-items: end;
  }

  .device-hero {
    position: absolute;
    right: -350px;
    bottom: 74px;
    width: 760px;
    margin: 0;
  }

  .aura-device {
    opacity: 0.42;
    transform: translateX(5%) scale(1.4);
  }

  .device-callout {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 13.2vw, 3.55rem);
    line-height: 1.02;
  }

  h2 {
    width: 20rem;
    max-width: 21rem;
    font-size: clamp(1.85rem, 8.4vw, 2.35rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    max-width: 21rem;
    font-size: 1rem;
  }

  .split > p,
  .solution-grid p,
  .flow-step p,
  .reliability-list p {
    width: 18rem;
    max-width: 100%;
  }

  .split,
  .solution-grid,
  .reliability-layout {
    grid-template-columns: 1fr;
  }

  .flow-step {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .flow-step p {
    grid-column: 2 / 3;
  }

  .section-heading {
    display: block;
  }

  .capability-grid,
  .product-grid,
  .feature-list,
  .focus-grid,
  .patient-monitor-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .capability.wide {
    grid-column: auto;
  }

  .product-hero {
    min-height: auto;
    padding: 116px 18px 64px;
  }

  .solution-hero {
    padding-bottom: 72px;
  }

  .product-hero-copy h1 {
    max-width: 21rem;
    font-size: clamp(2.3rem, 11vw, 3.35rem);
    line-height: 1.02;
  }

  .product-hero-copy p:not(.eyebrow) {
    max-width: 21rem;
    font-size: 1rem;
  }

  .product-hero .primary-button {
    width: min(100%, 21rem);
    font-size: 0.92rem;
  }

  .product-visual {
    min-height: 430px;
  }

  .visual-topbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    justify-content: stretch;
  }

  .visual-topbar strong {
    justify-self: start;
    max-width: 100%;
    white-space: normal;
  }

  .icu-dashboard,
  .prediction-grid {
    grid-template-columns: 1fr;
  }

  .patient-tile {
    min-height: 96px;
  }

  .problem-solution {
    grid-template-columns: 1fr;
  }

  .problem-solution article {
    min-height: auto;
    padding-bottom: 28px;
  }

  .feature-list article {
    min-height: auto;
  }

  .edge-device-image {
    width: 160%;
    transform: translateX(4%) scale(1.08);
  }

  .dashboard-mock,
  .dashboard-mock.compact {
    width: 100%;
    max-width: calc(100vw - 36px);
    min-height: auto;
    padding: 14px;
  }

  .patient-monitor-card {
    max-width: 100%;
    padding: 14px;
  }

  .dashboard-header,
  .patient-card-header,
  .escalation-list div {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .focus-card,
  .patient-monitor-grid,
  .escalation-list,
  .escalation-list div,
  .patient-card-header strong,
  .escalation-list span {
    max-width: 100%;
  }

  .sensor-stack {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .integration-visual {
    display: grid;
    gap: 12px;
    align-content: center;
    min-height: 430px;
    padding: 20px;
  }

  .integration-visual::before,
  .integration-visual::after {
    display: none;
  }

  .integration-core,
  .integration-node {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 56px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .section-inner {
    max-width: calc(100vw - 32px);
  }

  .solution-page .section-inner {
    width: calc(100vw - 32px);
  }

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

  .hero {
    padding-top: 104px;
  }

  .device-hero {
    right: -356px;
    bottom: 88px;
    width: 720px;
  }

  .aura-device {
    opacity: 0.4;
  }

  .primary-button {
    width: 100%;
  }

  .band,
  .final-cta,
  .product-band,
  .product-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .capability,
  .product-card,
  .feature-list article {
    padding: 22px;
  }

  .product-visual {
    min-height: 390px;
  }

  .edge-visual {
    min-height: 470px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
