:root {
  --ink: #10232f;
  --muted: #5d6d78;
  --line: #dce9e9;
  --surface: #f7fbfa;
  --white: #ffffff;
  --teal: #047f7c;
  --teal-dark: #043f62;
  --blue: #005da8;
  --blue-dark: #032d60;
  --sky: #eaf5ff;
  --cloud: #f4f9ff;
  --mint: #e7f7fb;
  --brand-gradient: linear-gradient(135deg, #005da8 0%, #005da8 48%, #047f7c 100%);
  --brand-gradient-dark: linear-gradient(135deg, #032d60 0%, #005da8 48%, #047f7c 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(0, 93, 168, 0.14), rgba(4, 127, 124, 0.16));
  --coral: #f08f72;
  --gold: #d9a743;
  --shadow: 0 22px 60px rgba(3, 45, 96, 0.12);
  --page-max: 1180px;
  --section-pad: clamp(96px, 10vw, 128px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 46%, #ffffff 100%);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  width: min(calc(100% - 56px), var(--page-max));
  margin: 0 auto;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(214, 232, 248, 0.88);
  border-radius: 999px;
  box-shadow: 0 20px 58px rgba(3, 45, 96, 0.1);
  backdrop-filter: blur(24px);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, width 180ms ease;
}

.site-header.is-scrolled {
  width: min(calc(100% - 96px), calc(var(--page-max) - 80px));
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(214, 232, 248, 0.86);
  box-shadow: 0 18px 52px rgba(3, 45, 96, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: clamp(166px, 15.6vw, 205px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  color: #334a55;
  font-size: 13px;
  font-weight: 400;
}

.site-nav a {
  padding: 6px 8px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue-dark);
  background: transparent;
}

.site-nav a.is-active {
  position: relative;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  background: var(--brand-gradient);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(234, 245, 255, 0.92);
}

.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  color: var(--white) !important;
  background: var(--brand-gradient);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(3, 45, 96, 0.2);
}

.site-nav .login-link:hover {
  color: var(--white) !important;
  background: var(--brand-gradient);
  box-shadow: 0 16px 34px rgba(3, 45, 96, 0.24);
}

.site-nav .login-link.is-active {
  color: var(--white) !important;
  background: var(--brand-gradient);
  box-shadow:
    0 16px 36px rgba(3, 45, 96, 0.26),
    0 0 0 5px rgba(234, 245, 255, 0.72);
}

.site-nav .login-link::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  width: min(calc(100% - 40px), var(--page-max));
  min-height: 650px;
  margin: 0 auto;
  padding: clamp(122px, 11vw, 146px) 0 clamp(44px, 6vw, 68px);
}

body:not(.login-page) main {
  background:
    radial-gradient(circle at 78% 120px, rgba(234, 245, 255, 0.98), transparent 34%),
    radial-gradient(circle at 96% 650px, rgba(255, 226, 218, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(234, 245, 255, 0.9), rgba(255, 255, 255, 0.84) 42%, rgba(234, 245, 255, 0.92) 66%, rgba(240, 143, 114, 0.12) 88%) top / 100% 820px no-repeat,
    var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  /* Premium dash marker. Undo to spark-dot by restoring width/height 10px, border-radius 50%, and glow shadow. */
  width: 24px;
  height: 2px;
  background: var(--brand-gradient);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.section-copy .eyebrow,
.cta .eyebrow,
.login-copy .eyebrow {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 600;
}

h1 {
  max-width: 560px;
  font-size: clamp(36px, 4vw, 52px);
}

h2 {
  max-width: 620px;
  font-size: clamp(26px, 3vw, 38px);
}

.title-accent {
  color: var(--teal);
  background: linear-gradient(135deg, #005da8 0%, #047f7c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clinical-assurance .title-accent,
.governance .title-accent {
  color: #25cadc;
  background: linear-gradient(135deg, #25cadc 0%, #11c5a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: 17px;
}

.hero-text,
.section-copy p,
.cta p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 17px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--brand-gradient);
  box-shadow:
    0 18px 38px rgba(0, 93, 168, 0.2),
    0 10px 28px rgba(4, 127, 124, 0.16);
}

.button.demo-cta {
  min-width: 158px;
  background: var(--brand-gradient);
  box-shadow:
    0 20px 46px rgba(0, 93, 168, 0.24),
    0 10px 28px rgba(4, 127, 124, 0.18);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(0, 93, 168, 0.18),
    0 12px 30px rgba(3, 45, 96, 0.06);
}

.button.light {
  color: var(--white);
  background: var(--brand-gradient);
  box-shadow:
    0 20px 50px rgba(0, 93, 168, 0.24),
    0 10px 30px rgba(4, 127, 124, 0.16);
}

.button.light:hover {
  box-shadow:
    0 24px 58px rgba(0, 93, 168, 0.28),
    0 12px 34px rgba(4, 127, 124, 0.18);
}

.button.premium-cta {
  min-width: 206px;
  min-height: 50px;
  padding: 0 26px;
  color: var(--white);
  background: linear-gradient(135deg, #004b8d 0%, #0067b5 46%, #047f7c 100%);
  box-shadow:
    0 22px 50px rgba(0, 35, 76, 0.26),
    0 10px 30px rgba(4, 127, 124, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button.premium-cta::after {
  content: "→";
  margin-left: 10px;
  font-size: 15px;
  transition: transform 180ms ease;
}

.button.premium-cta:hover::after {
  transform: translateX(3px);
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 390px;
}

.hero-copy,
.section-copy,
.section-heading,
.cta {
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  box-shadow: 0 30px 78px rgba(3, 45, 96, 0.15);
}

.metric-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(3, 45, 96, 0.13);
  backdrop-filter: blur(16px);
}

.metric-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.metric-card strong {
  font-size: 16px;
  font-weight: 600;
}

.metric-card.summary {
  right: -10px;
  bottom: 34px;
}

.metric-card.insight {
  left: -18px;
  top: 44px;
}

.hero-demo-card {
  position: absolute;
  left: -78px;
  bottom: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(330px, calc(100% - 48px));
  padding: 12px 16px 12px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(16, 35, 47, 0.14);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-demo-card:hover {
  transform: translate(-4px, -2px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 58px rgba(16, 35, 47, 0.18);
}

.hero-demo-play {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: #ff0033;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(255, 0, 51, 0.24);
}

.hero-demo-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
}

.hero-demo-card strong,
.hero-demo-card small {
  display: block;
}

.hero-demo-card strong {
  font-size: 13.5px;
  font-weight: 600;
}

.hero-demo-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 40px), var(--page-max));
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
  border: 1px solid rgba(214, 232, 248, 0.92);
  border-radius: 30px;
  overflow: hidden;
  transform: translateY(-16px);
  box-shadow: 0 24px 58px rgba(3, 45, 96, 0.08);
  backdrop-filter: blur(14px);
}

.trust-strip div {
  position: relative;
  padding: 22px 28px;
  background: transparent;
}

.trust-strip div + div {
  border-left: 1px solid rgba(214, 232, 248, 0.95);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 15.5px;
  font-weight: 600;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13.5px;
}

.credibility-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: -4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 255, 0.95));
}

.credibility-strip div {
  padding: 20px 22px;
}

.credibility-strip strong {
  font-size: 14px;
}

.credibility-strip span {
  max-width: 190px;
  font-size: 12.5px;
  line-height: 1.45;
}

.audience-section {
  padding-top: clamp(78px, 8vw, 112px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 30px);
  margin-top: 42px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94));
  border: 1px solid rgba(214, 232, 248, 0.92);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(3, 45, 96, 0.08);
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand-gradient);
}

