:root {
  --bg: #9ab6d6;
  --bg-soft: #d8e7f8;
  --panel: rgba(245, 249, 255, 0.8);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --ink: #132235;
  --muted: #506274;
  --line: rgba(19, 34, 53, 0.1);
  --accent: #111111;
  --accent-2: #ffd050;
  --green: #42d89a;
  --shadow: 0 24px 70px rgba(28, 48, 73, 0.18);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 25%),
    linear-gradient(180deg, #91adc9 0%, #a7c6e6 24%, #edf5ff 100%);
}

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

main {
  display: block;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  padding: 28px 0 44px;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 28px;
  min-height: 900px;
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, 0.45), transparent 28%),
    linear-gradient(180deg, #a4cdf5 0%, #a9cff3 56%, #8eb9df 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: auto -10% -2% -10%;
  height: 180px;
  background:
    radial-gradient(circle at 10% 70%, #88a858 0, #88a858 14%, transparent 15%),
    radial-gradient(circle at 20% 65%, #6f8f48 0, #6f8f48 13%, transparent 14%),
    radial-gradient(circle at 30% 75%, #7ba654 0, #7ba654 15%, transparent 16%),
    radial-gradient(circle at 45% 72%, #6f9650 0, #6f9650 14%, transparent 15%),
    radial-gradient(circle at 58% 76%, #7ea75a 0, #7ea75a 14%, transparent 15%),
    radial-gradient(circle at 75% 70%, #719851 0, #719851 16%, transparent 17%),
    radial-gradient(circle at 90% 75%, #6f8f48 0, #6f8f48 14%, transparent 15%),
    linear-gradient(180deg, rgba(68, 104, 59, 0) 0%, rgba(83, 122, 70, 0.95) 84%);
  pointer-events: none;
}

.cloud {
  position: absolute;
  display: block;
  width: 240px;
  height: 82px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  filter: blur(1px);
  --scale: 1;
  animation: drift 12.45s linear infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud::before {
  width: 102px;
  height: 102px;
  left: 27px;
  bottom: 15px;
}

.cloud::after {
  width: 126px;
  height: 126px;
  right: 33px;
  bottom: 12px;
}

.cloud-one {
  top: 72px;
  left: -12%;
  opacity: 0.75;
  --scale: 0.9;
}

.cloud-two {
  top: 188px;
  left: 66%;
  width: 180px;
  height: 63px;
  opacity: 0.58;
  animation-duration: 15.11s;
  animation-direction: reverse;
}

.cloud-three {
  top: 390px;
  left: -15%;
  opacity: 0.44;
  --scale: 1.25;
  animation-duration: 17.78s;
}

.cloud-four {
  top: 600px;
  left: 58%;
  opacity: 0.52;
  --scale: 0.85;
  animation-duration: 13.33s;
  animation-direction: reverse;
}

@keyframes drift {
  0% {
    transform: translateX(0) translateY(0) scale(var(--scale, 1));
  }
  50% {
    transform: translateX(120px) translateY(10px) scale(var(--scale, 1));
  }
  100% {
    transform: translateX(260px) translateY(0) scale(var(--scale, 1));
  }
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-pill,
.header-actions {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
}

.brand-pill {
  gap: 12px;
  padding: 0 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  padding: 10px 18px 10px 14px;
  gap: 14px;
  min-height: 72px;
  max-width: 410px;
}

.logo-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  flex: 0 0 auto;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.logo-wordmark {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.logo-doctor {
  color: #d7332f;
}

.logo-office {
  color: #111111;
}

.logo-ai {
  color: #58b4f0;
}

.logo-tagline {
  font-size: 0.74rem;
  font-weight: 700;
  color: #18304c;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  gap: 34px;
  font-weight: 600;
}

.site-nav a,
.header-link,
.footer-links a {
  color: var(--ink);
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.header-link:hover,
.footer-links a:hover {
  opacity: 0.7;
}

.header-actions {
  gap: 8px;
  padding: 6px;
}

.header-link,
.header-button {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
}

.header-button {
  background: var(--accent);
  color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 64px;
}

.floating-card {
  backdrop-filter: blur(20px);
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  box-shadow: 0 16px 40px rgba(24, 54, 87, 0.12);
}

.agenda-card {
  padding: 22px;
}

.card-heading,
.tasks-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.eyebrow,
.small-label,
.tasks-head span,
.task-row span,
.card-note,
.section-kicker,
.hero-kicker {
  color: var(--muted);
}

.eyebrow,
.section-kicker,
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.agenda-grid {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px 14px;
  margin: 22px 0 16px;
}

.agenda-time {
  padding-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.agenda-event {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(232, 240, 251, 0.88);
  display: grid;
  gap: 4px;
}

.agenda-event span,
.card-note,
.hero-text,
.section-intro p,
.info-card p,
.feature-card p,
.review-card p,
.cta-panel p,
.profile-copy {
  line-height: 1.7;
  font-size: 0.98rem;
}

.agenda-event.is-highlighted {
  background: #ffd04d;
}

.chip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #073223;
  font-weight: 800;
}

.hero-copy {
  justify-self: center;
  text-align: center;
  max-width: 670px;
}

.hero-dashboard {
  margin: 0 auto 26px;
  max-width: 620px;
}

.dashboard-shell {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 22px 48px rgba(20, 44, 71, 0.18);
  text-align: left;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(19, 34, 53, 0.08);
}

.dashboard-topbar strong {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.dashboard-dots {
  display: flex;
  gap: 8px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9e6f2;
}

.dashboard-dots span:nth-child(2) {
  background: #e45757;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 38px 1fr;
  min-height: 272px;
}

.dashboard-rail {
  background: linear-gradient(180deg, #0d2d58 0%, #183f73 100%);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.rail-badge {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.32);
}

.rail-badge-active {
  background: #46a8ef;
}

.dashboard-panels {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 1fr;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5fb 100%);
}

.dashboard-panel {
  padding: 14px 12px;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(26, 50, 79, 0.1);
  box-shadow: 0 8px 18px rgba(35, 66, 101, 0.07);
}

.dashboard-panel h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.dashboard-panel p {
  margin: 8px 0 10px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
}

.panel-chip-row {
  display: flex;
  gap: 8px;
  margin: 16px 0 14px;
}

.panel-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-chip-primary {
  background: #1d8fd7;
  color: white;
}

.panel-chip-success {
  background: #c9f3da;
  color: #127041;
}

.panel-line {
  height: 9px;
  border-radius: 999px;
  background: #e4edf5;
  margin-top: 11px;
}

.panel-line.short {
  width: 74%;
}

.soap-letters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0 12px;
}

.soap-letters span {
  display: grid;
  place-items: center;
  height: 42px;
  border-radius: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  background: #f4f8fb;
}

.soap-letters span:nth-child(1) {
  color: #cb4437;
}

.soap-letters span:nth-child(2) {
  color: #587aa6;
}

.soap-letters span:nth-child(3) {
  color: #d38b48;
}

.soap-letters span:nth-child(4) {
  color: #4b7fb4;
}

.panel-button {
  display: inline-flex;
  margin-top: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #f0f7ff;
  color: #1b6fa6;
  font-size: 0.75rem;
  font-weight: 800;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 14px;
}

.mini-calendar span,
.mini-bars span {
  border-radius: 4px;
  background: #e5eef7;
}

.mini-calendar span {
  height: 22px;
}

.mini-calendar span:nth-child(2),
.mini-calendar span:nth-child(5) {
  background: #8ad0f5;
}

.mini-calendar span:nth-child(3),
.mini-calendar span:nth-child(4) {
  background: #f3b04c;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 74px;
  margin-top: 18px;
}

.mini-bars span {
  flex: 1;
  background: linear-gradient(180deg, #7cc5ef 0%, #3f81c6 100%);
}

.mini-bars span:nth-child(1) {
  height: 20%;
}

.mini-bars span:nth-child(2) {
  height: 36%;
}

.mini-bars span:nth-child(3) {
  height: 54%;
}

.mini-bars span:nth-child(4) {
  height: 70%;
}

.mini-bars span:nth-child(5) {
  height: 88%;
}

.hero-copy h1,
.section-intro h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: 3rem;
  line-height: 1.05;
  margin-top: 0;
  max-width: 760px;
}

.hero-text {
  max-width: 540px;
  margin: 22px auto 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.primary-cta,
.secondary-cta,
.light-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-cta {
  background: var(--accent);
  color: white;
  padding: 0 10px 0 26px;
  gap: 14px;
}

.cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-2);
  color: #111;
  font-size: 1.1rem;
}

.secondary-cta {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  flex-wrap: wrap;
}

.hero-highlights li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.hero-lower {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 76px;
}

.solution-panel {
  padding: 34px;
  background: rgba(255, 255, 255, 0.95);
}

.solution-header {
  text-align: center;
  margin-bottom: 26px;
}

.solution-header h2 {
  margin: 10px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.02;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 28px;
  align-items: stretch;
}

.solution-column {
  padding: 24px;
  border-radius: 28px;
  min-height: 100%;
}

.legacy-column {
  background: linear-gradient(180deg, rgba(242, 247, 253, 0.96), rgba(231, 239, 248, 0.92));
  border: 1px solid rgba(26, 50, 79, 0.09);
}

.modern-column {
  background: linear-gradient(180deg, rgba(244, 250, 243, 0.96), rgba(251, 248, 238, 0.94));
  border: 1px solid rgba(56, 108, 73, 0.1);
}

.solution-copy h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.solution-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.legacy-illustration {
  position: relative;
  height: 200px;
  margin-top: 20px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.9), transparent 20%),
    linear-gradient(180deg, #f5f9fd 0%, #deebf6 100%);
}

.legacy-blob {
  position: absolute;
  inset: auto auto 30px 50%;
  width: 210px;
  height: 110px;
  transform: translateX(-50%);
  border-radius: 999px 999px 24px 24px;
  background: rgba(173, 198, 221, 0.34);
}

.legacy-desk {
  position: absolute;
  left: 50%;
  bottom: 46px;
  width: 220px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 10px;
  background: #8aa8c5;
  box-shadow: 0 40px 0 -24px #88a0b6;
}

.legacy-screen {
  position: absolute;
  bottom: 76px;
  width: 78px;
  height: 48px;
  border-radius: 10px;
  background: #5e8fb8;
  border: 4px solid #26486c;
}

.legacy-screen-left {
  left: 82px;
}

.legacy-screen-right {
  right: 82px;
}

.legacy-person {
  position: absolute;
  bottom: 50px;
  width: 54px;
  height: 92px;
}

.legacy-person::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0b48f;
}

.legacy-person::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 20px;
  width: 38px;
  height: 60px;
  border-radius: 16px 16px 10px 10px;
  background: #4d88c2;
}

.legacy-person-left {
  left: 24px;
}

.legacy-person-right {
  right: 24px;
}

.legacy-icon {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 50, 79, 0.12);
  box-shadow: 0 8px 18px rgba(35, 66, 101, 0.08);
}

.legacy-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  background: linear-gradient(180deg, #8cb1d3, #4f78a6);
}

.legacy-icon-top {
  left: 32px;
  top: 24px;
}

.legacy-icon-mid {
  right: 48px;
  top: 42px;
}

.legacy-icon-low {
  left: 138px;
  top: 60px;
}

.legacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.legacy-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

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

.modern-card {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 50, 79, 0.1);
  box-shadow: 0 10px 22px rgba(35, 66, 101, 0.08);
  display: grid;
  gap: 10px;
}

.modern-card strong {
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.modern-card span {
  color: var(--muted);
  line-height: 1.55;
}

.modern-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.modern-card-blue .modern-icon {
  background: #e8f3ff;
  color: #347fcb;
}

.modern-card-green .modern-icon {
  background: #eaf8ef;
  color: #3d9c60;
}

.modern-card-gold .modern-icon {
  background: #fff5df;
  color: #c38a28;
}

.solution-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(247, 250, 255, 0.92);
  border: 1px solid rgba(26, 50, 79, 0.08);
}

.meta-lock {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff6d9;
  font-size: 1.05rem;
}

.meta-item strong,
.founder-copy strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.meta-item span,
.founder-copy span {
  color: var(--muted);
  line-height: 1.6;
}

.founder-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #13375e 0%, #21578f 100%);
  color: white;
}

.founder-copy span {
  color: rgba(255, 255, 255, 0.82);
}

.founder-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3ab2ff 0%, #1d8fd7 100%);
  color: white;
  font-weight: 800;
  white-space: nowrap;
}

.content-section,
.cta-section {
  padding: 44px 0 72px;
}

.content-section {
  position: relative;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}

.section-intro {
  max-width: 640px;
}

.section-intro.narrow {
  margin: 0 auto 34px;
  text-align: center;
}

.section-intro h2,
.cta-panel h2 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  margin-top: 12px;
}

.platform-layout,
.pricing-layout {
  display: grid;
  gap: 28px;
}

.platform-intro,
.pricing-intro {
  max-width: 760px;
}

.platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.platform-story-card,
.platform-capability-card,
.platform-integration-card,
.clinical-stage,
.security-panel,
.pricing-highlight,
.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 42px rgba(27, 51, 77, 0.1);
}

.platform-story-card {
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(85, 180, 240, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.9));
}

