:root {
  --ink: #14251f;
  --ink-soft: #42524c;
  --paper: #f6f3eb;
  --paper-deep: #ebe7dc;
  --white: #fffdf8;
  --lime: #c8f06b;
  --lime-dark: #9ccf32;
  --green: #244d3d;
  --green-deep: #102d24;
  --aqua: #d9eee8;
  --coral: #f08064;
  --line: rgba(20, 37, 31, 0.13);
  --shadow: 0 28px 80px rgba(20, 37, 31, 0.15);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

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

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

.page-noise {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  width: min(1240px, calc(100% - 48px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  background: var(--ink);
}

.brand-mark span {
  display: block;
  width: 2px;
  border-radius: 3px;
  background: var(--lime);
}

.brand-mark span:nth-child(1),
.brand-mark span:nth-child(5) { height: 7px; }
.brand-mark span:nth-child(2),
.brand-mark span:nth-child(4) { height: 14px; }
.brand-mark span:nth-child(3) { height: 20px; }

.desktop-nav {
  display: flex;
  gap: 36px;
  margin-left: 80px;
}

.desktop-nav a,
.login-link {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  border: 0;
  border-radius: 999px;
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button svg,
.text-link svg,
.send-ehr svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding: 0 20px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(20, 37, 31, 0.16);
}

.button-dark:hover {
  background: #253b33;
}

.button-accent {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 28px rgba(144, 192, 51, 0.23);
}

.button-accent:hover {
  background: #d5f88a;
}

.button-accent svg {
  width: 20px;
  height: 20px;
}

.menu-button,
.mobile-nav,
.mobile-page-cta {
  display: none;
}

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto;
  padding: 70px 0 90px;
  display: grid;
  grid-template-columns: 0.88fr 1.22fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #466255;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-dark);
  box-shadow: 0 0 0 4px rgba(156, 207, 50, 0.13);
}

h1,
h2,
blockquote {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 590px;
  margin-top: 24px;
  font-size: clamp(62px, 6.3vw, 92px);
}

h1 em,
h2 em {
  color: var(--green);
  font-weight: 500;
}

.hero-lede {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}

.trust-row {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 36px;
  height: 36px;
  margin-left: -8px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--coral);
}

.avatar-stack span:last-child {
  color: var(--ink);
  background: var(--lime);
}

.trust-row p {
  margin: 0;
  color: #617069;
  font-size: 12px;
  line-height: 1.4;
}

.trust-row strong {
  color: var(--ink);
}

.hero-visual {
  min-width: 0;
  position: relative;
  perspective: 1200px;
}

.workspace {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 555px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 27px;
  background: rgba(255, 253, 248, 0.93);
  box-shadow: var(--shadow);
  transform: rotateY(-2deg) rotateX(1deg);
  transform-origin: center;
}

.workspace::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.7), transparent 40%);
}

.workspace-topbar {
  min-height: 72px;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.workspace-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.mini-mark {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--ink);
}

.mini-mark i {
  width: 2px;
  height: 7px;
  background: var(--lime);
}

.mini-mark i:nth-child(2) { height: 14px; }

.patient-chip {
  display: flex;
  align-items: center;
  gap: 9px;
}

.patient-chip > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.patient-chip div {
  display: flex;
  flex-direction: column;
}

.patient-chip strong {
  font-size: 11px;
  line-height: 1.4;
}

.patient-chip small {
  color: #7a8781;
  font-size: 8px;
}

.more-button {
  justify-self: end;
  border: 0;
  color: #7c8883;
  background: transparent;
  letter-spacing: 2px;
  cursor: pointer;
}

.workspace-grid {
  min-height: 483px;
  display: grid;
  grid-template-columns: 0.76fr 1.44fr;
}

.session-panel {
  border-right: 1px solid var(--line);
  padding: 24px 18px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(160deg, rgba(217,238,232,.6), rgba(255,253,248,.25) 50%);
}