.audience-card.audience-admins {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 246, 0.94));
}

.audience-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--blue-dark);
  background: rgba(235, 246, 255, 0.9);
  border: 1px solid rgba(0, 93, 168, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
}

.audience-card p {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.audience-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.audience-card li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 13px;
  height: 2px;
  background: var(--brand-gradient);
  border-radius: 999px;
}

.clinical-assurance {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
  width: min(calc(100% - 40px), var(--page-max));
  margin: clamp(36px, 5vw, 66px) auto 0;
  padding: clamp(38px, 4vw, 56px) clamp(28px, 3vw, 42px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(20, 184, 166, 0.22), transparent 32%),
    linear-gradient(135deg, #011733 0%, #032d60 50%, #064f68 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: 0 32px 88px rgba(3, 45, 96, 0.18);
}

.clinical-assurance::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
}

.clinical-assurance .eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.clinical-assurance .eyebrow::before {
  background: linear-gradient(135deg, #25cadc, #11c5a8);
  box-shadow: none;
}

.clinical-assurance h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.clinical-assurance p {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.75;
}

.clinical-assurance .button {
  white-space: nowrap;
}

.hero-video-concept {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  width: min(calc(100% - 40px), var(--page-max));
  min-height: clamp(540px, 70vh, 760px);
  margin: clamp(54px, 6vw, 76px) auto 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(16, 35, 47, 0.18);
}

.hero-video-concept video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 24, 33, 0.78), rgba(7, 24, 33, 0.46) 48%, rgba(7, 24, 33, 0.12)),
    linear-gradient(180deg, rgba(7, 24, 33, 0.24), rgba(7, 24, 33, 0.76));
}

.hero-video-content {
  width: min(calc(100% - 40px), var(--page-max));
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px);
  color: var(--white);
}

.hero-video-content .eyebrow {
  color: var(--mint);
}

.hero-video-content h1,
.hero-video-content h2 {
  max-width: 700px;
  font-size: clamp(36px, 5vw, 62px);
  color: var(--white);
}

.hero-video-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.45vw, 18px);
}

.hero-video-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.section {
  position: relative;
  width: min(calc(100% - 40px), var(--page-max));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.section-separator {
  position: relative;
  width: min(calc(100% - 40px), var(--page-max));
  height: 28px;
  margin: -14px auto;
  z-index: 1;
}

.section-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(620px, 72%);
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(0, 93, 168, 0.18), rgba(4, 127, 124, 0.12), transparent);
}

.section-separator::after {
  display: none;
}

.split,
.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.platform-section .section-heading {
  max-width: 760px;
}

.platform-section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.platform-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
}

.section-lede {
  max-width: 690px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
}

.platform-layout {
  margin-top: 40px;
  align-items: stretch;
}

.feature-list,
.feature-grid,
.governance-grid {
  display: grid;
  gap: 18px;
}

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

.platform-layout .feature-list {
  grid-template-columns: 1fr;
  align-content: space-between;
}

.platform-layout .feature-list article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
  min-height: 31%;
  overflow: hidden;
}

.platform-layout .feature-list .icon {
  position: relative;
  z-index: 1;
  grid-row: span 2;
  margin-bottom: 0;
}

.platform-layout .feature-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), rgba(4, 127, 124, 0.24));
}

.platform-layout .feature-list article::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -64px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(234, 245, 255, 0.72), transparent 68%);
}

.feature-list article,
.feature-grid article,
.governance-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(16, 35, 47, 0.06);
}

.feature-list h3,
.feature-grid h3,
.governance-grid h3 {
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.feature-list p,
.feature-grid p,
.timeline p,
.governance-grid p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-image {
  margin: 0;
  height: 100%;
}

.section-image img,
.login-media img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.platform-layout .section-image img {
  height: 100%;
  min-height: 430px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
}

.section-heading {
  display: grid;
  justify-items: center;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 auto;
}

#features {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.feature-overview {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: stretch;
  margin-top: 42px;
}