.platform-badge,
.pricing-chip,
.security-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.platform-badge {
  background: rgba(67, 147, 214, 0.12);
  color: #1f6ca3;
}

.platform-story-card h3,
.pricing-highlight h3,
.security-lead h3 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.platform-story-card p,
.platform-capability-card p,
.platform-integration-card p,
.clinical-stage p,
.security-lead p,
.security-card p,
.pricing-highlight p,
.pricing-card p {
  color: var(--muted);
  line-height: 1.7;
}

.platform-story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.platform-metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(19, 34, 53, 0.08);
}

.platform-metric strong,
.platform-capability-card strong,
.pricing-card strong,
.security-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.platform-side-stack {
  display: grid;
  gap: 18px;
}

.platform-capability-card,
.platform-integration-card {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
}

.platform-capability-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.platform-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #52b0ef 0%, #1f78c3 100%);
  box-shadow: 0 0 0 6px rgba(82, 176, 239, 0.14);
}

.platform-capability-list,
.clinical-stage-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.platform-capability-list li,
.clinical-stage-points li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
}

.platform-capability-list li::before,
.clinical-stage-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #49aaeb;
}

.integration-eyebrow {
  margin: 0 0 14px;
  color: #5a6f86;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.integration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.integration-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef6ff 0%, #dfeefb 100%);
  color: #1f5f94;
  font-weight: 700;
}

