:root {
  --ink: #142b3b;
  --ink-soft: #566873;
  --teal: #0c7b82;
  --teal-dark: #075760;
  --mint: #43cfa1;
  --mint-soft: #e7f7f0;
  --coral: #c75f50;
  --paper-soft: #f6f8f8;
  --surface: #edf2f4;
  --hero-bg: #f1f7f6;
  --deep: #102f46;
  --line: #d8e1e4;
  --shadow: rgba(20, 43, 59, 0.14);
}

html[data-theme="dark"] {
  --ink: #f0f4f3;
  --ink-soft: #b7c3c8;
  --teal: #59c2c7;
  --teal-dark: #82d8d6;
  --mint: #5bd7aa;
  --mint-soft: #19342f;
  --coral: #ef8a76;
  --coral-soft: #3a292a;
  --paper: #101820;
  --paper-soft: #151f28;
  --surface: #1c2933;
  --hero-bg: #121d26;
  --deep: #0a202d;
  --line: #30414c;
  --shadow: rgba(0, 0, 0, 0.32);
  --header-bg: rgba(16, 24, 32, 0.96);
}

.site-header {
  min-height: 76px;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  font-size: 10px;
}

.theme-toggle:hover,
.theme-toggle:focus-visible,
.patient-link:hover,
.patient-link:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  max-height: none;
  padding: 36px 24px 42px;
  border-bottom: 1px solid var(--line);
  background: var(--hero-bg);
}

.hero-inner {
  width: min(960px, 100%);
}

.hero-brand {
  display: grid;
  justify-items: center;
  gap: 5px;
  width: fit-content;
  margin: 0 auto 12px;
}

.hero-brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px var(--shadow));
}

.hero-brand strong {
  color: var(--ink);
  font-size: 22px;
  letter-spacing: 0.2em;
  line-height: 1;
  text-indent: 0.2em;
}

h1 {
  font-size: 54px;
}

.hero-proof {
  gap: 12px;
  max-width: 900px;
  margin-top: 22px;
  padding: 0;
  border-top: 0;
}

.hero-proof li,
.hero-proof li:last-child {
  min-height: 82px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: 6px;
  background: var(--paper);
  text-align: left;
}

.hero-proof li:nth-child(2) {
  border-top-color: var(--mint);
}

.hero-proof li:nth-child(3) {
  border-top-color: var(--coral);
}

.hero-proof span {
  color: var(--teal);
}

.workflow-section {
  padding-top: 78px;
}

.workflow-layout {
  max-width: var(--max-width);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workflow-steps li,
.workflow-steps li:last-child {
  display: block;
  min-height: 176px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: 6px;
  background: var(--paper);
}

.workflow-steps li:nth-child(2) {
  border-top-color: var(--mint);
}

.workflow-steps li:nth-child(3) {
  border-top-color: var(--coral);
}

.workflow-steps h3 {
  margin-top: 22px;
}

.safety-note {
  margin-top: 38px;
}

.demo-section,
.deployment-section,
.governance-section,
.audience-section,
.roadmap-section,
.pricing-section,
.contact-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.governance-section,
html[data-theme="dark"] .governance-section {
  background: var(--deep);
}

.demo-video-frame,
.demo-video-frame video {
  background: #08151c;
}

@media (max-width: 820px) {
  .hero {
    padding: 40px 20px 44px;
  }

  .hero-brand img {
    width: 72px;
    height: 72px;
  }

  .hero-brand strong {
    font-size: 21px;
  }

  h1 {
    font-size: 46px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps li,
  .workflow-steps li:last-child {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding: 34px 16px 38px;
  }

  .hero-brand {
    margin-bottom: 14px;
  }

  .hero-brand img {
    width: 64px;
    height: 64px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof li,
  .hero-proof li:last-child {
    min-height: 0;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--teal);
    text-align: left;
  }

  .hero-proof li:nth-child(2) {
    border-left-color: var(--mint);
  }

  .hero-proof li:nth-child(3) {
    border-left-color: var(--coral);
  }

  .workflow-section,
  .demo-section,
  .deployment-section,
  .governance-section,
  .audience-section,
  .roadmap-section,
  .pricing-section,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 24px 16px 28px;
  }

  .hero-brand {
    margin-bottom: 10px;
  }

  .hero-brand img {
    width: 56px;
    height: 56px;
  }

  .hero-brand strong {
    font-size: 19px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .hero-lead {
    margin-top: 14px;
    line-height: 1.55;
  }

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

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .hero-proof li,
  .hero-proof li:last-child {
    min-height: 84px;
  }

  .hero-proof li:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 0;
  }
}
.patient-hero {
  background: var(--deep);
}

.patient-hero .section-label {
  color: var(--mint);
}

.patient-button {
  color: #102f46;
}
@media (max-width: 620px) {
  body[data-site-view="patient"] .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

  body[data-site-view="patient"] .brand strong {
    display: none;
  }

  body[data-site-view="patient"] .brand img {
    width: 32px;
    height: 32px;
  }

  body[data-site-view="patient"] .header-actions {
    min-width: 0;
    justify-content: flex-end;
  }

  body[data-site-view="patient"] .patient-link[data-site-view="patient"] {
    padding: 7px 8px;
    font-size: 10px;
    white-space: nowrap;
  }
}
.workflow-section {
  padding-top: 62px;
}

.demo-section,
.deployment-section,
.governance-section,
.audience-section,
.roadmap-section,
.pricing-section,
.contact-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

@media (max-width: 620px) {
  .workflow-section {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .demo-section,
  .deployment-section,
  .governance-section,
  .audience-section,
  .roadmap-section,
  .pricing-section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}
.workflow-section {
  padding-top: 48px;
}

@media (max-width: 620px) {
  .workflow-section {
    padding-top: 42px;
  }
}
@media (max-width: 620px) {
  body[data-site-view="professional"] .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

  body[data-site-view="professional"] .brand strong {
    display: none;
  }

  body[data-site-view="professional"] .header-actions {
    min-width: 0;
    justify-content: flex-end;
  }

  body[data-site-view="professional"] .patient-link.professional-only {
    display: inline-flex;
    padding: 7px 8px;
    font-size: 10px;
    white-space: nowrap;
  }
}

.status-strip {
  background: color-mix(in srgb, var(--coral-soft) 72%, var(--paper));
}

.status-inner strong {
  color: var(--ink);
}

body[data-site-view="professional"] .hero {
  scroll-margin-top: 124px;
}

@media (max-width: 820px) {
  .status-inner > span:last-child {
    display: block;
    grid-column: 1 / -1;
    padding-left: 18px;
  }
}

.contact-action {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: auto;
}

.contact-action .button {
  margin-top: 0;
}

.contact-paths .contact-email {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.contact-email span {
  display: block;
}

.contact-email a {
  color: var(--teal);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-email a:hover,
.contact-email a:focus-visible {
  color: var(--coral);
}

@media (max-width: 620px) {
  body[data-site-view="professional"] .hero {
    scroll-margin-top: 184px;
  }

  .status-inner > span:last-child {
    padding-left: 16px;
    line-height: 1.4;
  }
}