.feature-image-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 26px;
  box-shadow: 0 28px 76px rgba(16, 35, 47, 0.11);
}

.feature-image-card .feature-slider {
  min-height: 420px;
  height: 100%;
  border-radius: inherit;
  box-shadow: none;
}

.feature-image-card .slide::after {
  background: linear-gradient(180deg, rgba(7, 24, 33, 0.04) 36%, rgba(7, 92, 89, 0.72));
}

.feature-image-card .slide figcaption {
  max-width: 560px;
  margin: 0 28px 38px;
}

.feature-image-card .slide figcaption strong {
  font-size: clamp(22px, 2.2vw, 30px);
}

.feature-image-card .slider-controls {
  right: 28px;
  bottom: 38px;
}

.feature-section::before {
  content: "";
  position: absolute;
  inset: 18% -100vmax auto;
  z-index: -1;
  height: 360px;
  background:
    radial-gradient(circle at 18% 40%, rgba(234, 245, 255, 0.95), transparent 28%),
    radial-gradient(circle at 82% 60%, rgba(213, 242, 247, 0.5), transparent 26%);
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: stretch;
  margin-top: 42px;
}

.feature-lead {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 420px;
  padding: clamp(26px, 3.4vw, 38px);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96) 58%, rgba(239, 249, 252, 0.82)),
    var(--white);
  border: 1px solid rgba(214, 232, 248, 0.94);
  border-radius: 26px;
  box-shadow: 0 28px 76px rgba(3, 45, 96, 0.1);
}

.feature-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.14)),
    radial-gradient(circle at 76% 18%, rgba(0, 93, 168, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(0, 93, 168, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(0, 93, 168, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  opacity: 0.9;
}

.feature-lead::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 0;
  pointer-events: none;
  width: 148px;
  height: 148px;
  background:
    radial-gradient(circle at center, rgba(0, 93, 168, 0.16), transparent 48%),
    conic-gradient(from 90deg, rgba(0, 93, 168, 0.18), rgba(234, 245, 255, 0.82), rgba(4, 127, 124, 0.1), rgba(0, 93, 168, 0.18));
  border-radius: 50%;
  opacity: 0.72;
  filter: blur(0.2px);
}

.feature-mark,
.feature-lead h3,
.feature-lead p,
.feature-note {
  position: relative;
  z-index: 1;
}

.feature-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--brand-gradient);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(3, 45, 96, 0.18);
  font-size: 15px;
  font-weight: 600;
}

.feature-lead h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.feature-lead p {
  max-width: 460px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-note {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 6px 12px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 245, 255, 0.92)),
    var(--white);
  border: 1px solid rgba(0, 93, 168, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(3, 45, 96, 0.1);
  backdrop-filter: blur(12px);
}

.feature-note::before {
  content: "✓";
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--brand-gradient);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(3, 45, 96, 0.18);
  font-size: 18px;
}

.feature-note strong {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 600;
}

.feature-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.feature-cards-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.feature-cards article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 218px;
  padding: 24px 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 255, 0.86)),
    var(--white);
  border: 1px solid rgba(214, 232, 248, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(3, 45, 96, 0.07);
  backdrop-filter: blur(14px);
}

.feature-cards-wide article:nth-child(2n) {
  transform: none;
}

.feature-cards-wide article:nth-child(4n + 1) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.9));
}

.feature-cards-wide article:nth-child(4n + 3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 252, 0.9));
}

.feature-cards article::before {
  display: none;
}

.feature-cards article::after {
  display: none;
}

.feature-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  background: rgba(234, 245, 255, 0.94);
  border: 1px solid rgba(0, 93, 168, 0.12);
  border-radius: 16px;
}

.feature-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--blue);
  -webkit-mask: var(--feature-icon) center / contain no-repeat;
  mask: var(--feature-icon) center / contain no-repeat;
}

.feature-icon-consult {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3Cpath d='M8 9h8M8 13h5'/%3E%3C/svg%3E");
}

.feature-icon-diagnostic {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 19V5a2 2 0 0 1 2-2h9l5 5v11a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z'/%3E%3Cpath d='M14 3v6h6'/%3E%3Cpath d='M8 15l2-2 2 2 3-5 1 3'/%3E%3C/svg%3E");
}

.feature-icon-summary {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M8 6h13M8 12h13M8 18h13'/%3E%3Cpath d='M3 6l1 1 2-2M3 12l1 1 2-2M3 18l1 1 2-2'/%3E%3C/svg%3E");
}

.feature-icon-form {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Cpath d='M8 8h8M8 12h8M8 16h5'/%3E%3C/svg%3E");
}

.feature-icon-intake {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M9 11h6M12 8v6'/%3E%3Crect x='4' y='3' width='16' height='18' rx='3'/%3E%3Cpath d='M8 21v-3h8v3'/%3E%3C/svg%3E");
}

.feature-icon-schedule {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='17' rx='2'/%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M8 15h4M8 18h8'/%3E%3C/svg%3E");
}

.feature-icon-report {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M5 3h10l4 4v14H5z'/%3E%3Cpath d='M15 3v5h5M8 13h8M8 17h6'/%3E%3C/svg%3E");
}

.feature-icon-secure {
  --feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l7 3v5c0 5-3.5 8.5-7 10-3.5-1.5-7-5-7-10V6l7-3z'/%3E%3Cpath d='M9.5 12l1.7 1.7L15 10'/%3E%3C/svg%3E");
}

.feature-cards h3 {
  position: relative;
  z-index: 1;
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--blue-dark), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
}

.feature-lead h3 {
  background: linear-gradient(135deg, var(--blue-dark), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-cards p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.gallery-section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.media-slider {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 480ms ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 92, 89, 0.68));
}

.slide figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 520px;
  margin: 0 0 38px 38px;
  color: var(--white);
}