.integration-note {
  margin: 16px 0 0;
}

.benefit-cards,
.feature-grid,
.review-grid {
  display: grid;
  gap: 20px;
}

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

.info-card,
.feature-card,
.review-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 32px rgba(32, 55, 82, 0.08);
}

.info-card strong,
.feature-card h3,
.review-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.42));
}

.clinical-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.clinical-stage {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.clinical-stage::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.35;
}

.clinical-stage-blue::after {
  background: radial-gradient(circle, rgba(83, 175, 236, 0.5), transparent 65%);
}

.clinical-stage-green::after {
  background: radial-gradient(circle, rgba(103, 190, 129, 0.45), transparent 65%);
}

.clinical-stage-gold::after {
  background: radial-gradient(circle, rgba(244, 186, 82, 0.45), transparent 65%);
}

.clinical-stage-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.clinical-stage h3 {
  margin: 18px 0 10px;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.clinical-stage-visual {
  flex: 0 0 auto;
}

.visual-phone {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  padding: 10px;
  display: grid;
  gap: 8px;
  background: linear-gradient(180deg, #eff7ff 0%, #dceeff 100%);
}

.visual-phone span {
  border-radius: 999px;
  background: #5eb5f0;
}

.visual-phone span:nth-child(1) {
  height: 10px;
  width: 70%;
}

.visual-phone span:nth-child(2) {
  height: 10px;
  width: 100%;
}

.visual-phone span:nth-child(3) {
  height: 10px;
  width: 52%;
}

.visual-soap {
  display: grid;
  grid-template-columns: repeat(2, 26px);
  gap: 6px;
}

.visual-soap span {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f4fbf5;
  font-size: 0.8rem;
  font-weight: 800;
}

.visual-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  width: 70px;
  height: 58px;
}

.visual-chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #ffd68b 0%, #eea93c 100%);
}

