/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --ink: #2c2528;
  --muted: #71666a;
  --line: #eadde0;
  --canvas: #faf6f7;
  --card: #fff;
  --teal: #e3425b;
  --teal-dark: #b82e47;
  --teal-soft: #fff0f3;
  --blue: #a63b56;
  --orange: #ed7548;
  --shadow: 0 18px 48px #52232f1a;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  color: var(--ink);
}

body {
  text-rendering: optimizelegibility;
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

button, input, select {
  font: inherit;
}

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

a {
  color: inherit;
}

.brand {
  align-items: center;
  text-decoration: none;
  display: inline-flex;
}

.brand-logo {
  object-fit: contain;
  width: auto;
  height: 42px;
  display: block;
}

.brand.compact .brand-logo {
  height: 34px;
}

.eyebrow {
  color: var(--teal);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
}

.eyebrow.light {
  color: #ffd7de;
}

.button {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 11px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 19px;
  font-weight: 750;
  transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
  display: inline-flex;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .58;
}

.button.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px #e3425b33;
}

.button.primary:hover:not(:disabled) {
  background: var(--teal-dark);
  box-shadow: 0 10px 25px #e3425b47;
}

.button.secondary {
  background: var(--teal-soft);
  color: var(--teal-dark);
  border-color: #efbbc4;
}

.button.ghost {
  border-color: var(--line);
  color: #53656d;
  background: none;
}

.button.small {
  border-radius: 9px;
  min-height: 36px;
  padding: 0 13px;
  font-size: 13px;
}

.button.wide {
  width: 100%;
}