.slide figcaption strong {
  font-size: 28px;
  font-weight: 600;
}

.slide figcaption span {
  color: rgba(255, 255, 255, 0.84);
}

.slider-controls {
  position: absolute;
  right: 34px;
  bottom: 38px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 34px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.slider-controls button.is-active {
  background: var(--white);
}

.video-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0 -100vmax;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 24%, rgba(234, 245, 255, 0.9), transparent 34%),
    linear-gradient(135deg, rgba(234, 245, 255, 0.84), rgba(255, 255, 255, 0.84) 44%, rgba(213, 242, 247, 0.36) 78%);
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 220ms ease, opacity 220ms ease;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(135deg, rgba(7, 92, 89, 0.2), rgba(16, 35, 47, 0.08));
}

.video-card:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.video-card:focus-visible {
  outline: 3px solid rgba(0, 93, 168, 0.45);
  outline-offset: 4px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 56px;
  padding: 0;
  color: var(--white);
  background: #ff0033;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(255, 0, 51, 0.28);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
}

.video-card iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.workflow {
  background: transparent;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.timeline article {
  position: relative;
  padding-top: 34px;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 28px;
  right: -34px;
  height: 2px;
  background: var(--line);
}

.timeline article:last-child::before {
  display: none;
}

.timeline span {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--coral);
  border: 6px solid #fde6dc;
  border-radius: 50%;
}

.governance {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(54px, 5.5vw, 72px) clamp(44px, 5vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(135deg, #011733 0%, #032d60 48%, #035c75 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  color: var(--white);
  box-shadow: 0 34px 96px rgba(3, 45, 96, 0.18);
}

.governance::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 88% 86%, rgba(4, 127, 124, 0.2), transparent 34%);
}

.governance::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.governance .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.governance .eyebrow::before {
  background: linear-gradient(135deg, #25cadc, #11c5a8);
  box-shadow: none;
}

.governance-lede {
  max-width: 460px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

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

.governance-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(1, 18, 41, 0.28);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 22px 52px rgba(1, 18, 41, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.governance-grid article::before {
  display: none;
}

.governance-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
}

.governance-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--mint);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.governance-icon-access {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l7 3v5c0 5-3.5 8.5-7 10-3.5-1.5-7-5-7-10V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-5'/%3E%3C/svg%3E");
}

.governance-icon-consent {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M7 3h7l4 4v14H7z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M9 15l2 2 4-5'/%3E%3C/svg%3E");
}

.governance-icon-standards {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M12 17v4'/%3E%3Cpath d='M6 3h12'/%3E%3Cpath d='M6 3v6a6 6 0 0 0 12 0V3'/%3E%3Cpath d='M5 6H3a4 4 0 0 0 4 4'/%3E%3Cpath d='M19 6h2a4 4 0 0 1-4 4'/%3E%3C/svg%3E");
}

.governance-icon-cloud {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 19H8a5 5 0 1 1 1.1-9.9A6 6 0 0 1 20 12.5 3.5 3.5 0 0 1 17.5 19z'/%3E%3Cpath d='M12 12v5'/%3E%3Cpath d='M9.5 14.5L12 12l2.5 2.5'/%3E%3C/svg%3E");
}

.governance-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.governance-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.governance-cta .button {
  min-width: 232px;
}

.cta {
  width: 100%;
  margin: 0;
  padding: var(--section-pad) 20px;
  background:
    radial-gradient(circle at 12% 20%, rgba(234, 245, 255, 0.8), transparent 34%),
    radial-gradient(circle at 90% 70%, rgba(213, 242, 247, 0.44), transparent 30%),
    linear-gradient(135deg, #f4fbf8, #ffffff 58%, #f4fbff);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  width: min(100%, var(--page-max));
  margin: 0 auto;
}

.cta-copy {
  max-width: 560px;
}

.cta h2 {
  margin: 0;
}

.cta p {
  margin: 16px 0 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta .button {
  min-width: 170px;
}

.cta-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 233, 233, 0.92);
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(16, 35, 47, 0.1);
  backdrop-filter: blur(18px);
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(0, 93, 168, 0.16), transparent 66%);
}

.cta-panel article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(16, 35, 47, 0.06);
}

.cta-panel span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--teal-dark);
  background: rgba(234, 245, 255, 0.78);
  border-radius: 14px;
  font-size: 12px;
}

.cta-panel h3 {
  font-size: 16px;
}

.cta-panel p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-section {
  position: relative;
  isolation: isolate;
  padding-bottom: clamp(64px, 6vw, 82px);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0 -100vmax;
  z-index: -1;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.pricing-grid article {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 330px;
  padding: 30px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.88));
  border: 1px solid rgba(214, 232, 248, 0.92);
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(3, 45, 96, 0.08);
  backdrop-filter: blur(14px);
  text-align: center;
}

.pricing-grid article::before {
  display: none;
}

.pricing-grid article.is-featured {
  padding-top: 44px;
  border-color: rgba(0, 93, 168, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.92));
  box-shadow: 0 30px 80px rgba(3, 45, 96, 0.14);
}