.visual-chart span:nth-child(1) {
  height: 24%;
}

.visual-chart span:nth-child(2) {
  height: 48%;
}

.visual-chart span:nth-child(3) {
  height: 72%;
}

.visual-chart span:nth-child(4) {
  height: 92%;
}

.clinical-bridge {
  position: relative;
  margin-top: 26px;
  padding-top: 16px;
}

.clinical-bridge-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 170, 235, 0), rgba(74, 170, 235, 0.75), rgba(74, 170, 235, 0));
}

.clinical-bridge-card {
  width: fit-content;
  max-width: 100%;
  margin: 16px auto 0;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(31, 58, 88, 0.08);
  text-align: center;
}

.clinical-bridge-card strong {
  display: block;
  margin-bottom: 4px;
}

.clinical-bridge-card span {
  color: var(--muted);
}

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

.feature-number {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9f2fe;
  font-weight: 800;
}

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

.review-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.security-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(95, 188, 245, 0.2), transparent 28%),
    linear-gradient(135deg, #132235 0%, #1d3550 54%, #24496f 100%);
  color: white;
}

.security-pill {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.security-lead p {
  color: rgba(255, 255, 255, 0.82);
}

.security-checks {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.security-check {
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.security-side {
  display: grid;
  gap: 16px;
}

.security-card {
  padding: 24px;
  border-radius: 26px;
}

.security-card-blue {
  background: linear-gradient(180deg, rgba(95, 188, 245, 0.2), rgba(255, 255, 255, 0.08));
}

.security-card-dark {
  background: linear-gradient(180deg, rgba(18, 31, 47, 0.4), rgba(255, 255, 255, 0.04));
}

.security-card p {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 22px;
}

.pricing-highlight {
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 208, 80, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.92));
}

.pricing-chip {
  background: rgba(255, 208, 80, 0.22);
  color: #956400;
}

.pricing-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 22px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #111111 0%, #24384f 100%);
  color: white;
  font-weight: 800;
}