.session-status {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6f7c77;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.session-status time {
  margin-left: auto;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a3aea9;
}

.workspace.is-listening .live-dot {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(240,128,100,.12);
  animation: blink 1.2s infinite;
}

.voice-orb-wrap {
  width: 172px;
  height: 172px;
  margin-top: 61px;
  position: relative;
  display: grid;
  place-items: center;
}

.voice-rings,
.voice-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.voice-rings span {
  border: 1px solid rgba(36,77,61,.13);
}

.voice-rings span:nth-child(2) {
  inset: 17px;
}

.voice-rings span:nth-child(3) {
  inset: 34px;
}

.workspace.is-listening .voice-rings span {
  animation: voice-ring 2s ease-out infinite;
}

.workspace.is-listening .voice-rings span:nth-child(2) { animation-delay: .35s; }
.workspace.is-listening .voice-rings span:nth-child(3) { animation-delay: .7s; }

.voice-orb {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 35px rgba(156,207,50,.3);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.voice-orb:hover {
  transform: scale(1.05);
}

.voice-orb svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.pause-icon {
  display: none;
}

.workspace.is-listening .voice-orb {
  color: var(--white);
  background: var(--coral);
}

.workspace.is-listening .mic-icon {
  display: none;
}

.workspace.is-listening .pause-icon {
  display: block;
}

.orb-prompt {
  margin: 19px 0 0;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.privacy-note {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8a958f;
  font-size: 8px;
}

.privacy-note svg {
  width: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.note-panel {
  min-width: 0;
  background: rgba(255,255,255,.5);
}

.note-tabs {
  height: 53px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
}

.note-tab {
  position: relative;
  border: 0;
  color: #86908c;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.note-tab span {
  padding: 1px 5px;
  border-radius: 8px;
  color: var(--green);
  background: var(--aqua);
  font-size: 7px;
}

.note-tab.active {
  color: var(--ink);
}

.note-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--green);
}

.tab-content {
  display: none;
  height: 430px;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
}

.note-header {
  min-height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6e7a75;
  font-size: 8px;
}

.status-check {
  width: 15px;
  height: 15px;
  margin-right: 4px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  background: var(--aqua);
  font-size: 8px;
  font-weight: 700;
}

.copy-button {
  border: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6e7a75;
  background: transparent;
  font-size: 8px;
  cursor: pointer;
}

.copy-button svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.note-body {
  padding: 0 19px;
}

.note-section {
  padding: 12px 0 13px;
  border-top: 1px solid rgba(20,37,31,.08);
}

.note-section:first-child {
  border-top: 0;
}

.note-section h3 {
  margin: 0 0 5px;
  color: #4e5d57;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.note-section p {
  margin: 0;
  color: #4f5e59;
  font-size: 8.5px;
  line-height: 1.6;
}

.note-footer {
  margin-top: auto;
  min-height: 57px;
  padding: 0 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.note-footer > span {
  color: #6f7d77;
  font-size: 8px;
}

.note-footer > span i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--lime-dark);
}

.send-ehr {
  border: 0;
  border-radius: 99px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  background: var(--green);
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.send-ehr svg {
  width: 12px;
}

.code-intro {
  padding: 17px 18px 10px;
  color: #6e7a75;
  font-size: 8px;
}

.code-list {
  padding: 0 17px;
}

.code-item {
  margin: 7px 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 68px 1fr 34px;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.7);
}

.code-item.selected {
  border-color: rgba(156,207,50,.55);
  background: rgba(200,240,107,.1);
}

.code-item div {
  display: flex;
  flex-direction: column;
}

.code-item small {
  color: #84918b;
  font-size: 6px;
}

.code-item strong {
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.code-item p {
  margin: 0;
  color: #5f6c67;
  font-size: 7.5px;
  line-height: 1.35;
}

.code-item > span {
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.review-button {
  margin: auto 17px 14px;
  border: 0;
  border-radius: 8px;
  padding: 10px;
  color: var(--white);
  background: var(--green);
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.order-card {
  margin: 8px 17px;
  padding: 13px 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
}

.order-icon {
  width: 29px;
  height: 29px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--aqua);
  font-family: "Newsreader", serif;
  font-size: 12px;
  font-weight: 600;
}

.order-icon.followup {
  color: #93513f;
  background: #f9ded6;
}

.order-card strong {
  display: block;
  font-size: 8px;
}

.order-card p {
  margin: 2px 0 0;
  color: #77837e;
  font-size: 7px;
}

.order-state {
  padding: 3px 6px;
  border-radius: 7px;
  color: #6c7b75;
  background: var(--paper-deep);
  font-size: 6px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,253,248,.94);
  box-shadow: 0 16px 40px rgba(20,37,31,.18);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.code-card {
  right: -25px;
  top: 120px;
  padding: 12px 13px;
}

.floating-icon {
  width: 29px;
  height: 29px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--aqua);
  font-family: "DM Mono", monospace;
  font-size: 12px;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  color: #7d8984;
  font-size: 7px;
}

.floating-card strong {
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.confidence {
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.saved-card {
  left: -32px;
  bottom: 35px;
  padding: 12px 16px 12px 12px;
  animation-delay: -1.7s;
}

.saved-check {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.orbital-line {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(36,77,61,.11);
  border-radius: 50%;
}

.line-one {
  width: 660px;
  height: 660px;
  top: -55px;
  left: -12px;
}

.line-two {
  width: 500px;
  height: 500px;
  top: 25px;
  left: 70px;
  border-style: dashed;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip > div {
  min-height: 148px;
  padding: 35px clamp(24px, 4vw, 70px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  font-family: "Newsreader", serif;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.proof-strip p {
  margin: 4px 0 0;
  color: #65736d;
  font-size: 11px;
}

.proof-strip .compliance {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.shield-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--aqua);
}

.shield-icon svg {
  width: 23px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-strip .compliance strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
}

.workflow-section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 65px;
}

.section-heading h2,
.security-copy h2,
.cta-content h2 {
  margin-top: 20px;
  font-size: clamp(48px, 5.4vw, 76px);
}

.section-heading > p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.feature-large {
  grid-column: 1 / -1;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.feature-number {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #76827d;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  background: rgba(255,255,255,.7);
}

.feature-visual {
  position: relative;
  min-height: 315px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #e9f0eb;
}

.feature-large .feature-visual {
  height: 100%;
}

.feature-copy {
  padding: 42px;
}

.feature-copy > span {
  color: #658074;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.feature-copy h3 {
  max-width: 470px;
  margin: 15px 0 14px;
  font-family: "Newsreader", serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.feature-copy p {
  max-width: 470px;
  margin: 0;
  color: #607069;
  font-size: 14px;
}

.transcript-visual {
  flex-direction: column;
  gap: 31px;
  background:
    radial-gradient(circle at 50% 50%, rgba(200,240,107,.32), transparent 36%),
    linear-gradient(145deg, #dfeae5, #f1eee3);
}

.speaker-row {
  width: 76%;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 12px 34px rgba(20,37,31,.08);
}

.speaker-row.patient {
  margin-left: 45px;
}

.speaker-avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  font-weight: 700;
}

.speaker-avatar.doctor {
  color: var(--white);
  background: var(--green);
}

.speaker-row small {
  color: #738079;
  font-size: 8px;
}

.speaker-row p {
  margin: 1px 0 0;
  color: var(--ink);
  font-size: 11px;
}

.waveform {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.waveform i {
  width: 3px;
  height: 8px;
  border-radius: 4px;
  background: var(--green);
  animation: waveform 1.2s ease-in-out infinite alternate;
}

.waveform i:nth-child(2n) { height: 22px; animation-delay: -.4s; }
.waveform i:nth-child(3n) { height: 14px; animation-delay: -.8s; }
.waveform i:nth-child(5n) { height: 26px; animation-delay: -.2s; }

.code-visual {
  flex-direction: column;
  gap: 15px;
  background:
    linear-gradient(rgba(20,37,31,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,37,31,.04) 1px, transparent 1px),
    var(--aqua);
  background-size: 26px 26px;
}

.mini-code {
  width: 62%;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 13px;
  display: grid;
  grid-template-columns: 1fr auto;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 30px rgba(20,37,31,.08);
}

.mini-code:nth-child(2) {
  margin-left: 50px;
}

.mini-code span {
  grid-column: 1 / -1;
  color: #798680;
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.mini-code strong {
  font-family: "DM Mono", monospace;
  font-size: 18px;
}

.mini-code i {
  align-self: center;
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-style: normal;
}

.coding-line {
  position: absolute;
  width: 1px;
  height: 65px;
  background: var(--green);
}

.ehr-visual {
  background: linear-gradient(145deg, #f2eee3, #e2ece6);
}

.ehr-logo,
.ehr-destination {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.76);
  box-shadow: 0 14px 35px rgba(20,37,31,.09);
}

.ehr-logo .mini-mark {
  width: 42px;
  height: 42px;
}

.ehr-destination svg {
  width: 34px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.4;
}

.flow-line {
  width: 95px;
  height: 1px;
  position: relative;
  overflow: hidden;
  background: rgba(20,37,31,.2);
}

.flow-line span {
  position: absolute;
  top: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-dark);
  animation: flow 2s linear infinite;
}

.sync-check {
  position: absolute;
  margin: 75px 0 0 250px;
  width: 26px;
  height: 26px;
  border: 3px solid #e6eee9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.quote-section {
  padding: 130px 24px;
  text-align: center;
  background: var(--aqua);
}

.quote-mark {
  width: 46px;
  height: 46px;
  margin: 0 auto 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(255,255,255,.6);
  font-family: "Newsreader", serif;
  font-size: 32px;
  line-height: 1;
}

blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.08;
}

.quote-author {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.quote-author > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.quote-author p {
  margin: 0;
  color: #5c6f66;
  text-align: left;
  font-size: 11px;
  line-height: 1.5;
}

.quote-author strong {
  color: var(--ink);
}

.security-section {
  padding: 120px max(24px, calc((100% - 1160px) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(200,240,107,.12), transparent 30%),
    var(--green-deep);
}

.eyebrow.light {
  color: #abc2b8;
}

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

.security-copy > p {
  max-width: 520px;
  margin: 26px 0 32px;
  color: #b6c5bf;
  font-size: 16px;
}

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

.security-grid {
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.security-grid > div {
  min-height: 180px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-direction: column;
}

.security-grid span {
  color: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.security-grid strong {
  margin-top: auto;
  font-family: "Newsreader", serif;
  font-size: 25px;
  font-weight: 600;
}

.security-grid p {
  margin: 2px 0 0;
  color: #92aaa0;
  font-size: 11px;
}

.cta-section {
  min-height: 640px;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--lime);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.mini-brand-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: var(--ink);
}

.mini-brand-mark i {
  width: 3px;
  border-radius: 4px;
  background: var(--lime);
}

.mini-brand-mark i:nth-child(1),
.mini-brand-mark i:nth-child(5) { height: 10px; }
.mini-brand-mark i:nth-child(2),
.mini-brand-mark i:nth-child(4) { height: 22px; }
.mini-brand-mark i:nth-child(3) { height: 32px; }

.cta-content h2 {
  margin-top: 0;
}

.cta-content h2 em {
  color: var(--ink);
}

.cta-content > p {
  margin: 21px 0 28px;
  color: #49602f;
}

.demo-form {
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 6px;
  border-radius: 999px;
  display: flex;
  background: rgba(255,255,255,.7);
  box-shadow: 0 20px 45px rgba(76,101,32,.13);
}

.demo-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 20px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0 !important;
  color: var(--ink) !important;
  font-size: 12px;
}

.cta-orbit,
.cta-orbit span {
  position: absolute;
  border: 1px solid rgba(20,37,31,.13);
  border-radius: 50%;
}

.cta-orbit {
  width: 760px;
  height: 760px;
}

.cta-orbit span:first-child {
  inset: 100px;
}

.cta-orbit span:last-child {
  inset: 220px;
  background: rgba(255,255,255,.12);
}

footer {
  min-height: 170px;
  padding: 45px max(24px, calc((100% - 1160px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
  color: var(--white);
  background: var(--ink);
}

footer .brand-mark {
  background: var(--lime);
}

footer .brand-mark span {
  background: var(--ink);
}

footer p,
footer small {
  color: #899890;
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 25px;
  color: #b7c2bd;
  font-size: 11px;
}

footer small {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  padding: 13px 18px 13px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
  transform: translateY(120px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
}

.toast p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.subpage {
  min-height: calc(100vh - 170px);
}

.subpage-hero {
  padding: 88px max(24px, calc((100% - 1160px) / 2)) 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(200,240,107,.17), transparent 28%),
    var(--green-deep);
}

.subpage-hero h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(56px, 7vw, 92px);
}

.subpage-hero h1 em {
  color: var(--lime);
}

.subpage-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #b6c5bf;
  font-size: 16px;
}

.subpage-hero .eyebrow {
  color: #abc2b8;
}

.legal-layout {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 120px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 80px;
}

.legal-aside {
  position: sticky;
  top: 30px;
  align-self: start;
}

.legal-aside p {
  margin: 0 0 14px;
  color: #76827d;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

.legal-aside a {
  display: block;
  margin: 11px 0;
  color: #68766f;
  font-size: 12px;
  font-weight: 700;
}

.legal-aside a:hover {
  color: var(--green);
}

.legal-content h2 {
  margin: 42px 0 13px;
  font-family: "Newsreader", serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 25px 0 8px;
  font-size: 15px;
}

.legal-content p,
.legal-content li {
  color: #5c6b64;
  font-size: 14px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin: 8px 0;
}

.legal-note {
  padding: 18px 20px;
  border-left: 3px solid var(--lime-dark);
  border-radius: 0 12px 12px 0;
  background: #eef1e7;
}

.legal-note p {
  margin: 0;
}

.contact-layout {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 120px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.contact-details h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.contact-details > p {
  max-width: 430px;
  margin: 20px 0 36px;
  color: #617069;
  font-size: 15px;
}

.contact-detail {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.contact-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  margin-bottom: 5px;
  color: #728078;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  font-size: 14px;
}

.contact-form-card {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(20,37,31,.08);
}

.contact-form-card h3 {
  margin: 0 0 24px;
  font-family: "Newsreader", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: #5d6c64;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(20,37,31,.17);
  border-radius: 10px;
  outline: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf5;
  font-size: 13px;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(36,77,61,.1);
}

.contact-form .button {
  justify-self: start;
  margin-top: 6px;
}

.contact-message {
  min-height: 22px;
  margin: 5px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.product-overview {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 95px 0 120px;
}

.product-intro {
  max-width: 760px;
  margin-bottom: 62px;
}

.product-intro h2 {
  margin: 17px 0 20px;
  font-family: "Newsreader", serif;
  font-size: clamp(45px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1;
}

.product-intro h2 em {
  color: var(--green);
  font-weight: 500;
}

.product-intro p {
  max-width: 600px;
  margin: 0;
  color: #617069;
  font-size: 16px;
}

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

.product-feature {
  min-height: 325px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.product-feature:nth-child(2) {
  background: #eef3e7;
}

.product-feature:nth-child(3) {
  color: var(--white);
  background: var(--green);
}

.product-feature:nth-child(3) .feature-tag,
.product-feature:nth-child(3) p {
  color: #bad0c4;
}

.product-feature:nth-child(4) {
  background: #f4e9e1;
}

.feature-index {
  color: #819088;
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.product-feature:nth-child(3) .feature-index {
  color: var(--lime);
}

.feature-tag {
  display: block;
  margin-top: 77px;
  color: #668073;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-feature h3 {
  max-width: 340px;
  margin: 12px 0 10px;
  font-family: "Newsreader", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.product-feature p {
  max-width: 360px;
  margin: 0;
  color: #617069;
  font-size: 13px;
}

.feature-symbol {
  position: absolute;
  right: 27px;
  top: 25px;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--aqua);
}

.product-feature:nth-child(2) .feature-symbol {
  background: var(--lime);
}

.product-feature:nth-child(3) .feature-symbol {
  color: var(--ink);
  background: var(--lime);
}

.product-feature:nth-child(4) .feature-symbol {
  color: #93513f;
  background: #f9cec1;
}

.feature-symbol svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-band {
  margin-top: 18px;
  padding: 44px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  color: var(--white);
  background: var(--ink);
}

.services-band h3 {
  max-width: 350px;
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.services-band h3 em {
  color: var(--lime);
  font-weight: 500;
}

.services-band > p {
  margin: 15px 0 0;
  color: #9dafaa;
  font-size: 13px;
}

.service-list {
  border-top: 1px solid rgba(255,255,255,.17);
}

.service-item {
  min-height: 75px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.17);
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
}

.service-item > span {
  color: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.service-item strong {
  font-size: 13px;
}

.service-item p {
  margin: 2px 0 0;
  color: #96a9a0;
  font-size: 11px;
}

.service-item > svg {
  width: 18px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .15s;
}

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

@keyframes blink {
  50% { opacity: .45; }
}

@keyframes voice-ring {
  0% { transform: scale(.75); opacity: .7; }
  100% { transform: scale(1.15); opacity: 0; }
}

@keyframes waveform {
  to { height: 5px; opacity: .45; }
}

@keyframes flow {
  from { left: -6px; }
  to { left: 100%; }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    width: min(740px, 95%);
    margin: 30px auto 0;
  }

  .proof-strip > div {
    padding-left: 30px;
    padding-right: 30px;
  }

  .security-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    width: min(100% - 32px, 1240px);
    height: 72px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-page-cta {
    display: inline-flex;
    margin-left: auto;
    margin-right: 12px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 6px;
    background: transparent;
  }

  .menu-button span {
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .25s ease;
  }

  .site-header.menu-open .menu-button span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.menu-open .menu-button span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    gap: 16px;
    background: rgba(255,253,248,.97);
    box-shadow: 0 18px 45px rgba(20,37,31,.13);
  }

  .site-header.menu-open .mobile-nav {
    display: flex;
  }

  .mobile-nav a {
    font-size: 14px;
    font-weight: 700;
  }

  .hero {
    width: min(100% - 32px, 1240px);
    min-height: auto;
    padding: 60px 0 80px;
  }

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

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-visual {
    width: 100%;
    margin-top: 10px;
  }

  .workspace {
    min-height: 650px;
    transform: none;
  }

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

  .session-panel {
    min-height: 265px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .voice-orb-wrap {
    width: 130px;
    height: 130px;
    margin-top: 16px;
  }

  .voice-orb {
    width: 64px;
    height: 64px;
  }

  .privacy-note {
    margin-top: 9px;
  }

  .tab-content {
    height: 385px;
  }

  .floating-card {
    display: none;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .workflow-section {
    width: min(100% - 32px, 1160px);
    padding: 90px 0;
  }

  .workflow-grid,
  .feature-large {
    grid-template-columns: 1fr;
  }

  .feature-large {
    display: flex;
  }

  .feature-large .feature-visual {
    min-height: 340px;
    height: auto;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-copy {
    padding: 34px 26px 40px;
  }

  .quote-section {
    padding: 90px 24px;
  }

  .security-section {
    padding: 90px 24px;
    gap: 55px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  footer small {
    grid-column: auto;
    margin-top: 20px;
  }

  .subpage-hero {
    padding: 68px 24px 58px;
  }

  .legal-layout,
  .contact-layout {
    width: min(100% - 32px, 960px);
    padding: 65px 0 90px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-aside {
    position: static;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .legal-aside p {
    width: 100%;
    margin-bottom: 0;
  }

  .legal-aside a {
    margin: 0;
  }

  .contact-layout {
    gap: 55px;
  }

  .product-overview {
    width: min(100% - 32px, 1160px);
    padding: 70px 0 90px;
  }

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

  .services-band {
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 520px) {
  .workspace-topbar {
    grid-template-columns: 1fr auto;
  }

  .workspace-brand {
    display: none;
  }

  .patient-chip {
    justify-self: start;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip > div:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .proof-strip > div:last-child {
    border-bottom: 0;
  }

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

  .demo-form {
    border-radius: 18px;
    flex-direction: column;
    gap: 7px;
  }

  .demo-form input {
    min-height: 48px;
    text-align: center;
  }

  .speaker-row {
    width: 88%;
  }

  .mini-code {
    width: 74%;
  }

  .ehr-logo,
  .ehr-destination {
    width: 65px;
    height: 65px;
  }

  .flow-line {
    width: 55px;
  }
}

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