.pricing-grid article.is-featured::after {
  content: "Most Popular";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  color: var(--white);
  background: var(--brand-gradient);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  box-shadow:
    0 14px 32px rgba(3, 45, 96, 0.2),
    0 0 0 8px rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing-kicker,
.pricing-grid h3,
.pricing-grid p,
.pricing-grid strong,
.pricing-grid ul,
.pricing-grid .button {
  position: relative;
  z-index: 1;
}

.pricing-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  margin: 0 0 16px;
  padding: 0 12px;
  color: var(--blue-dark);
  background: rgba(234, 245, 255, 0.92);
  border: 1px solid rgba(0, 93, 168, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-grid h3 {
  font-size: 24px;
}

.pricing-grid p:not(.pricing-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-grid strong {
  margin-top: 22px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
}

.pricing-grid ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  width: min(100%, 260px);
  text-align: left;
}

.pricing-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-grid li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(234, 245, 255, 0.9);
}

.pricing-grid .button {
  align-self: end;
  width: 100%;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(680px, 100%);
  margin: 30px auto 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(214, 232, 248, 0.9);
  border-radius: 999px;
  box-shadow: 0 20px 54px rgba(3, 45, 96, 0.08);
  backdrop-filter: blur(14px);
}

.pricing-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-cta .button {
  min-width: 170px;
}

.faq-section {
  position: relative;
  isolation: isolate;
  padding-top: clamp(64px, 6vw, 82px);
  padding-bottom: clamp(64px, 6vw, 82px);
  color: var(--ink);
}

.faq-section::before {
  display: none;
}

.faq-section::after {
  display: none;
}

.faq-section > * {
  position: relative;
  z-index: 1;
}

.faq-section .eyebrow {
  color: var(--teal-dark);
}

.faq-section .section-lede {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 22px;
  max-width: 1040px;
  margin: 50px auto 0;
}

.faq-list details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 232, 248, 0.96);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(3, 45, 96, 0.08);
  backdrop-filter: blur(16px);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 22px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 14px;
}

.patient-journey {
  position: relative;
  isolation: isolate;
}

.patient-journey::before {
  content: "";
  position: absolute;
  inset: 0 -100vmax;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(234, 245, 255, 0.86), transparent 30%),
    radial-gradient(circle at 88% 74%, rgba(213, 242, 247, 0.44), transparent 32%),
    linear-gradient(150deg, #f4fbff 0%, #ffffff 44%, #f6fcff 100%);
}

.clinic-flow-infographic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 249, 255, 0.8)),
    var(--white);
  border: 1px solid rgba(214, 232, 248, 0.92);
  border-radius: 34px;
  box-shadow: 0 28px 76px rgba(3, 45, 96, 0.1);
  backdrop-filter: blur(18px);
}

.clinic-flow-infographic::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 84px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 93, 168, 0.26), rgba(4, 127, 124, 0.16), transparent);
}

.clinic-flow-infographic article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(214, 232, 248, 0.88);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(3, 45, 96, 0.07);
}

.clinic-flow-infographic article:nth-child(even) {
  margin-top: 34px;
}

.clinic-flow-infographic span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--brand-gradient);
  border: 5px solid rgba(234, 245, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(3, 45, 96, 0.16);
  font-size: 12px;
}

.clinic-flow-infographic h3 {
  font-size: 15px;
}

.clinic-flow-infographic p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.journey-map {
  position: relative;
  margin-top: 50px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(214, 232, 248, 0.9);
  border-radius: 34px;
  box-shadow: 0 28px 76px rgba(3, 45, 96, 0.1);
  backdrop-filter: blur(18px);
}

.journey-map::before {
  display: none;
}

.journey-ribbon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.journey-ribbon span {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, rgba(234, 245, 255, 0.96), rgba(255, 255, 255, 0.82));
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 93, 168, 0.12);
  font-size: 13px;
  font-weight: 500;
}

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

.journey-track::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: calc(50% - 1px);
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 93, 168, 0), rgba(0, 93, 168, 0.28), rgba(0, 93, 168, 0));
}

.journey-track article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 420px;
  padding: 16px 16px 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    var(--white);
  border: 1px solid rgba(214, 232, 248, 0.92);
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(3, 45, 96, 0.08);
  backdrop-filter: blur(14px);
}

.journey-card-image {
  position: relative;
  z-index: 1;
  height: 150px;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(16, 35, 47, 0.1);
}

.journey-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.journey-track article:nth-child(3) .journey-card-image {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.journey-track article::before {
  display: none;
}

.journey-track article::after {
  display: none;
}

.journey-track article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(3, 45, 96, 0.96), rgba(0, 93, 168, 0.86)),
    var(--blue-dark);
  color: var(--white);
}

.journey-track span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--brand-gradient);
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(3, 45, 96, 0.18);
  font-size: 12px;
  font-weight: 600;
}

.journey-track h3 {
  position: relative;
  z-index: 1;
  font-size: 17px;
}

.journey-track p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.journey-track ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.journey-track li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 12.5px;
}

.journey-track li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(234, 245, 255, 0.58);
}

.journey-track article:nth-child(3) span {
  color: var(--teal-dark);
  background: var(--mint);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.journey-track article:nth-child(3) p {
  color: rgba(255, 255, 255, 0.78);
}

.journey-track article:nth-child(3) li {
  color: rgba(255, 255, 255, 0.78);
}

.journey-track article:nth-child(3) li::before {
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(234, 245, 255, 0.18);
}

.workflow-visuals {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  margin-top: 46px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(220, 233, 233, 0.88);
  border-radius: 28px;
  box-shadow: 0 24px 68px rgba(16, 35, 47, 0.08);
  backdrop-filter: blur(16px);
}

.workflow-visuals-copy h3 {
  max-width: 360px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.workflow-visuals-copy p:not(.eyebrow) {
  max-width: 380px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.workflow-visuals .media-slider {
  min-height: 430px;
  border-radius: 22px;
}

.contact-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding-top: clamp(64px, 6vw, 82px);
}

.contact-section::before {
  display: none;
}

.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.contact-highlights {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 24px;
}

.contact-highlights div {
  position: relative;
  padding: 16px 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.9));
  border: 1px solid rgba(214, 232, 248, 0.82);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(3, 45, 96, 0.055);
}

.contact-highlights strong,
.contact-highlights span {
  display: block;
}

.contact-highlights strong {
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--blue-dark), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-weight: 600;
}

.contact-highlights span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 232, 248, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 14px;
  font: inherit;
  box-shadow: inset 0 0 0 1px rgba(214, 232, 248, 0.95);
}