.text-link {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.form-error {
  color: #a13c34;
  background: #fff1f0;
  border-radius: 8px;
  margin: 0;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
}

.muted {
  color: #9aa7ac !important;
}

.muted-copy {
  color: var(--muted);
  font-size: 14px;
}

.login-page {
  background: #fff;
  grid-template-columns: minmax(420px, 47%) 1fr;
  min-height: 100vh;
  display: grid;
}

.login-visual {
  color: #fff;
  background: radial-gradient(circle at 82% 16%, #ff845a4d, #0000 32%), linear-gradient(145deg, #65172f 0%, #96233f 55%, #d44755 125%);
  flex-direction: column;
  min-height: 100vh;
  padding: 42px 55px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-visual:before {
  content: "";
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  position: absolute;
  bottom: -100px;
  right: -200px;
}

.visual-copy {
  z-index: 1;
  max-width: 540px;
  margin: auto 0;
  position: relative;
}

.visual-copy h2 {
  letter-spacing: -.055em;
  max-width: 530px;
  margin: 0;
  font-size: clamp(38px, 3.5vw, 52px);
  font-weight: 570;
  line-height: 1.01;
}

.visual-copy > p:not(.eyebrow) {
  color: #f4dce1;
  max-width: 500px;
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.visual-orbit {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  position: relative;
}

.visual-orbit span {
  border: 1px solid #ffd1bdc7;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}

.visual-orbit span:nth-child(2) {
  transform: rotate(60deg)scaleX(.45);
}

.visual-orbit span:nth-child(3) {
  transform: rotate(-60deg)scaleX(.45);
}

.visual-orbit:after {
  content: "";
  background: #ff9870;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  inset: 26px;
  box-shadow: 0 0 18px #ff9870;
}

.login-feature-list {
  flex-wrap: wrap;
  gap: 7px;
  max-width: 520px;
  margin-top: 18px;
  display: flex;
}

.login-feature-list span {
  color: #ffe6ea;
  background: #ffffff14;
  border: 1px solid #ffdae04d;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 700;
}

.medical-note {
  z-index: 1;
  color: #eec6ce;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0;
  font-size: 11px;
  position: relative;
}

.login-panel {
  background: linear-gradient(135deg, #fff 55%, #fdf8f9);
  place-items: center;
  min-height: 100vh;
  padding: 48px;
  display: grid;
}

.login-panel-content {
  gap: 28px;
  width: min(440px, 100%);
  display: grid;
}

.login-panel-content .brand-logo {
  max-width: 100%;
  height: 72px;
}

.login-form {
  gap: 15px;
  width: 100%;
  display: grid;
}

.login-form h1 {
  letter-spacing: -.04em;
  max-width: 420px;
  margin: 0;
  font-size: 37px;
  font-weight: 650;
  line-height: 1.08;
}

.login-intro {
  color: var(--muted);
  margin: 11px 0 5px;
  line-height: 1.55;
}

.login-form label {
  color: #3b4b52;
  gap: 8px;
  font-size: 13px;
  font-weight: 750;
  display: grid;
}

.login-form input, .login-form select, .message-composer input {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ccd8da;
  border-radius: 10px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.login-form input, .login-form select {
  height: 49px;
  padding: 0 14px;
}

.login-form input:focus, .login-form select:focus, .message-composer input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px #e3425b1f;
}

.policy-copy {
  color: #7b898f;
  text-align: center;
  margin: -2px 0 0;
  font-size: 12px;
}

.policy-copy a {
  color: var(--teal-dark);
  font-weight: 700;
}

.app-page {
  background: var(--canvas);
  min-height: 100vh;
}

.app-header {
  z-index: 20;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #ffffffeb;
  border-bottom: 1px solid #cedbdcd9;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 max(28px, 50vw - 620px);
  display: flex;
  position: sticky;
  top: 0;
}

.header-navigation {
  align-items: center;
  gap: 22px;
  min-width: 0;
  display: flex;
}

.header-back {
  text-decoration: none;
}

.header-user {
  align-items: center;
  gap: 11px;
  display: flex;
}

.user-avatar {
  background: var(--teal-soft);
  width: 33px;
  height: 33px;
  color: var(--teal-dark);
  border-radius: 50%;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  display: grid;
}

.user-name {
  margin-right: 6px;
  font-size: 13px;
  font-weight: 700;
}

.page-content {
  width: min(1184px, 100% - 48px);
  margin: 0 auto;
  padding: 45px 0 70px;
}

.dashboard-hero {
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding: 24px 0 38px;
  display: flex;
}

.dashboard-hero h1 {
  letter-spacing: -.045em;
  margin: 0;
  font-size: clamp(34px, 4vw, 49px);
  font-weight: 630;
}

.dashboard-hero p:last-child {
  max-width: 690px;
  color: var(--muted);
  margin: 12px 0 0;
  line-height: 1.6;
}

.history-section {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px #1d3b410d;
}

.section-heading, .card-title-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section-heading {
  border-bottom: 1px solid var(--line);
  padding: 21px 25px;
}

.section-heading h2, .card-title-row h2 {
  letter-spacing: -.02em;
  margin: 0;
  font-size: 17px;
}

.section-heading > span, .card-title-row > span {
  min-width: 26px;
  height: 26px;
  color: var(--muted);
  background: #edf3f2;
  border-radius: 50%;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  display: grid;
}

.empty-state {
  min-height: 290px;
  color: var(--muted);
  text-align: center;
  align-content: center;
  place-items: center;
  display: grid;
}

.empty-state h3 {
  font-size: 15px;
  font-weight: 600;
}

.empty-icon {
  color: #dc8b9a;
  font-size: 44px;
}

.assessment-list {
  display: grid;
}

.assessment-row {
  border-bottom: 1px solid #e8eeee;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: stretch;
  transition: background .16s;
  display: grid;
}

.assessment-row:last-child {
  border-bottom: 0;
}

.assessment-row:hover {
  background: #f7fbfa;
}

.assessment-row-link {
  min-width: 0;
  color: inherit;
  grid-template-columns: 54px minmax(200px, 1fr) 120px 90px;
  align-items: center;
  gap: 20px;
  padding: 17px 10px 17px 24px;
  text-decoration: none;
  display: grid;
}

.date-tile {
  background: #f8fbfa;
  border: 1px solid #d8e5e4;
  border-radius: 10px;
  align-content: center;
  place-items: center;
  height: 52px;
  display: grid;
}

.date-tile strong {
  font-size: 18px;
  line-height: 1;
}

.date-tile span {
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 800;
}

.assessment-meta {
  gap: 5px;
  display: grid;
}

.assessment-name {
  align-items: center;
  gap: 8px;
  display: flex;
}

.assessment-meta strong {
  font-size: 14px;
}

.assessment-meta span {
  color: var(--muted);
  font-size: 12px;
}

.status {
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
}

.status-completed {
  color: #267453;
  background: #e5f4ed;
}

.status-incomplete {
  color: var(--orange);
  background: #fff0e6;
}

.status-in_progress {
  color: var(--blue);
  background: #e8f1f7;
}

.score-block {
  text-align: right;
  grid-template-columns: auto auto;
  justify-content: end;
  align-items: baseline;
  column-gap: 2px;
  display: grid;
}

.score-block strong {
  font-size: 20px;
}

.score-block > span {
  color: var(--muted);
  font-size: 12px;
}

.score-block small {
  color: var(--muted);
  grid-column: 1 / -1;
  font-size: 9px;
}

.row-arrow {
  color: var(--brand);
  font-size: 17px;
  line-height: 1;
  transition: transform .16s;
}

.assessment-row-link:hover .row-arrow {
  transform: translateX(2px);
}

.delete-assessment-button {
  color: #a85c69;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 9px;
  align-self: center;
  place-items: center;
  width: 34px;
  height: 34px;
  transition: background .16s, color .16s;
  display: grid;
}

.delete-assessment-button:hover {
  color: var(--brand);
  background: #f8e8eb;
}

.delete-assessment-button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.delete-assessment-button:disabled {
  cursor: wait;
  opacity: .55;
}

.delete-assessment-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7px;
  width: 18px;
}

.assessment-page-content {
  padding-top: 18px;
}

.assessment-topline {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  display: flex;
}

.read-only-topline {
  justify-content: flex-end;
}

.read-only-pill {
  color: var(--muted);
  text-transform: uppercase;
  background: #fff;
  border: 1px solid #d6e1e1;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 800;
}

.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 38px #183e430e;
}

.assessment-workspace {
  grid-template-columns: minmax(0, 3fr) minmax(350px, 2fr);
  align-items: stretch;
  gap: 20px;
  display: grid;
}

.question-panel, .conversation-panel {
  min-height: calc(100vh - 116px);
  overflow: hidden;
}

.question-panel {
  padding: 20px;
}

.assessment-progress-header {
  grid-template-rows: auto auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px 14px;
  display: grid;
}

.assessment-progress-header h1 {
  letter-spacing: -.04em;
  grid-area: 1 / 1;
  margin: 0;
  font-size: 24px;
}

.question-ring {
  width: 62px;
  height: 62px;
  color: var(--teal-dark);
  border: 5px solid #f2d6dc;
  border-radius: 50%;
  justify-content: center;
  align-items: baseline;
  padding-top: 14px;
  display: flex;
}

.assessment-progress-header .question-ring {
  grid-area: 1 / 2 / 3;
  align-self: center;
}

.question-ring strong {
  font-size: 19px;
  line-height: 1;
}

.question-ring span {
  font-size: 10px;
}

.answered-grid {
  grid-area: 2 / 1;
  grid-template-columns: repeat(6, minmax(32px, 46px));
  justify-content: space-between;
  gap: 6px 4px;
  min-width: 0;
  display: grid;
}

.answered-grid > div {
  color: #9aa6aa;
  background: #f1f4f4;
  border-radius: 7px;
  align-content: center;
  place-items: center;
  gap: 2px;
  min-width: 0;
  height: 54px;
  display: grid;
}

.answered-grid span {
  font-size: 8px;
  line-height: 1;
}

.answered-grid b {
  font-size: 11px;
  line-height: 1.15;
}

.answered-grid > div.answered {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.answered-grid > div.current {
  color: var(--teal-dark);
  background: #fff8f9;
  outline: 1px solid #df7d8e;
}

.score-ring {
  width: 60px;
  height: 60px;
  color: var(--teal-dark);
  border: 5px solid #f2d6dc;
  border-radius: 50%;
  justify-content: center;
  align-items: baseline;
  padding-top: 13px;
  display: flex;
}

.score-ring strong {
  font-size: 19px;
  line-height: 1;
}

.score-ring span {
  font-size: 10px;
}

.current-question {
  border-top: 1px solid #edf1f1;
  margin-top: 16px;
  padding-top: 16px;
}

.question-heading {
  align-items: center;
  gap: 11px;
  display: flex;
}

.question-heading > span {
  background: var(--teal);
  color: #fff;
  border-radius: 9px;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  font-size: 13px;
  font-weight: 800;
  display: grid;
}

.question-heading h2 {
  letter-spacing: -.035em;
  margin: 0;
  font-size: 23px;
}

.current-question > p {
  color: #4c5f66;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.5;
}

.question-heading + p {
  margin-top: 12px;
}

.score-options {
  gap: 6px;
  margin-top: 14px;
  display: grid;
}

.score-options > div {
  color: #405159;
  text-align: left;
  background: #fbfcfc;
  border: 1px solid #dde6e6;
  border-radius: 9px;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 5px 10px;
  display: grid;
}

.score-options > div b {
  width: 30px;
  height: 30px;
  color: var(--teal-dark);
  background: #fff;
  border-radius: 8px;
  place-items: center;
  display: grid;
  box-shadow: 0 2px 8px #52232f14;
}

.score-options > div span {
  font-size: 12px;
  line-height: 1.35;
}

.review-ready {
  text-align: center;
  align-content: center;
  place-items: center;
  min-height: 390px;
  display: grid;
}

.review-ready > span {
  color: #267453;
  background: #e4f4ed;
  border-radius: 50%;
  place-items: center;
  width: 64px;
  height: 64px;
  font-size: 26px;
  display: grid;
}

.review-ready h2 {
  max-width: 390px;
  margin: 18px 0 25px;
  font-size: 20px;
  line-height: 1.4;
}

.review-edit-list {
  border: 1px solid var(--line);
  text-align: left;
  border-radius: 10px;
  width: 100%;
  max-height: 315px;
  margin: 0 0 20px;
  padding: 4px 12px;
  display: grid;
  overflow-y: auto;
}

.review-edit-list > div {
  color: #44575e;
  border-bottom: 1px solid #e8eeee;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 12px;
  padding: 8px 2px;
  font-size: 12px;
  display: grid;
}

.review-edit-list > div:last-child {
  border-bottom: 0;
}

.review-edit-list > div b {
  background: var(--teal-soft);
  height: 28px;
  color: var(--teal-dark);
  border-radius: 7px;
  place-items: center;
  display: grid;
}

.conversation-panel {
  background: #fcfdfd;
  order: -1;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-self: start;
  height: calc(100dvh - 116px);
  min-height: 480px;
  display: grid;
  position: relative;
}

.conversation-header {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 14px 20px;
  display: flex;
}

.conversation-header h2 {
  margin: 0;
  font-size: 17px;
}

.conversation-start.button {
  max-width: 370px;
  min-height: 42px;
  padding: 0 15px;
  font-size: 12px;
}

.conversation-live-status {
  align-items: center;
  gap: 14px;
  display: flex;
}

.conversation-wave {
  width: 52px;
  height: 32px;
  color: var(--teal);
  justify-content: center;
  align-items: center;
  gap: 3px;
  display: flex;
}

.conversation-wave span {
  opacity: .62;
  transform-origin: center;
  background: currentColor;
  border-radius: 4px;
  width: 3px;
  height: 13px;
  transform: scaleY(.55);
}

.conversation-wave span:nth-child(2), .conversation-wave span:nth-child(4) {
  height: 21px;
}

.conversation-wave span:nth-child(3) {
  height: 28px;
}

.conversation-wave.speaking span {
  animation: .72s ease-in-out infinite alternate conversation-wave-pulse;
}

.conversation-wave.speaking span:nth-child(2) {
  animation-delay: -.52s;
}

.conversation-wave.speaking span:nth-child(3) {
  animation-delay: -.21s;
}

.conversation-wave.speaking span:nth-child(4) {
  animation-delay: -.63s;
}

.conversation-wave.speaking span:nth-child(5) {
  animation-delay: -.34s;
}

@keyframes conversation-wave-pulse {
  from {
    opacity: .38;
    transform: scaleY(.4);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.connection-pill {
  color: #267453;
  text-transform: uppercase;
  background: #e5f4ed;
  border-radius: 99px;
  flex: 0 0 136px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 136px;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
}

.connection-pill i {
  background: currentColor;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.connection-pill.muted {
  color: #718087;
  background: #edf1f1;
}

.connection-pill.speaking {
  color: var(--blue);
  background: #e8f1f7;
}

.conversation-controls {
  border-top: 1px solid var(--line);
  background: #fff;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 75px;
  padding: 14px 20px 16px;
  display: grid;
}

.transcript {
  overflow-anchor: none;
  scrollbar-gutter: stable;
  min-height: 0;
  padding: 24px;
  overflow-y: auto;
}

.conversation-empty {
  height: 100%;
  min-height: 0;
  color: var(--muted);
  text-align: center;
  align-content: center;
  place-items: center;
  display: grid;
}

.conversation-empty p {
  max-width: 300px;
  font-size: 13px;
  line-height: 1.55;
}

.voice-visual {
  background: var(--teal-soft);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 94px;
  height: 94px;
  display: flex;
  box-shadow: 0 0 0 12px #e8f5f280;
}

.voice-visual span {
  background: var(--teal);
  opacity: .65;
  border-radius: 5px;
  width: 4px;
  height: 16px;
}

.voice-visual span:nth-child(2n) {
  height: 29px;
}

.voice-visual span:nth-child(4) {
  height: 42px;
}

.speaking span {
  animation: .8s ease-in-out infinite alternate voice-wave;
}

.speaking span:nth-child(2) {
  animation-delay: -.6s;
}

.speaking span:nth-child(3) {
  animation-delay: -.3s;
}

.speaking span:nth-child(4) {
  animation-delay: -.7s;
}

.speaking span:nth-child(5) {
  animation-delay: -.2s;
}

@keyframes voice-wave {
  to {
    opacity: .35;
    height: 8px;
  }
}

.transcript-message {
  grid-template-columns: 35px 1fr;
  gap: 9px;
  margin-bottom: 16px;
  display: grid;
}

.transcript-message > span {
  color: var(--teal-dark);
  text-transform: uppercase;
  padding-top: 10px;
  font-size: 9px;
  font-weight: 900;
}

.transcript-message p {
  color: #405158;
  white-space: pre-wrap;
  background: #fff;
  border: 1px solid #e0e8e8;
  border-radius: 4px 13px 13px;
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
}

.transcript-message.user {
  grid-template-columns: 1fr 35px;
}

.transcript-message.user > span {
  color: var(--blue);
  grid-area: 1 / 2;
}

.transcript-message.user p {
  background: var(--teal-soft);
  border-color: #f0c9d1;
  border-radius: 13px 4px 13px 13px;
  grid-area: 1 / 1;
  justify-self: end;
}

.conversation-error {
  z-index: 3;
  margin: 0;
  position: absolute;
  bottom: 88px;
  left: 20px;
  right: 20px;
  box-shadow: 0 8px 24px #531f1b1f;
}

.mic-icon {
  background: #fff;
  border: 3px solid #ffffff8c;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  display: inline-block;
}

.audio-controls {
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 43px;
  display: flex;
}

.microphone-toggle.button.small {
  place-items: center;
  width: 43px;
  min-width: 43px;
  height: 43px;
  min-height: 43px;
  padding: 0;
  display: grid;
}

.microphone-toggle svg {
  width: 21px;
  height: 21px;
  overflow: visible;
}

.microphone-toggle svg rect, .microphone-toggle svg path {
  stroke: currentColor;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.microphone-toggle.is-muted {
  color: #a13c34;
  background: #fff1f0;
  border-color: #e2b7b3;
}

.microphone-toggle .microphone-slash {
  stroke-width: 2.2px;
}

.message-composer {
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
  min-width: 0;
  display: grid;
}

.message-composer input {
  height: 43px;
  padding: 0 13px;
  font-size: 13px;
}

.message-composer button {
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  font-size: 20px;
}

.message-composer button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.review-layout {
  grid-template-columns: 300px 1fr;
  align-items: start;
  gap: 20px;
  display: grid;
}

.review-summary {
  padding: 27px;
  position: sticky;
  top: 98px;
}

.review-summary h1 {
  letter-spacing: -.04em;
  margin: 0;
  font-size: 28px;
}

.review-summary > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
}

.score-ring.large {
  border-width: 9px;
  width: 126px;
  height: 126px;
  margin: 30px auto;
  padding-top: 38px;
}

.score-ring.large strong {
  font-size: 35px;
}

.score-ring.large span {
  font-size: 14px;
}

.review-summary .status {
  margin: 0 auto;
}

.review-answers, .historical-transcript {
  padding: 24px;
}

.answer-grid {
  margin-top: 18px;
  display: grid;
}

.review-answer {
  border-top: 1px solid #e8eeee;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  display: grid;
}

.review-answer > span {
  color: #9aa8ad;
  font-size: 10px;
  font-weight: 800;
}

.review-answer div {
  gap: 4px;
  display: grid;
}

.review-answer strong {
  font-size: 13px;
}

.review-answer small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.review-answer > b {
  background: var(--teal-soft);
  width: 30px;
  height: 30px;
  color: var(--teal-dark);
  border-radius: 8px;
  place-items: center;
  display: grid;
}

.historical-transcript {
  grid-column: 2;
}

.historical-transcript .card-title-row {
  margin-bottom: 20px;
}

.policy-page {
  background: linear-gradient(140deg, #edf5f3, #f8faf9);
  min-height: 100vh;
  padding: 35px 24px 70px;
}

.policy-page nav {
  width: min(850px, 100%);
  margin: 0 auto 30px;
}

.policy-card {
  border: 1px solid var(--line);
  width: min(850px, 100%);
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 18px;
  margin: auto;
  padding: clamp(30px, 6vw, 70px);
}

.policy-card h1 {
  letter-spacing: -.05em;
  margin: 0;
  font-size: 46px;
}

.policy-updated {
  color: var(--muted);
  font-size: 12px;
}

.policy-placeholder {
  border-left: 3px solid var(--teal);
  color: #4c6066;
  background: #f2f8f7;
  margin: 40px 0;
  padding: 22px 25px;
  line-height: 1.65;
}

.policy-placeholder strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .login-page {
    grid-template-columns: 1fr;
  }

  .login-visual {
    min-height: 310px;
    padding: 30px;
  }

  .visual-copy {
    margin: auto 0 20px;
  }

  .visual-copy h2 {
    max-width: 600px;
    font-size: 40px;
  }

  .visual-copy > p:not(.eyebrow), .visual-orbit, .login-feature-list {
    display: none;
  }

  .login-panel {
    min-height: auto;
    padding: 55px 28px 70px;
  }

  .login-panel-content {
    gap: 32px;
  }

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

  .question-panel, .conversation-panel {
    min-height: auto;
  }

  .conversation-panel {
    height: 650px;
    min-height: 650px;
  }

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

  .review-summary {
    position: static;
  }

  .historical-transcript {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .login-visual {
    min-height: 265px;
    padding: 24px;
  }

  .medical-note {
    font-size: 9px;
  }

  .visual-copy h2 {
    font-size: 32px;
  }

  .app-header {
    height: 64px;
    padding: 0 17px;
  }

  .app-header .brand small, .user-name {
    display: none;
  }

  .header-navigation {
    gap: 8px;
  }

  .header-back {
    width: 36px;
    padding: 0;
  }

  .header-back-label {
    display: none;
  }

  .page-content {
    width: calc(100% - 24px);
    padding-top: 25px;
  }

  .dashboard-hero {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-hero .button {
    width: 100%;
  }

  .assessment-row {
    grid-template-columns: minmax(0, 1fr) 40px;
  }

  .assessment-row-link {
    grid-template-columns: 48px 1fr 60px;
    gap: 11px;
    padding: 13px 4px 13px 13px;
  }

  .assessment-row .status {
    display: none;
  }

  .score-block {
    font-size: 11px;
  }

  .question-panel {
    padding: 19px;
  }

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

  .answered-grid > div {
    height: 44px;
  }

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

  .conversation-start.button {
    width: 100%;
    max-width: none;
  }

  .conversation-controls {
    grid-template-columns: 1fr;
    min-height: 132px;
    padding: 12px 14px 14px;
  }

  .conversation-error {
    bottom: 145px;
    left: 14px;
    right: 14px;
  }
}

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

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/