.pricing-cards {
  display: grid;
  gap: 16px;
}

.pricing-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 34px;
  background: linear-gradient(135deg, #111 0%, #24384f 100%);
  color: white;
  box-shadow: var(--shadow);
}

.light-cta {
  padding: 0 24px;
  background: white;
  color: #111;
  white-space: nowrap;
}

.site-footer {
  padding: 0 0 36px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

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

@media (max-width: 980px) {
  .site-header,
  .hero-content,
  .section-grid,
  .benefit-cards,
  .review-grid,
  .cta-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .site-nav,
  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .site-header {
    align-items: stretch;
  }

  .hero-copy {
    max-width: none;
  }

  .brand-logo {
    max-width: none;
  }

  .hero-lower {
    margin-top: 40px;
  }

  .benefit-cards,
  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .platform-showcase,
  .clinical-flow,
  .security-panel,
  .pricing-board,
  .platform-story-metrics {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .solution-meta,
  .modern-cards {
    grid-template-columns: 1fr;
  }

  .founder-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-panels {
    grid-template-columns: 1fr;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-rail {
    flex-direction: row;
    justify-content: center;
  }

  .cta-panel {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero-frame {
    padding: 18px;
    min-height: auto;
  }

  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .brand-logo {
    align-items: center;
    border-radius: 28px;
    padding: 12px 14px;
  }

  .logo-icon {
    width: 58px;
    height: 58px;
  }

  .logo-tagline {
    display: none;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .hero-content {
    padding-top: 34px;
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .hero-highlights,
  .footer-row,
  .footer-links {
    flex-direction: column;
  }

  .platform-story-card,
  .platform-capability-card,
  .platform-integration-card,
  .clinical-stage,
  .pricing-highlight,
  .pricing-card,
  .security-panel {
    border-radius: 24px;
  }

  .primary-cta,
  .secondary-cta,
  .light-cta {
    width: 100%;
  }

  .task-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .solution-panel {
    padding: 22px;
  }
}

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

  .cloud {
    animation: none;
  }
}