.contact-form input {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.contact-message,
.contact-form .button {
  grid-column: 1 / -1;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(4, 127, 124, 0.22), transparent 32%),
    linear-gradient(135deg, #011733 0%, #032d60 46%, #045860 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 1.35fr);
  gap: clamp(40px, 7vw, 90px);
  width: min(calc(100% - 40px), var(--page-max));
  margin: 0 auto;
  padding: 68px 0 44px;
}

.footer-brand img {
  width: 228px;
  filter:
    drop-shadow(0 16px 30px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 18px rgba(37, 202, 220, 0.14));
}

.footer-brand p {
  max-width: 460px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-links h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.footer-links a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 400;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(100% - 40px), var(--page-max));
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #7ed8c5;
  font-weight: 400;
}

.portal-login-page {
  min-height: 100vh;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 68% 26%, rgba(0, 93, 168, 0.34), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(40, 118, 222, 0.28), transparent 36%),
    linear-gradient(135deg, #07111d, #071a31 44%, #06101c);
}

html:has(.portal-login-page) {
  background: #06101c;
}

.portal-login-shell {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(380px, 0.9fr);
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 68% 26%, rgba(0, 93, 168, 0.34), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(40, 118, 222, 0.28), transparent 36%),
    linear-gradient(135deg, #07111d, #071a31 44%, #06101c);
}

.portal-story {
  display: grid;
  align-items: center;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(rgba(7, 17, 29, 0.76), rgba(7, 17, 29, 0.88)),
    url("assets/login-clinical-portal.png") center / cover;
}

.portal-story-card {
  display: grid;
  gap: clamp(16px, 2.2vw, 28px);
  min-height: min(820px, calc(100vh - 56px));
  padding: clamp(24px, 3.4vw, 40px);
  background: rgba(12, 25, 40, 0.72);
  border: 1px solid rgba(126, 216, 197, 0.18);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.portal-logo img {
  width: clamp(164px, 16vw, 206px);
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.3));
}

.portal-kicker {
  justify-self: center;
  margin: 0;
  color: #7ed8c5;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portal-kicker::before,
.portal-kicker::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 14px 4px;
  background: currentColor;
  opacity: 0.5;
}

.portal-story h1 {
  max-width: 650px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  text-align: center;
}

.portal-story h1 span {
  color: #7ed8c5;
}

.portal-subtitle {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 20px);
  text-align: center;
}

.portal-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(126, 216, 197, 0.18);
}

.portal-benefits div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.portal-benefits div:last-child {
  grid-column: 1 / -1;
}

.portal-benefits span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #7ed8c5;
  background: rgba(0, 93, 168, 0.18);
  border: 1px solid rgba(126, 216, 197, 0.28);
  border-radius: 12px;
  font-size: 12px;
}

.portal-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.45;
}

.portal-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 16px;
  border-top: 1px solid rgba(126, 216, 197, 0.18);
}

.portal-stats div {
  display: grid;
  gap: 2px;
  justify-items: center;
  text-align: center;
}

.portal-stats strong {
  color: var(--white);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1;
  font-weight: 500;
}

.portal-stats span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portal-demo-link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 24px;
  color: #7ed8c5;
  border: 1px solid rgba(126, 216, 197, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.portal-access {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 72px);
}

.portal-access-card {
  width: min(100%, 520px);
  overflow: hidden;
  background: rgba(9, 19, 34, 0.9);
  border: 1px solid rgba(126, 216, 197, 0.4);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(49, 158, 219, 0.26),
    0 24px 70px rgba(0, 0, 0, 0.34);
}

.portal-access-head,
.portal-form,
.portal-contact {
  padding-left: clamp(26px, 4vw, 42px);
  padding-right: clamp(26px, 4vw, 42px);
}

.portal-access-head {
  padding-top: 34px;
  padding-bottom: 28px;
}

.portal-access h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
}

.portal-access-head p {
  margin: 10px 0 16px;
  color: rgba(255, 255, 255, 0.82);
}

.portal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  color: #7ed8c5;
  background: rgba(0, 93, 168, 0.16);
  border: 1px solid rgba(126, 216, 197, 0.24);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-form {
  display: grid;
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 0;
  border-top: 1px solid rgba(126, 216, 197, 0.14);
}

.portal-form label,
.password-label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.password-label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.password-label a {
  color: #7ed8c5;
  letter-spacing: 0;
  text-transform: none;
}

.portal-form input[type="text"],
.portal-form input[type="password"] {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(126, 216, 197, 0.22);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font: inherit;
}

.portal-form input:focus {
  outline: 0;
  border-color: rgba(126, 216, 197, 0.74);
  box-shadow: 0 0 0 4px rgba(0, 93, 168, 0.18);
}

.portal-check {
  display: inline-flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.portal-check input {
  width: 17px;
  height: 17px;
  accent-color: var(--teal);
}

.portal-signin {
  min-height: 56px;
  color: var(--white);
  background: linear-gradient(90deg, var(--teal), #20b8c9);
  border: 0;
  border-radius: 13px;
  box-shadow: 0 18px 44px rgba(0, 93, 168, 0.28);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.portal-contact {
  margin: 22px 0 0;
  padding-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.portal-contact a {
  color: #7ed8c5;
}

.portal-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  text-align: center;
}

.login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 18%, rgba(234, 245, 255, 0.96), transparent 32%),
    linear-gradient(135deg, rgba(234, 245, 255, 0.82), rgba(255, 255, 255, 0.8) 42%, rgba(234, 245, 255, 0.9) 62%, rgba(240, 143, 114, 0.16) 80%),
    var(--white);
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.66fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  width: min(calc(100% - 40px), var(--page-max));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(112px, 9vw, 128px) 0 clamp(22px, 4vw, 44px);
}

.login-copy img {
  width: 100%;
  margin: 0;
}

.login-media-row {
  max-width: 760px;
  margin-top: 0;
}

.login-media {
  position: relative;
  max-width: none;
  margin-top: 0;
  overflow: visible;
  border: 10px solid rgba(255, 255, 255, 0.68);
  border-radius: 34px;
  box-shadow:
    0 30px 78px rgba(3, 45, 96, 0.16),
    0 16px 46px rgba(4, 127, 124, 0.12);
}

.login-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(3, 45, 96, 0.82), rgba(0, 93, 168, 0.46) 44%, rgba(4, 127, 124, 0.08) 72%),
    linear-gradient(180deg, rgba(3, 45, 96, 0.16), rgba(3, 45, 96, 0) 42%, rgba(3, 45, 96, 0.24));
}

.login-media img {
  display: block;
  width: 100%;
  height: clamp(470px, 36vw, 520px);
  object-fit: cover;
  object-position: center right;
  border-radius: 24px;
  box-shadow: none;
  filter: saturate(0.95);
}

.login-image-copy {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 3;
  width: min(520px, 72%);
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  backdrop-filter: none;
}

.login-image-copy .eyebrow {
  margin-bottom: 9px;
  color: rgba(222, 255, 247, 0.94);
  font-size: 12px;
}

.login-image-copy .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(4, 127, 124, 0.94));
  border: 0;
  box-shadow: none;
}

.login-image-copy h1 {
  max-width: 360px;
  color: var(--white);
  font-size: clamp(25px, 2vw, 29px);
  line-height: 1.08;
  letter-spacing: 0;
  white-space: normal;
}

.login-image-copy p {
  max-width: 320px;
  margin: 10px 0 0;
  color: rgba(245, 255, 253, 0.92);
  font-size: 13px;
  line-height: 1.5;
}

.login-media::after {
  display: none;
}

.login-copy h1 {
  max-width: 760px;
  font-size: clamp(28px, 2.6vw, 34px);
  font-weight: 600;
  white-space: nowrap;
}

.login-copy p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.login-copy .login-image-copy h1 {
  max-width: 440px;
  color: var(--white);
  font-size: clamp(25px, 1.95vw, 30px);
  line-height: 1.08;
  white-space: normal;
}

.login-copy .login-image-copy p {
  max-width: 450px;
  margin: 10px 0 0;
  color: rgba(245, 255, 253, 0.92);
  font-size: 13px;
  line-height: 1.5;
}

.login-inline-link {
  display: inline-flex;
  margin-left: 8px;
  color: var(--teal-dark);
  font-weight: 500;
  white-space: nowrap;
}

.login-inline-link:hover {
  color: var(--teal);
}

.login-benefits {
  position: absolute;
  top: 166px;
  bottom: 34px;
  left: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-content: stretch;
  gap: 7px;
  width: min(286px, 48%);
  margin-top: 0;
}

.login-benefits article {
  display: grid;
  align-content: center;
  padding: 9px 14px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 45, 96, 0.6), rgba(0, 93, 168, 0.28), rgba(4, 127, 124, 0.22)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(7, 24, 33, 0.2);
  backdrop-filter: blur(20px) saturate(1.18);
}

.login-benefits span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 6px;
  color: var(--white);
  background: var(--brand-gradient);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  font-size: 11px;
}

.login-benefits strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.login-benefits p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11.5px;
  line-height: 1.26;
}

.login-card {
  width: 100%;
  min-width: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(214, 232, 248, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.login-card h2 {
  font-size: 26px;
  text-align: center;
}

.login-card p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.login-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.login-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: var(--teal-dark);
  background: rgba(0, 93, 168, 0.1);
  border: 1px solid rgba(0, 93, 168, 0.18);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.login-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.login-form label,
.password-label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.password-label {
  display: block;
}

.forgot-password-link {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.forgot-password-link:hover {
  color: var(--teal);
}

.login-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 14px;
  font: inherit;
  box-shadow: inset 0 0 0 1px rgba(214, 232, 248, 0.95);
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 46px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.password-toggle:hover {
  color: var(--teal);
  background: rgba(0, 93, 168, 0.08);
}

.password-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.login-row label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
}

.login-row input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--teal);
}

.login-card .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--brand-gradient);
  box-shadow:
    0 18px 44px rgba(0, 93, 168, 0.22),
    0 10px 30px rgba(4, 127, 124, 0.16);
}

.login-note {
  margin-bottom: 0;
  padding-top: 16px;
  text-align: center;
}

.login-note a {
  color: var(--teal-dark);
  font-weight: 500;
}

.login-video-link {
  position: absolute;
  right: -34px;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 242px;
  margin-top: 0;
  padding: 12px 16px 12px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(7, 24, 33, 0.2);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 500;
}

.login-video-link span {
  position: relative;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: #ff0033;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(255, 0, 51, 0.2);
}

.login-video-link span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--white);
}

.login-video-link:hover {
  color: var(--teal);
}

.floating-home {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(22px, 4vw, 42px);
  z-index: 9;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    var(--brand-gradient);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  box-shadow:
    0 20px 46px rgba(3, 45, 96, 0.22),
    0 10px 28px rgba(4, 127, 124, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0) scale(0.92);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(16px);
}

.floating-home.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.floating-home:hover {
  transform: translate3d(0, -3px, 0) scale(1.03);
  box-shadow:
    0 24px 54px rgba(3, 45, 96, 0.26),
    0 12px 34px rgba(4, 127, 124, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.floating-home span {
  position: relative;
  width: 20px;
  height: 20px;
}

.floating-home span::before,
.floating-home span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.floating-home span::before {
  top: 1px;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}

.floating-home span::after {
  top: 5px;
  width: 3px;
  height: 15px;
  background: currentColor;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .platform-layout,
  .audience-grid,
  .clinical-assurance,
  .governance,
  .video-section,
  .feature-overview,
  .feature-showcase,
  .workflow-visuals,
  .cta-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .portal-login-shell {
    grid-template-columns: 1fr;
  }

  .portal-story {
    padding-bottom: 0;
  }

  .portal-access {
    padding-top: 34px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 0;
    padding-bottom: 8px;
  }

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

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

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

  .clinic-flow-infographic::before {
    display: none;
  }

  .clinic-flow-infographic article:nth-child(even) {
    margin-top: 0;
  }

  .journey-track article {
    grid-column: auto !important;
    margin-top: 0 !important;
  }

  .journey-track::before {
    display: none;
  }

  .journey-track article::after {
    display: none;
  }

  .timeline article::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    width: min(calc(100% - 32px), var(--page-max));
    padding: 10px 12px;
  }

  .brand img {
    width: 157px;
  }

  .login-link {
    padding: 0 18px;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: inline-flex;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(0, 93, 168, 0.18);
    box-shadow: 0 12px 30px rgba(16, 35, 47, 0.08);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    padding: 11px 12px;
  }

  .login-link {
    min-height: 46px;
  }

  .hero {
    width: 100%;
    padding: 126px 16px 46px;
    gap: 28px;
  }

  .floating-home {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

  .hero-video-concept {
    width: calc(100% - 32px);
    min-height: 560px;
    border-radius: 22px;
  }

  .hero-video-content {
    padding: 30px;
  }

  .hero-video-content h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  h1 {
    max-width: 330px;
    font-size: clamp(32px, 9vw, 36px);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .hero-text,
  .section-copy p,
  .cta-copy > p {
    max-width: 330px;
    font-size: 15px;
  }

  .cta {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cta-panel {
    padding: 16px;
  }

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

  .hero-demo-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: calc(100% - 32px);
    margin: 14px auto 0;
    padding: 14px 18px;
    justify-content: flex-start;
    border-radius: 24px;
  }

  .pricing-cta {
    align-items: stretch;
    flex-direction: column;
    border-radius: 22px;
    text-align: center;
  }

  .trust-strip,
  .credibility-strip,
  .feature-list,
  .feature-cards,
  .pricing-grid,
  .timeline,
  .governance-grid,
  .contact-form,
  .clinic-flow-infographic,
  .journey-track,
  .journey-ribbon {
    grid-template-columns: 1fr;
  }

  .feature-cards-wide article:nth-child(2n) {
    transform: none;
  }

  .journey-map {
    padding: 18px;
    border-radius: 22px;
  }

  .trust-strip {
    width: calc(100% - 32px);
    transform: none;
    margin-top: 24px;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(214, 232, 248, 0.95);
  }

  .credibility-strip div {
    padding: 18px 20px;
  }

  .credibility-strip span {
    max-width: none;
  }

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

  .clinical-assurance {
    width: calc(100% - 32px);
    padding: 24px;
    border-radius: 24px;
  }

  .clinical-assurance .button {
    width: 100%;
  }

  .governance {
    padding: 26px;
    border-radius: 26px;
  }

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

  .section {
    width: calc(100% - 32px);
  }

  .footer-inner,
  .footer-bottom,
  .login-shell {
    width: calc(100% - 32px);
  }

  .footer-inner,
  .footer-links,
  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-benefits {
    grid-template-columns: 1fr;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 86px;
    left: 18px;
    width: calc(100% - 36px);
    margin: 0;
    z-index: 3;
  }

  .login-media-row {
    display: grid;
  }

  .login-media {
    display: block;
    overflow: hidden;
  }

  .login-video-link {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 4;
    max-width: none;
    margin: 0;
    justify-content: center;
  }

  .login-media::after {
    display: none;
  }

  .login-benefits article {
    color: var(--ink);
    min-height: 104px;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.66);
    box-shadow: 0 14px 34px rgba(7, 24, 33, 0.14);
  }

  .login-benefits strong {
    color: var(--blue-dark);
  }

  .login-benefits p {
    color: var(--muted);
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
  }

  .login-shell {
    min-height: auto;
    padding: 126px 0 72px;
    gap: 32px;
  }

  .media-slider {
    min-height: 420px;
    border-radius: 18px;
  }

  .slide figcaption {
    margin: 0 22px 54px;
  }

  .slide figcaption strong {
    font-size: 22px;
  }

  .slider-controls {
    right: auto;
    left: 22px;
    bottom: 24px;
  }

  .video-card {
    border-radius: 18px;
  }

  .login-copy h1 {
    max-width: 320px;
    font-size: clamp(28px, 8vw, 34px);
    white-space: normal;
  }

  .login-copy p {
    max-width: 340px;
    font-size: 15px;
  }

  .login-media img {
    height: 780px;
    object-position: center right;
  }

  .login-image-copy {
    top: 24px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .login-copy .login-image-copy h1 {
    max-width: 320px;
    font-size: clamp(28px, 8vw, 34px);
  }

  .login-copy .login-image-copy p {
    max-width: 330px;
    font-size: 14px;
  }

  .login-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: stretch;
    margin: 0 auto;
    padding: 26px;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .login-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .metric-card {
    position: static;
    margin-top: 12px;
    min-width: 0;
  }

  .hero-visual img {
    border-radius: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-login-shell {
    min-height: auto;
  }

  .portal-story,
  .portal-access {
    padding: 16px;
  }

  .portal-story-card {
    min-height: auto;
    padding: 28px;
    border-radius: 20px;
  }

  .portal-kicker::before,
  .portal-kicker::after {
    display: none;
  }

  .portal-benefits,
  .portal-stats {
    grid-template-columns: 1fr;
  }

  .portal-benefits div:last-child {
    grid-column: auto;
  }

  .portal-access-card {
    border-radius: 20px;
  }
}
