@font-face {
  font-family: "ClinTalk Auth Inter";
  src: url(/static/fonts/Inter-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ClinTalk Auth Inter";
  src: url(/static/fonts/Inter-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-bg: #fafaf7;
  --color-surface: #ffffff;
  --color-surface-2: #f4f6f8;
  --color-border: #e5e7eb;
  --color-border-strong:#d0d7de;
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-text-subtle: #6b7280;
  --color-primary: #156082;
  --color-primary-hover:#0c7ba0;
  --color-primary-soft: #e8f0f5;
  --color-link: #075985;
  --color-accent: #b45309;
  --color-success: #166534;
  --color-success-bg: #dcfce7;
  --color-warning: #b45309;
  --color-warning-bg: #fef3c7;
  --color-danger: #991b1b;
  --color-danger-bg: #fee2e2;
  --color-brand-accent: #5fe0c8;
  --color-practice-started: #d19a34;
  --color-practice-done: #2c8a78;
  --color-practice-done-soft: #66ad9f;
  --font-sans:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif;
  --font-mono:
    ui-monospace,
    "SF Mono",
    "Menlo",
    Consolas,
    monospace;
  --font-serif:
    "Charter",
    "Georgia",
    "Times New Roman",
    serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.875rem;
  --lh-tight: 1.25;
  --lh-base: 1.5;
  --lh-relaxed:1.625;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(31,41,55,0.04);
  --shadow-sm: 0 1px 3px rgba(31,41,55,0.07), 0 1px 2px rgba(31,41,55,0.04);
  --shadow-md: 0 4px 8px rgba(31,41,55,0.08), 0 2px 4px rgba(31,41,55,0.04);
  --shadow-lg: 0 10px 20px rgba(31,41,55,0.10), 0 4px 8px rgba(31,41,55,0.06);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --t-fast: 120ms var(--ease-out);
  --t-base: 200ms var(--ease-out);
  --t-press: 160ms var(--ease-out);
  --z-dropdown: 50;
  --z-modal: 100;
  --z-toast: 200;
  --float-gutter-right: 0px;
  --float-gutter-bottom: 0px;
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
button {
  font: inherit;
  cursor: pointer;
}
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
a {
  color: var(--color-primary);
}
a:hover {
  color: var(--color-primary-hover);
}
body.official-exam-session #change-scenario-button,
body.official-exam-session #picker-change-scenario,
body.official-exam-session #coach-toggle,
body.official-exam-session #user-chip-results,
body.official-exam-session #header-help {
  display: none !important;
}
header {
  background: var(--color-primary);
  color: white;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  box-shadow: var(--shadow-sm);
}
.header-title {
  flex: 1;
  min-width: 0;
}
header h1 {
  margin: 0 0 2px 0;
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
}
#patient-info {
  font-size: var(--fs-sm);
  opacity: 0.92;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}
#session-timer {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  background: rgba(255, 255, 255, 0.12);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
}
.header-toggle-debug {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  cursor: pointer;
  user-select: none;
}
.header-toggle-debug input {
  margin: 0;
  cursor: pointer;
}
#settings-button {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: white;
  font-size: 20px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
#settings-button:hover {
  background: rgba(255, 255, 255, 0.24);
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.stage {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 4 / 3;
  background: #0E2841;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.debrief-start-overlay {
  position: absolute;
  inset: 0;
  z-index: 18;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 36px);
  background: rgba(5, 16, 27, .72);
  backdrop-filter: blur(10px);
  transition: opacity 180ms ease;
}
.debrief-start-overlay.is-leaving {
  opacity: 0;
  pointer-events: none;
}
.debrief-mentor-picker .debrief-start-card {
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100% - 24px);
  overflow-y: auto;
}
.debrief-mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 20px 0 8px;
}
.debrief-mentor-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(125, 211, 252, .28);
  border-radius: 16px;
  background: rgba(15, 39, 58, .9);
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.debrief-mentor-card:hover,
.debrief-mentor-card:focus-visible,
.debrief-mentor-card.active {
  border-color: #7dd3fc;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, .16);
}
.debrief-mentor-placeholder {
  display: grid;
  place-items: center;
  width: 72px;
  height: 88px;
  border-radius: 12px;
  background:
    linear-gradient(
      160deg,
      #1d5b78,
      #17334c);
  color: #e8f8ff;
  font-size: 28px;
  font-weight: 700;
}
.debrief-mentor-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}
.debrief-mentor-copy strong {
  font-size: 16px;
}
.debrief-mentor-copy small {
  color: #7dd3fc;
  font-weight: 600;
}
.debrief-mentor-copy > span {
  color: #b7cbd7;
  font-size: 13px;
  line-height: 1.35;
}
@media (max-width: 640px) {
  .debrief-mentor-grid {
    grid-template-columns: 1fr;
  }
  .debrief-mentor-card {
    min-height: 104px;
  }
}
.debrief-start-card {
  width: min(430px, 100%);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(125, 211, 252, .28);
  border-radius: 18px;
  background:
    linear-gradient(
      160deg,
      rgba(18, 42, 62, .96),
      rgba(8, 24, 38, .96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  color: #edf7fc;
  text-align: center;
}
.debrief-start-kicker {
  margin-bottom: 8px;
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.debrief-start-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(24px, 4vw, 32px);
  text-wrap: balance;
}
.debrief-start-card p {
  margin: 0 auto 20px;
  max-width: 36ch;
  color: #b8ccda;
  font-size: 14px;
  line-height: 1.5;
  text-wrap: pretty;
}
.debrief-start-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.debrief-start-modes .mode-chip {
  min-height: 44px;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #d9e8f1;
}
.debrief-start-modes .mode-chip.active {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, .18);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, .22);
}
.debrief-start-button {
  width: 100%;
  min-height: 48px;
  font-weight: 700;
}
@media (prefers-reduced-motion: reduce) {
  .debrief-start-overlay {
    transition: none;
  }
}
#avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.cabinet-stage {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.cabinet-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background: #e9f0ed;
  opacity: 0;
  transition: opacity 180ms ease;
}
.cabinet-stage.feedback-room-transition::after {
  opacity: 1;
}
.cabinet-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.cabinet-stage > canvas#avatar {
  position: relative;
  z-index: 2;
}
.cabinet-personal-layer {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}
.cabinet-wall-decor {
  left: 4%;
  top: 7%;
  width: 28%;
  height: 46%;
  z-index: 1;
}
.cabinet-fg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 3;
  pointer-events: none;
}
.cabinet-desk-decor {
  right: 4%;
  bottom: 2%;
  width: 24%;
  height: 45%;
  object-position: right bottom;
  z-index: 4;
}
.cabinet-nameplate {
  position: absolute;
  left: 3.5%;
  bottom: 16%;
  z-index: 5;
  min-width: 170px;
  max-width: 32%;
  padding: 9px 14px;
  color: #18272b;
  background:
    linear-gradient(
      135deg,
      #ecd39f,
      #bd904d);
  border: 1px solid rgba(67, 43, 13, .38);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(7, 24, 30, .28);
  pointer-events: none;
}
.cabinet-nameplate__prefix,
.cabinet-nameplate__name {
  display: block;
}
.cabinet-nameplate__prefix {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cabinet-nameplate__name {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cabinet-achievement {
  position: absolute;
  right: 3.5%;
  top: 5%;
  z-index: 6;
  width: min(260px, 31%);
  padding: 11px 13px;
  color: #16382a;
  background: rgba(235, 248, 239, .93);
  border: 1px solid rgba(39, 99, 72, .36);
  border-radius: 9px;
  box-shadow: 0 10px 25px rgba(17, 56, 42, .2);
  pointer-events: none;
}
.cabinet-achievement__issuer,
.cabinet-achievement__title,
.cabinet-achievement__level {
  display: block;
}
.cabinet-achievement__issuer {
  color: #276348;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cabinet-achievement__title {
  margin: 3px 0;
  font-size: 13px;
}
.cabinet-achievement__level {
  font-size: 11px;
}
.dialog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(
      to top,
      rgba(8, 18, 32, 0.95) 0%,
      rgba(8, 18, 32, 0.85) 50%,
      rgba(8, 18, 32, 0.6) 85%,
      rgba(8, 18, 32, 0) 100%);
  padding: var(--sp-7) var(--sp-5) var(--sp-4);
  pointer-events: auto;
  z-index: 1;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
#transcript {
  max-height: 110px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
#transcript::-webkit-scrollbar {
  width: 4px;
}
#transcript::-webkit-scrollbar-track {
  background: transparent;
}
#transcript::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.bubble {
  background: none;
  color: rgba(255, 255, 255, 0.96);
  padding: 0;
  border: none;
  border-radius: 0;
  max-width: 100%;
  line-height: 1.45;
  font-size: var(--fs-md);
  word-wrap: break-word;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 0 1px rgba(0, 0, 0, 0.5);
}
.bubble.patient::before {
  content: none;
}
.bubble-speaker {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.bubble.student {
  padding-left: var(--sp-6);
}
.bubble.student::before {
  content: "Врач: ";
  font-weight: 700;
  color: rgba(180, 220, 255, 1);
  letter-spacing: 0.01em;
}
.bubble.student.bubble--feedback::before {
  content: none;
}
.bubble--feedback .bubble-speaker {
  color: #9ed8cf;
}
.patient-feedback-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 12px;
  color: #f5fbfa;
  background: rgba(8, 42, 42, .9);
  border: 1px solid rgba(158, 216, 207, .38);
  border-radius: 14px;
}
.patient-feedback-bar[hidden] {
  display: none;
}
.patient-feedback-bar__identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.patient-feedback-bar__identity strong {
  font-size: 14px;
}
.patient-feedback-bar__eyebrow {
  color: #9ed8cf;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.patient-feedback-counter {
  padding: 6px 9px;
  color: #d8f0eb;
  background: rgba(158, 216, 207, .12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.patient-feedback-finish {
  min-height: 40px;
  padding: 8px 12px;
  color: #eaf7f4;
  background: transparent;
  border: 1px solid rgba(216, 240, 235, .5);
  border-radius: 10px;
  cursor: pointer;
}
.patient-feedback-finish:hover:not(:disabled) {
  background: rgba(216, 240, 235, .1);
}
.patient-feedback-finish:disabled {
  opacity: .5;
  cursor: not-allowed;
}
body.patient-feedback-active .dialog-overlay {
  background:
    linear-gradient(
      to top,
      rgba(5, 32, 34, .97) 0%,
      rgba(5, 32, 34, .86) 55%,
      rgba(5, 32, 34, .48) 86%,
      rgba(5, 32, 34, 0) 100%);
}
body.patient-feedback-active .cabinet-personal-layer,
body.patient-feedback-active .cabinet-nameplate,
body.patient-feedback-active .cabinet-achievement,
body.patient-feedback-active #case-file-toggle,
body.patient-feedback-active #case-file-panel,
body.patient-feedback-active #session-group,
body.patient-feedback-active #coach-bubble-host {
  display: none !important;
}
body.patient-feedback-active #status-bar {
  border-color: rgba(47, 143, 131, .65);
}
body.patient-feedback-active #status-bar .status-stages {
  display: none;
}
body.patient-feedback-active #text-input,
body.patient-feedback-active #text-input-send,
body.patient-feedback-active #ptt-button,
body.patient-feedback-active #continuous-button {
  border-color: #2f8f83;
}
.patient-feedback-transition {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 40px);
  background:
    radial-gradient(
      circle at 50% 34%,
      rgba(47, 143, 131, .22),
      transparent 44%),
    rgba(5, 27, 34, .94);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}
.patient-feedback-transition[hidden] {
  display: none;
}
.patient-feedback-transition.is-visible {
  opacity: 1;
  visibility: visible;
}
.patient-feedback-transition__card {
  width: min(520px, 100%);
  padding: clamp(30px, 6vw, 48px);
  color: #edf8f6;
  text-align: center;
  background:
    linear-gradient(
      160deg,
      rgba(12, 52, 55, .98),
      rgba(6, 31, 38, .98));
  border: 1px solid rgba(158, 216, 207, .32);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .46);
  transform: translateY(12px) scale(.985);
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1);
}
.patient-feedback-transition.is-visible .patient-feedback-transition__card {
  transform: none;
}
.patient-feedback-transition__mark {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border: 2px solid rgba(158, 216, 207, .28);
  border-top-color: #9ed8cf;
  border-radius: 50%;
  animation: patient-feedback-transition-spin .9s linear infinite;
}
.patient-feedback-transition__mark span {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: rgba(158, 216, 207, .14);
}
.patient-feedback-transition__kicker {
  margin: 0 0 9px;
  color: #9ed8cf;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.patient-feedback-transition h2 {
  margin: 0;
  color: #f5fbfa;
  font-size: clamp(23px, 4vw, 31px);
  line-height: 1.18;
}
.patient-feedback-transition h2 + p {
  max-width: 430px;
  margin: 14px auto 0;
  color: #c7deda;
  font-size: clamp(14px, 2.4vw, 17px);
  line-height: 1.55;
}
.patient-feedback-transition[data-kind=technical_failed] .patient-feedback-transition__mark,
.patient-feedback-transition[data-kind=insufficient_evidence] .patient-feedback-transition__mark {
  display: grid;
  place-items: center;
  border-color: rgba(245, 194, 107, .42);
  animation: none;
}
.patient-feedback-transition[data-kind=technical_failed] .patient-feedback-transition__mark::after {
  content: "!";
  color: #f5c26b;
  font-size: 28px;
  font-weight: 700;
}
.patient-feedback-transition[data-kind=insufficient_evidence] .patient-feedback-transition__mark::after {
  content: "i";
  color: #f5c26b;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 700;
}
.patient-feedback-transition[data-kind=technical_failed] .patient-feedback-transition__mark span,
.patient-feedback-transition[data-kind=insufficient_evidence] .patient-feedback-transition__mark span {
  display: none;
}
@keyframes patient-feedback-transition-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 720px) {
  .patient-feedback-bar {
    grid-template-columns: 1fr auto;
  }
  .patient-feedback-finish {
    grid-column: 1 / -1;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cabinet-stage::after {
    transition: none;
  }
  .patient-feedback-transition,
  .patient-feedback-transition__card {
    transition: none;
  }
  .patient-feedback-transition__mark {
    animation: none;
  }
}
.bubble.mentor::before {
  content: "Наставник: ";
  font-weight: 700;
  color: rgba(196, 181, 253, 1);
  letter-spacing: 0.01em;
}
.bubble.mentor.bubble--reconciled::before {
  color: rgba(251, 191, 36, 1);
}
.bubble.error {
  color: rgba(252, 165, 165, 1);
  font-size: var(--fs-sm);
}
html[lang=en] .bubble.mentor::before {
  content: "Mentor: ";
}
html[lang=tr] .bubble.mentor::before {
  content: "Mentor: ";
}
html[lang=kk] .bubble.mentor::before {
  content: "Тәлімгер: ";
}
html[lang=es] .bubble.mentor::before {
  content: "Mentor: ";
}
html[lang=en] .bubble.patient::before {
  content: "Patient: ";
}
html[lang=en] .bubble.student::before {
  content: "Doctor: ";
}
html[lang=tr] .bubble.patient::before {
  content: "Hasta: ";
}
html[lang=tr] .bubble.student::before {
  content: "Doktor: ";
}
html[lang=kk] .bubble.patient::before {
  content: "Науқас: ";
}
html[lang=kk] .bubble.student::before {
  content: "Дәрігер: ";
}
html[lang=es] .bubble.patient::before {
  content: "Paciente: ";
}
html[lang=es] .bubble.student::before {
  content: "Médico: ";
}
body:not(.admin-app):not(.studio) .stage.stage--compact {
  height: 100%;
  aspect-ratio: auto;
  min-height: 0;
}
@media (max-width: 640px) {
  body:not(.admin-app):not(.studio) .stage.stage--compact {
    height: 220px;
    aspect-ratio: auto;
  }
}
@media (max-width: 640px) {
  .stage--compact .dialog-overlay {
    padding: var(--sp-2) var(--sp-3);
  }
  .stage--compact .dialog-overlay #transcript {
    max-height: 42px;
  }
  .stage--compact .dialog-overlay #transcript .bubble {
    font-size: var(--fs-sm);
    line-height: 1.45;
    padding: 0;
  }
}
.control-bar {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.bubble-meta {
  display: none;
  font-size: var(--fs-xs);
  margin-top: var(--sp-2);
  opacity: 0.7;
  font-family: var(--font-mono);
}
.bubble-icon {
  font-size: var(--fs-xs);
  opacity: 0.6;
  margin-right: var(--sp-1);
}
body.debug .bubble-meta {
  display: block;
}
#controls {
  display: flex;
  gap: var(--sp-2);
}
#ptt-button,
#continuous-button,
#end-session-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#ptt-button[hidden],
#continuous-button[hidden],
#end-session-button[hidden] {
  display: none;
}
.btn-icon {
  flex: 0 0 auto;
}
#reset-button .btn-icon,
#change-scenario-button .btn-icon {
  vertical-align: -3px;
  margin-right: 6px;
}
#ptt-button .btn-icon--rec {
  display: none;
}
#ptt-button:active .btn-icon--idle,
#ptt-button.recording .btn-icon--idle {
  display: none;
}
#ptt-button:active .btn-icon--rec,
#ptt-button.recording .btn-icon--rec {
  display: block;
}
#continuous-button .btn-icon--listening,
#continuous-button .btn-icon--paused {
  display: none;
}
#continuous-button[data-state=listening] .btn-icon--idle,
#continuous-button[data-state=paused] .btn-icon--idle {
  display: none;
}
#continuous-button[data-state=listening] .btn-icon--listening,
#continuous-button[data-state=paused] .btn-icon--paused {
  display: block;
}
#ptt-button {
  flex: 1;
  background: var(--color-primary);
  color: white;
  border: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-lg);
  font-size: var(--fs-md);
  font-weight: 600;
  user-select: none;
  transition: background var(--t-fast), transform 50ms ease;
  min-height: 56px;
}
#ptt-button:hover:not(:disabled) {
  background: var(--color-primary-hover);
}
#ptt-button.recording {
  background: var(--color-danger);
  transform: scale(0.98);
}
#ptt-button:disabled {
  background: var(--color-border-strong);
  color: var(--color-text-muted);
  cursor: not-allowed;
}
.input-mode-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-align: center;
  cursor: pointer;
  text-decoration: underline;
  user-select: none;
  padding: var(--sp-1);
}
.input-mode-toggle:hover {
  color: var(--color-primary);
}
#text-input-container {
  display: none;
  flex-direction: column;
  gap: var(--sp-2);
}
body.text-input-mode #text-input-container {
  display: flex;
}
body.text-input-mode #controls {
  display: none;
}
body.text-input-mode .ptt-only {
  display: none;
}
#mentor-question-button:not([hidden]) {
  display: block;
  width: 100%;
  margin-top: var(--sp-2);
}
#text-input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-base);
  font-family: var(--font-sans);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  resize: vertical;
  min-height: 76px;
  background: var(--color-surface);
}
#text-input-send {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-base);
  font-weight: 600;
  align-self: flex-end;
}
#text-input-send:hover:not(:disabled) {
  background: var(--color-primary-hover);
}
#text-input-send:disabled {
  background: var(--color-border-strong);
  cursor: not-allowed;
}
#asr-hint {
  font-size: var(--fs-sm);
  color: var(--color-warning);
  text-align: center;
  padding: var(--sp-2);
  display: none;
}
#asr-hint.visible {
  display: block;
}
#asr-hint-action {
  margin-left: var(--sp-2);
}
#status-bar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--t-base);
}
#status-bar .status-text {
  color: #c0cfdc;
}
.status-stages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  flex-wrap: nowrap;
  font-size: var(--fs-xs);
  color: var(--color-text-subtle);
}
.status-stage {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-2);
  white-space: nowrap;
  opacity: 0.75;
  color: var(--color-text);
  transition:
    opacity var(--t-base),
    background var(--t-base),
    color var(--t-base);
}
.status-stage-icon {
  font-size: 13px;
}
.status-stage-label {
  font-size: 11px;
  font-weight: 500;
}
.status-arrow {
  font-size: 11px;
  color: var(--color-border-strong);
  opacity: 0.6;
  transition: color var(--t-base), opacity var(--t-base);
}
#status-bar[data-stage=asr] .status-arrow[data-arrow-id=mic-asr],
#status-bar[data-stage=cleanup] .status-arrow[data-arrow-id=mic-asr],
#status-bar[data-stage=llm] .status-arrow[data-arrow-id=mic-asr],
#status-bar[data-stage=llm] .status-arrow[data-arrow-id=asr-llm],
#status-bar[data-stage=tts] .status-arrow[data-arrow-id=mic-asr],
#status-bar[data-stage=tts] .status-arrow[data-arrow-id=asr-llm],
#status-bar[data-stage=tts] .status-arrow[data-arrow-id=llm-tts],
#status-bar[data-stage=speaking] .status-arrow[data-arrow-id=mic-asr],
#status-bar[data-stage=speaking] .status-arrow[data-arrow-id=asr-llm],
#status-bar[data-stage=speaking] .status-arrow[data-arrow-id=llm-tts] {
  color: var(--color-success);
  opacity: 1;
}
.status-stage.active {
  opacity: 1;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-weight: 600;
  animation: status-pulse 1.4s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.status-stage.done {
  opacity: 0.85;
  background: var(--color-success-bg);
  color: var(--color-success);
}
.status-stage.done::after,
#status-bar[data-stage=asr] .status-stage[data-stage-id=mic]::after,
#status-bar[data-stage=cleanup] .status-stage[data-stage-id=mic]::after,
#status-bar[data-stage=llm] .status-stage[data-stage-id=mic]::after,
#status-bar[data-stage=llm] .status-stage[data-stage-id=asr]::after,
#status-bar[data-stage=tts] .status-stage[data-stage-id=mic]::after,
#status-bar[data-stage=tts] .status-stage[data-stage-id=asr]::after,
#status-bar[data-stage=tts] .status-stage[data-stage-id=llm]::after,
#status-bar[data-stage=speaking] .status-stage[data-stage-id=mic]::after,
#status-bar[data-stage=speaking] .status-stage[data-stage-id=asr]::after,
#status-bar[data-stage=speaking] .status-stage[data-stage-id=llm]::after {
  content: " ✓";
  font-weight: 700;
  margin-left: 2px;
}
.status-progress-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.status-progress-label {
  font-size: var(--fs-xs);
  color: var(--color-text-subtle);
  min-width: 130px;
  text-align: right;
  transition: color var(--t-base);
}
#status-bar[data-stage=mic] .status-progress-label,
#status-bar[data-stage=asr] .status-progress-label,
#status-bar[data-stage=cleanup] .status-progress-label,
#status-bar[data-stage=llm] .status-progress-label,
#status-bar[data-stage=tts] .status-progress-label {
  color: var(--color-primary);
  font-weight: 500;
}
#status-bar[data-stage=speaking] .status-progress-label {
  color: var(--color-success);
  font-weight: 500;
}
#status-bar[data-stage=report] .status-progress-label {
  color: var(--color-warning);
  font-weight: 500;
}
#status-bar[data-stage=error] .status-progress-label {
  color: var(--color-danger);
  font-weight: 600;
}
.status-progress {
  flex: 1;
  height: 3px;
  background: var(--color-surface-2);
  border-radius: 2px;
  overflow: hidden;
}
.status-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.4s ease, background 0.3s ease;
}
#status-bar[data-stage=idle] .status-progress-fill {
  width: 0%;
  background: var(--color-border-strong);
}
#status-bar[data-stage=connecting] .status-progress-fill {
  width: 8%;
  background: var(--color-text-subtle);
}
#status-bar[data-stage=mic] .status-progress-fill {
  width: 12%;
  background: var(--color-danger);
}
#status-bar[data-stage=asr] .status-progress-fill {
  width: 30%;
  background: var(--color-primary);
}
#status-bar[data-stage=cleanup] .status-progress-fill {
  width: 45%;
  background: var(--color-primary);
}
#status-bar[data-stage=llm] .status-progress-fill {
  width: 65%;
  background: #6b46c1;
}
#status-bar[data-stage=tts] .status-progress-fill {
  width: 85%;
  background: #0F9ED5;
}
#status-bar[data-stage=speaking] .status-progress-fill {
  width: 100%;
  background: var(--color-success);
}
#status-bar[data-stage=report] .status-progress-fill {
  width: 60%;
  background: var(--color-warning);
  animation: status-shimmer 1.6s linear infinite;
}
#status-bar[data-stage=error] .status-progress-fill {
  width: 100%;
  background: var(--color-danger);
}
#status-bar[data-stage=mic] .status-stage[data-stage-id=mic],
#status-bar[data-stage=asr] .status-stage[data-stage-id=asr],
#status-bar[data-stage=cleanup] .status-stage[data-stage-id=asr],
#status-bar[data-stage=llm] .status-stage[data-stage-id=llm],
#status-bar[data-stage=tts] .status-stage[data-stage-id=tts],
#status-bar[data-stage=speaking] .status-stage[data-stage-id=tts] {
  opacity: 1;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-weight: 600;
  animation: status-pulse 1.4s ease-in-out infinite;
}
#status-bar[data-stage=asr] .status-stage[data-stage-id=mic],
#status-bar[data-stage=cleanup] .status-stage[data-stage-id=mic],
#status-bar[data-stage=llm] .status-stage[data-stage-id=mic],
#status-bar[data-stage=llm] .status-stage[data-stage-id=asr],
#status-bar[data-stage=tts] .status-stage[data-stage-id=mic],
#status-bar[data-stage=tts] .status-stage[data-stage-id=asr],
#status-bar[data-stage=tts] .status-stage[data-stage-id=llm],
#status-bar[data-stage=speaking] .status-stage[data-stage-id=mic],
#status-bar[data-stage=speaking] .status-stage[data-stage-id=asr],
#status-bar[data-stage=speaking] .status-stage[data-stage-id=llm] {
  opacity: 0.85;
  background: var(--color-success-bg);
  color: var(--color-success);
  animation: none;
}
@keyframes status-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
#status-bar[data-stage=error] {
  border-color: var(--color-danger);
}
#status-bar.report-mode .status-stages {
  display: none;
}
#status {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  text-align: center;
  min-height: 1.2em;
}
#status-bar[data-stage=error] #status {
  color: var(--color-danger);
}
#status-bar[data-stage=speaking] #status {
  color: var(--color-success);
}
@media (max-width: 600px) {
  .status-stage-label {
    display: none;
  }
  .status-stage {
    padding: 4px 6px;
  }
  .status-arrow {
    font-size: 10px;
  }
}
#timings {
  font-size: var(--fs-xs);
  color: var(--color-text-subtle);
  font-family: var(--font-mono);
  text-align: center;
}
body:not(.debug) #timings {
  display: none;
}
#report-summary {
  background: var(--color-success-bg);
  border-left: 4px solid var(--color-success);
  padding: var(--sp-4);
  border-radius: var(--radius-md);
  margin-top: var(--sp-2);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}
#report-summary[hidden] {
  display: none;
}
#report-summary .rubric-chip {
  background: rgba(255, 255, 255, 0.7);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--color-success);
}
#report-summary .rubric-chip b {
  font-size: var(--fs-base);
}
#report-summary a.open-report {
  margin-left: auto;
  background: var(--color-success);
  color: white;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-sm);
}
#report-summary a.open-report:hover {
  background: #14532d;
  color: white;
}
.report-progress {
  background: var(--color-primary-soft);
  border-left: 3px solid var(--color-primary);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--color-primary);
  margin-top: var(--sp-2);
}
footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-5) var(--sp-5) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
footer summary {
  cursor: pointer;
  user-select: none;
}
footer ul {
  padding-left: var(--sp-5);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 50, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  animation: fadeIn 150ms ease;
}
.modal-overlay[hidden] {
  display: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: slideUp 200ms ease;
}
@keyframes slideUp {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-card.confirm {
  max-width: 440px;
}
.mission-context-recovery-card {
  max-width: 560px;
  border-top: 4px solid var(--color-primary);
}
.mission-context-recovery-eyebrow {
  display: block;
  margin-bottom: var(--sp-1);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mission-context-recovery-note {
  padding: var(--sp-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}
.mission-context-recovery-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--color-border);
}
.modal-header h2 {
  margin: 0;
  font-size: var(--fs-lg);
  color: var(--color-primary);
  font-weight: 600;
}
.modal-header button.modal-close {
  background: none;
  border: none;
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-sm);
}
.modal-header button.modal-close:hover {
  background: var(--color-surface-2);
}
.modal-header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.modal-body {
  padding: var(--sp-4) var(--sp-5);
  overflow-y: auto;
  flex: 1;
}
.modal-body p {
  margin: 0 0 var(--sp-3) 0;
}
.modal-subhead {
  padding: var(--sp-3) var(--sp-5);
  border-bottom: 1px solid var(--color-border);
}
.uc-section {
  margin-bottom: var(--sp-4);
}
.uc-section:last-child {
  margin-bottom: 0;
}
.uc-section-title {
  margin: 0 0 var(--sp-2) 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-primary);
}
.uc-row {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-1) 0;
  font-size: var(--fs-sm);
}
.uc-label {
  color: var(--color-text-muted);
}
.uc-val {
  text-align: right;
}
.uc-list {
  margin: var(--sp-1) 0 0 0;
  padding-left: var(--sp-4);
  font-size: var(--fs-sm);
}
.uc-muted {
  color: var(--color-text-muted);
}
.uc-empty {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}
.uc-note {
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  margin-top: var(--sp-1);
}
.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface-2);
  gap: var(--sp-3);
}
.settings-section {
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border);
}
.settings-section:last-child {
  border-bottom: none;
}
.settings-section h3 {
  margin: 0 0 var(--sp-1) 0;
  font-size: var(--fs-sm);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.settings-section .section-desc {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-relaxed);
}
.field-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-3);
  align-items: center;
  margin-bottom: var(--sp-2);
}
.field-label {
  font-size: var(--fs-sm);
  color: var(--color-text);
}
.field-input input,
.field-input select {
  width: 100%;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  background: var(--color-surface);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field-input input:focus,
.field-input select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(21, 96, 130, 0.12);
}
.field-input input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.field-input select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.field-hint {
  grid-column: 2;
  font-size: var(--fs-xs);
  color: var(--color-text-subtle);
  margin-top: var(--sp-1);
}
#settings-status {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  flex: 1;
}
#settings-status.success {
  color: var(--color-success);
}
#settings-status.error {
  color: var(--color-danger);
}
.settings-group-header {
  margin: var(--sp-5) 0 var(--sp-3) 0;
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--color-primary);
}
.settings-group-header:first-child {
  margin-top: 0;
}
.settings-group-header h2 {
  margin: 0 0 var(--sp-1) 0;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.settings-group-header p {
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}
.section-footer {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  padding-top: var(--sp-2);
}
.btn-save-section {
  border: none;
  border-radius: var(--radius-sm);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  font-family: inherit;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--t-fast);
}
.btn-save-section:hover {
  opacity: 0.85;
}
.btn-save-section:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-test {
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  font-family: inherit;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.btn-test:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-test:disabled {
  opacity: 0.5;
  cursor: default;
}
.section-status {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-status.ok {
  color: var(--color-success);
}
.section-status.warn {
  color: var(--color-warning, #b45309);
}
.section-status.fail {
  color: var(--color-danger);
}
.section-status.testing {
  color: var(--color-text-muted);
  font-style: italic;
}
.btn-primary,
.btn-secondary,
.btn-danger {
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-press);
  min-height: 36px;
}
.btn-primary:active:not(:disabled),
.btn-secondary:active:not(:disabled),
.btn-danger:active:not(:disabled) {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--color-primary);
  color: white;
}
.btn-primary:hover:not(:disabled) {
  background: var(--color-primary-hover);
}
.btn-primary:disabled {
  background: var(--color-border-strong);
  color: var(--color-text-muted);
  cursor: not-allowed;
}
.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn-secondary:hover {
  background: var(--color-surface-2);
}
.btn-secondary.debrief-contextual-continue {
  width: 100%;
  min-height: 44px;
  margin-top: var(--sp-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: transparent;
  color: #c0cfdc;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: var(--lh-base);
  transition:
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast);
}
.btn-secondary.debrief-contextual-continue[hidden] {
  display: none;
}
.btn-secondary.debrief-contextual-continue:hover:not(:disabled) {
  background: var(--color-surface-2);
  color: var(--color-text);
}
.btn-secondary.debrief-contextual-continue:focus-visible {
  outline: 2px solid var(--color-primary-hover);
  outline-offset: 2px;
}
.btn-secondary.debrief-contextual-continue:disabled {
  background: var(--color-surface-2);
  border-color: var(--color-border);
  color: var(--color-text-subtle);
  cursor: not-allowed;
  opacity: 0.72;
}
.btn-danger {
  background: var(--color-danger);
  color: white;
}
.btn-danger:hover:not(:disabled) {
  background: #7f1d1d;
}
.avatar-library {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.avatar-chip {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-xs);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--t-fast);
  font-family: inherit;
}
.avatar-chip.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.avatar-chip:hover:not(.active) {
  background: var(--color-primary-soft);
}
.avatar-upload-btn {
  display: inline-block;
  font-size: var(--fs-xs);
  padding: var(--sp-2) var(--sp-3);
  background: var(--color-surface);
  border: 1px dashed var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.avatar-upload-btn input {
  display: none;
}
.picker-grid,
.picker-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-2);
}
@media (max-width: 600px) {
  .picker-grid,
  .picker-section-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
}
.picker-loading,
.picker-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--sp-7);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}
.picker-grid:has(.picker-section) {
  display: block;
}
.picker-section + .picker-section {
  margin-top: var(--sp-6);
}
.picker-section-title {
  font-size: var(--fs-md, 1rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--sp-3) 0;
}
.picker-card--locked .picker-locked-thumb {
  font-size: 48px;
  background:
    linear-gradient(
      135deg,
      #3f3f46 0%,
      #18181b 100%);
}
.picker-locked-count {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-top: 4px;
}
.picker-locked-price {
  font-weight: 600;
  color: var(--color-primary);
}
.picker-active-banner {
  background:
    linear-gradient(
      135deg,
      #fffbeb 0%,
      #fef3c7 100%);
  border: 1px solid #fcd34d;
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  margin: 0 0 var(--sp-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.picker-active-banner[hidden] {
  display: none;
}
.picker-active-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 240px;
  min-width: 0;
}
.picker-active-text strong {
  font-size: var(--fs-md);
  color: #92400e;
}
.picker-active-text span {
  font-size: var(--fs-xs);
  color: #78350f;
}
.picker-active-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.picker-active-actions .btn-primary {
  background: var(--color-success);
  border-color: var(--color-success);
}
.picker-active-actions .btn-primary:hover {
  background: var(--color-success-hover, #1f6e3a);
}
.picker-language-bar {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  margin: 0 0 var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.picker-language-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #0c4a6e;
}
.picker-language-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.picker-language-options .lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1.5px solid #bae6fd;
  border-radius: 999px;
  background: white;
  cursor: pointer;
  font-size: var(--fs-sm);
  transition:
    background 150ms var(--ease-out),
    border-color 150ms var(--ease-out),
    color 150ms var(--ease-out);
  user-select: none;
}
.picker-language-options .lang-chip:hover {
  border-color: #0284c7;
  background: #f0f9ff;
}
.picker-language-options .lang-chip.active {
  background: #0284c7;
  border-color: #0284c7;
  color: white;
  font-weight: 600;
}
.picker-language-options .lang-chip input {
  display: none;
}
.picker-language-options .lang-chip .flag {
  font-size: 18px;
}
.picker-language-help {
  font-size: var(--fs-xs);
  color: #075985;
  line-height: 1.4;
}
.picker-mode-bar {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  margin: 0 0 var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.picker-mode-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #78350f;
}
.picker-mode-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.picker-mode-options .mode-chip {
  padding: 6px 14px;
  border: 1.5px solid #fde68a;
  border-radius: 999px;
  background: white;
  cursor: pointer;
  font-size: var(--fs-sm);
  transition:
    background 150ms var(--ease-out),
    border-color 150ms var(--ease-out),
    color 150ms var(--ease-out),
    opacity 150ms var(--ease-out);
  user-select: none;
}
.picker-mode-options .mode-chip:hover {
  border-color: #d97706;
  background: #fffbeb;
}
.picker-mode-options .mode-chip.active {
  background: #d97706;
  border-color: #d97706;
  color: white;
  font-weight: 600;
}
.picker-mode-options .mode-chip:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: white;
}
.picker-mode-options .mode-chip.active:disabled {
  background: #d97706;
  border-color: #d97706;
  color: white;
  opacity: 0.7;
  cursor: not-allowed;
}
.picker-mode-help {
  font-size: var(--fs-xs);
  color: #78350f;
  line-height: 1.4;
}
.picker-filters {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-3);
  margin-bottom: var(--sp-3);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
}
.picker-search {
  width: 100%;
  padding: 10px 14px;
  font-size: var(--fs-sm);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: white;
}
.picker-search:focus {
  outline: none;
  border-color: #156082;
  box-shadow: 0 0 0 3px rgba(21, 96, 130, 0.15);
}
.picker-search:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.picker-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
}
.picker-filter-label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  font-weight: 600;
  min-width: 110px;
}
.picker-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.picker-chip {
  padding: 6px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: white;
  font-size: var(--fs-xs);
  cursor: pointer;
  transition: background 100ms ease, border-color 100ms ease;
}
.picker-chip:hover {
  background: #f1f5f9;
}
.picker-chip.active {
  background: #156082;
  border-color: #156082;
  color: white;
}
.picker-filter-stats {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  justify-content: space-between;
}
.picker-stats-text {
  font-style: italic;
}
.picker-link-btn {
  background: none;
  border: none;
  color: #156082;
  font-size: var(--fs-xs);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.picker-link-btn:hover {
  color: #0f4566;
}
.picker-card .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.picker-card .pill {
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  white-space: nowrap;
}
.picker-card .pill.cat {
  background: #fef3c7;
  color: #78350f;
  font-weight: 600;
}
.picker-card .pill.spec {
  background: #dbeafe;
  color: #1e40af;
}
.picker-card .pill.kw {
  background: #f1f5f9;
  color: #475569;
}
.picker-card .pill.kw mark {
  background: #fde047;
  color: inherit;
  padding: 0 1px;
}
.picker-card .picker-badge-relevant {
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-primary) 14%, white);
  color: var(--color-primary);
  white-space: nowrap;
}
.picker-card {
  cursor: pointer;
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 0;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fafaf7 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 8px rgba(15, 23, 42, 0.06),
    0 8px 16px rgba(15, 23, 42, 0.04);
  transition:
    transform 200ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 150ms ease;
}
.picker-card:focus-visible {
  outline: 3px solid rgba(21, 96, 130, 0.28);
  outline: 3px solid color-mix(in srgb, var(--color-primary) 36%, transparent);
  outline-offset: 3px;
  border-color: var(--color-primary);
}
.picker-card--practice-started {
  border-left: 3px solid var(--color-practice-started);
}
.picker-card--practice-completed {
  border-left: 3px solid var(--color-practice-done);
}
.picker-card--practice-completed::before {
  background:
    linear-gradient(
      90deg,
      var(--color-practice-done),
      var(--color-practice-done-soft));
  opacity: 0.6;
}
.picker-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      var(--color-primary),
      var(--color-primary-hover));
  opacity: 0;
  transition: opacity 200ms ease;
}
.picker-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--color-primary);
  box-shadow:
    0 2px 4px rgba(21, 96, 130, 0.08),
    0 8px 16px rgba(21, 96, 130, 0.10),
    0 16px 32px rgba(21, 96, 130, 0.10),
    0 24px 48px rgba(21, 96, 130, 0.08);
}
.picker-card:hover::before {
  opacity: 1;
}
.picker-card:active {
  transform: translateY(-2px) scale(0.998);
}
@media (max-width: 600px) {
  .picker-card {
    grid-template-columns: 100px 1fr;
  }
}
.picker-card .thumb-wrap {
  position: relative;
  width: 168px;
  height: 100%;
  min-height: 200px;
  background:
    linear-gradient(
      135deg,
      #0E2841 0%,
      #156082 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 48px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .picker-card .thumb-wrap {
    width: 100px;
    min-height: 160px;
    font-size: 36px;
  }
}
.picker-card .thumb-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(0, 0, 0, 0.08),
      transparent);
}
.picker-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.picker-card .info {
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  min-width: 0;
}
@media (max-width: 600px) {
  .picker-card .info {
    padding: var(--sp-3);
  }
}
.picker-card .info .head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-2);
}
.picker-card .info .name {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.picker-card .info .age {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  white-space: nowrap;
  background: var(--color-surface-2);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.picker-card .info .occupation {
  font-size: var(--fs-xs);
  color: var(--color-text-subtle);
  margin-top: -4px;
}
.picker-practice {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin-top: -2px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.picker-practice-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-weight: 700;
}
.picker-card--practice-started .picker-practice-status {
  border-color: #e6c37c;
  background: #fff8e8;
  color: #7c5714;
}
.picker-card--practice-completed .picker-practice-status {
  border-color: #9bcfc4;
  background: #edf9f6;
  color: #176758;
}
.picker-practice-score {
  color: var(--color-text);
  font-weight: 600;
}
.picker-card .info .chief {
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: 1.4;
  padding: var(--sp-2) var(--sp-3);
  background: var(--color-primary-soft);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
}
.picker-card .info .chief b {
  color: var(--color-primary);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}
.picker-card .info .meta {
  display: flex;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--color-border);
  font-size: 11px;
  color: var(--color-text-subtle);
  align-items: center;
}
.picker-card .info .start-cue {
  margin-left: auto;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--fs-xs);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
  transform: translateX(-4px);
}
.picker-card:hover .info .start-cue {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 900px) {
  main {
    padding: var(--sp-3);
    gap: var(--sp-3);
  }
  .stage {
    max-width: 100%;
  }
  #transcript {
    max-height: 90px;
  }
  .bubble {
    font-size: var(--fs-base);
  }
}
@media (max-width: 600px) {
  header {
    padding: var(--sp-3) var(--sp-4);
  }
  header h1 {
    font-size: var(--fs-base);
  }
  #patient-info {
    font-size: var(--fs-xs);
  }
  #session-timer {
    font-size: var(--fs-xs);
    padding: var(--sp-1) var(--sp-2);
  }
  .header-toggle-debug {
    display: none;
  }
  #settings-button {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .stage {
    aspect-ratio: 3 / 4;
  }
  .dialog-overlay {
    padding: var(--sp-5) var(--sp-3) var(--sp-3);
  }
  #transcript {
    max-height: 80px;
  }
  .bubble {
    font-size: var(--fs-sm);
  }
  #ptt-button {
    font-size: var(--fs-base);
    min-height: 64px;
  }
  .bubble {
    max-width: 92%;
    font-size: var(--fs-sm);
  }
  .modal-overlay {
    padding: var(--sp-2);
  }
  .modal-card {
    max-height: 95vh;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: var(--sp-1);
  }
  .field-hint {
    grid-column: 1;
  }
}
.login-card {
  width: min(100%, 460px);
  max-width: 460px;
  height: auto;
  max-height: calc(100dvh - 32px);
  animation: none;
}
#login-modal {
  padding: 16px;
  animation: none;
}
#login-modal #login-authenticated-close {
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  flex: 0 0 44px;
}
#login-modal #login-authenticated-close[hidden] {
  display: none;
}
#login-modal #login-authenticated-close:not([hidden]) {
  display: inline-flex;
}
#login-modal[data-authenticated-return=true] .modal-header {
  padding-block: var(--sp-2);
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin: 0 0 var(--sp-4);
  padding: 3px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt, #f3f6f8);
}
.auth-tab {
  min-height: 44px;
  padding: 4px var(--sp-2);
  border: 0;
  border-radius: calc(var(--radius-md) - 3px);
  background: transparent;
  color: var(--color-text-muted);
  font: 600 var(--fs-sm)/1.2 var(--font-sans);
  cursor: pointer;
}
.auth-tab.is-active {
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: 0 1px 3px rgba(15, 30, 50, .12);
}
.auth-tab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.login-state-title {
  margin: 0 0 var(--sp-2);
  color: var(--color-text);
  font-size: var(--fs-lg);
  line-height: var(--lh-tight);
  text-wrap: balance;
}
.login-intro {
  margin: 0 0 var(--sp-3) 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}
.login-field {
  display: block;
  margin-bottom: var(--sp-3);
}
.login-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--sp-1);
}
.login-field input {
  width: 100%;
  padding: var(--sp-3);
  font-size: var(--fs-base);
  font-family: var(--font-sans);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.login-field input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(21, 96, 130, 0.12);
}
.login-field input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
#login-submit,
#login-password-submit,
#login-password-recovery-submit {
  width: 100%;
  min-height: 44px;
  padding: var(--sp-3);
  font-size: var(--fs-base);
  margin-top: var(--sp-2);
}
.landing-login--pop .auth-tabs {
  margin: 14px 16px 0;
}
.landing-login--pop #land-login-password-panel .login-intro {
  margin: 0;
  padding: 0 4px;
}
.login-error {
  background: var(--color-danger-bg);
  color: var(--color-danger);
  border-left: 3px solid var(--color-danger);
  border-radius: var(--radius-sm);
  padding: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-sm);
}
.login-success {
  background: var(--color-success-bg);
  color: var(--color-success);
  border-left: 3px solid var(--color-success);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
}
.login-success h3 {
  margin: 0 0 var(--sp-2) 0;
  color: var(--color-success);
  font-size: var(--fs-md);
}
.login-success p {
  margin: 0 0 var(--sp-2) 0;
}
.login-success .login-tip {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: var(--sp-2);
}
.login-link {
  background: none;
  border: none;
  color: var(--color-primary);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.login-link:hover {
  color: var(--color-primary-hover);
}
#login-modal .login-error,
#land-login .login-error {
  border: 1px solid #fecaca;
}
#login-modal .login-success,
#land-login .login-success {
  background: #f0fdf4;
  color: #14532d;
  border: 1px solid #bbf7d0;
  padding: var(--sp-3);
  text-align: left;
}
#login-modal .login-success h3,
#land-login .login-success h3 {
  margin: 0 0 var(--sp-1) 0;
  color: #14532d;
  font-size: var(--fs-base);
}
#login-modal .login-success p,
#land-login .login-success p {
  margin: 0 0 var(--sp-1) 0;
}
#login-modal .login-link,
#land-login .login-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-link);
  text-underline-offset: 2px;
  padding: 6px 0;
  font-weight: 600;
}
#login-modal .login-link:hover,
#land-login .login-link:hover {
  color: #0c4a6e;
}
#login-modal .login-link:focus-visible,
#land-login .login-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.login-code-form {
  display: grid;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.login-code-hint {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
}
.login-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--sp-2);
  align-items: center;
}
.login-code-input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 9px 10px 9px calc(10px + .45em);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  font-variant-numeric: tabular-nums;
  letter-spacing: .45em;
  text-align: center;
}
.login-code-input::placeholder {
  color: #64748b;
  opacity: 1;
}
.login-code-input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.login-code-row .btn-primary {
  min-height: 44px;
}
@media (max-width: 420px) {
  .login-code-row {
    grid-template-columns: 1fr;
  }
  .login-code-row .btn-primary {
    width: 100%;
  }
}
#user-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: none;
  padding: 0;
  font-size: var(--fs-xs);
  max-width: 320px;
}
.user-chip-email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#user-chip-logout {
  background: rgba(0, 0, 0, 0.18);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
#user-chip-logout:hover {
  background: rgba(0, 0, 0, 0.32);
}
@media (max-width: 600px) {
  #user-chip {
    max-width: 130px;
  }
}
.briefing-card {
  max-width: 640px;
}
.briefing-icon {
  display: inline-block;
  margin-right: var(--sp-1);
  font-size: 22px;
}
.briefing-intro {
  margin: 0 0 var(--sp-4) 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}
.briefing-patient {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-3);
  align-items: center;
  margin-bottom: var(--sp-4);
  padding: var(--sp-3);
  background:
    linear-gradient(
      135deg,
      var(--color-surface-2) 0%,
      #ffffff 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.briefing-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(
      135deg,
      #0E2841 0%,
      var(--color-primary) 100%);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  overflow: hidden;
  flex-shrink: 0;
}
.briefing-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.briefing-name {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.briefing-meta {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.briefing-occupation {
  font-size: var(--fs-xs);
  color: var(--color-text-subtle);
  margin-top: 4px;
}
.briefing-section {
  padding: var(--sp-3);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-3);
}
.briefing-section-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: var(--sp-1);
}
.briefing-complaint {
  background: var(--color-primary-soft);
  border-left: 3px solid var(--color-primary);
}
.briefing-complaint .briefing-section-label {
  color: var(--color-primary);
}
.briefing-task {
  background: var(--color-warning-bg);
  border-left: 3px solid var(--color-warning);
}
.briefing-task .briefing-section-label {
  color: var(--color-warning);
}
.briefing-task ul {
  margin: 0;
  padding-left: var(--sp-5);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}
.briefing-task li {
  margin: 2px 0;
}
.briefing-tip {
  margin: var(--sp-3) 0 0 0;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border-radius: var(--radius-sm);
  line-height: var(--lh-relaxed);
}
@media (max-width: 520px) {
  .briefing-patient {
    grid-template-columns: 60px 1fr;
  }
  .briefing-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .briefing-name {
    font-size: var(--fs-base);
  }
}
.debrief-fieldset {
  margin: 0 0 var(--sp-4) 0;
  padding: var(--sp-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
}
.debrief-fieldset legend {
  padding: 0 var(--sp-2);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--color-text);
}
.confidence-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.conf-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--sp-2);
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast);
  user-select: none;
}
.conf-option:hover {
  background: var(--color-primary-soft);
}
.conf-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.conf-option:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
  box-shadow: 0 0 0 2px rgba(21, 96, 130, 0.18);
  transform: translateY(-1px);
}
.conf-option:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.conf-option .conf-emoji {
  font-size: 24px;
  line-height: 1;
}
.conf-option .conf-text {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
}
@media (max-width: 520px) {
  .confidence-scale {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }
  .conf-option {
    padding: 6px 2px;
  }
  .conf-option .conf-emoji {
    font-size: 20px;
  }
  .conf-option .conf-text {
    font-size: 10px;
  }
}
.focus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.focus-chip-input {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.focus-chip-input input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.focus-chip-input span {
  display: inline-block;
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: var(--fs-xs);
  color: var(--color-text);
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast);
}
.focus-chip-input:hover span {
  background: var(--color-primary-soft);
}
.focus-chip-input input:checked + span {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  font-weight: 600;
}
.debrief-bubble.mentor.debrief-bubble--reconciled {
  border-left: 3px solid #f59e0b;
}
#report-view {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
}
#report-view[hidden] {
  display: none;
}
.report-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-4);
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.report-toolbar .report-toolbar-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  flex: 1;
  text-align: center;
  opacity: 0.9;
}
.report-toolbar .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}
.report-toolbar .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.26);
}
.report-toolbar .btn-primary {
  background: white;
  color: var(--color-primary);
}
.report-toolbar .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}
.report-toolbar-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.btn-results {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill, 999px);
  background: var(--color-accent, #f59e0b);
  color: #fff;
  font-size: var(--fs-sm, 14px);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    background 150ms ease,
    transform 100ms ease,
    box-shadow 150ms ease;
  white-space: nowrap;
}
.btn-results[hidden] {
  display: none;
}
.btn-results:hover {
  background: var(--color-accent-hover, #d97706);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
}
.btn-results:active {
  transform: translateY(0);
}
.btn-results:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.report-toolbar .btn-results {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
header .btn-results {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  font-weight: 600;
  box-shadow: none;
}
header .btn-results:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: none;
  box-shadow: none;
}
#report-iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  background: white;
}
@media print {
  body > *:not(#report-view) {
    display: none !important;
  }
  #report-view {
    position: static;
  }
  .report-toolbar {
    display: none !important;
  }
  #report-iframe {
    height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-property:
      opacity,
      color,
      background-color,
      border-color,
      box-shadow,
      fill,
      stroke !important;
    transition-duration: 150ms !important;
  }
}
.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;
}
body.session-active:not(.admin-app):not(.studio) {
  --float-gutter-right: 380px;
}
body:not(.admin-app):not(.studio) main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 0;
  padding: 0;
  max-width: none;
  align-items: stretch;
  height: calc(100vh - 64px);
}
body:not(.admin-app):not(.studio) .stage {
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}
body:not(.admin-app):not(.studio) .control-bar {
  background: #0e1822;
  color: #e0e8f0;
  border-left: 1px solid #2a3444;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  margin: 0;
}
body:not(.admin-app):not(.studio) #status-bar {
  background: #1a2332;
  border: 1px solid #2a3444;
  border-radius: 10px;
  padding: 12px 14px;
  color: #c0cfdc;
  gap: 8px;
}
body:not(.admin-app):not(.studio) .status-stages {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  color: #8496a8;
}
body:not(.admin-app):not(.studio) .status-stage {
  width: 9px;
  height: 9px;
  padding: 0;
  gap: 0;
  border-radius: 50%;
  background: #2a3444;
  border: none;
  overflow: hidden;
  flex: 0 0 auto;
  white-space: normal;
}
body:not(.admin-app):not(.studio) .status-stage-icon,
body:not(.admin-app):not(.studio) .status-stage-label {
  display: none;
}
body:not(.admin-app):not(.studio) .status-arrow {
  display: none;
}
body:not(.admin-app):not(.studio) .status-text {
  color: #c0cfdc;
  margin-top: 2px;
  padding-top: 0;
  border-top: none;
  font-size: 12.5px;
}
body:not(.admin-app):not(.studio) .status-progress-label {
  display: none;
}
body:not(.admin-app):not(.studio) .status-progress {
  background: #243245;
  margin-top: 0;
}
body:not(.admin-app):not(.studio) #controls {
  flex-direction: column;
  gap: 8px;
}
body:not(.admin-app):not(.studio) #ptt-button {
  background: #2563eb;
  color: #fff;
  border: none;
  font-size: 14px;
  padding: 14px;
  width: 100%;
  border-radius: 10px;
}
body:not(.admin-app):not(.studio) #ptt-button:hover:not(:disabled) {
  background: #1e4fc7;
}
body:not(.admin-app):not(.studio) #ptt-button.recording {
  background: #dc2626;
}
body:not(.admin-app):not(.studio) #text-input {
  background: #1a2332;
  color: #e0e8f0;
  border: 1px solid #2a3444;
  border-radius: 10px;
  font-size: 13px;
  min-height: 76px;
}
body:not(.admin-app):not(.studio) #text-input::placeholder {
  color: #8496a8;
}
body:not(.admin-app):not(.studio) #text-input-send {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
}
body:not(.admin-app):not(.studio) #text-input-send:hover {
  background: #1e4fc7;
}
body:not(.admin-app):not(.studio) .input-mode-toggle {
  color: #9fb3c8;
  font-size: 12px;
  min-height: 44px;
  text-decoration: none;
  border-top: 1px dashed #2a3444;
  padding-top: 10px;
}
body:not(.admin-app):not(.studio) .input-mode-toggle:hover {
  color: #4a90e2;
}
body:not(.admin-app):not(.studio) #asr-hint {
  color: #f59e0b;
  font-size: 12px;
}
body:not(.admin-app):not(.studio) #timings {
  color: #8496a8;
  font-size: 11px;
  font-family: var(--font-mono);
}
body:not(.admin-app):not(.studio) #report-summary {
  background: #1a3a2a;
  color: #a0e0c0;
  border: 1px solid #2a5a3a;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
}
body:not(.admin-app):not(.studio) #session-group {
  margin-top: auto;
  border: 1px solid #2a3444;
  border-radius: 10px;
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #0b131c;
}
body:not(.admin-app):not(.studio) .session-group-label {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8496a8;
}
body:not(.admin-app):not(.studio) .session-group-row {
  display: flex;
  gap: 8px;
}
body:not(.admin-app):not(.studio) .session-group-row > button {
  flex: 1;
  background: #1a2332;
  border: 1px solid #2a3444;
  color: #c0cfdc;
  border-radius: 9px;
  padding: 9px;
  font-size: 13px;
  cursor: pointer;
}
body:not(.admin-app):not(.studio) .session-group-row > button:hover {
  background: #243245;
}
body:not(.admin-app):not(.studio) .session-group-row > button:disabled {
  opacity: .55;
  cursor: not-allowed;
}
body:not(.admin-app):not(.studio) #session-group .session-end-btn {
  width: 100%;
  background: #16361f;
  border: 1px solid #2f6b3f;
  color: #9be7b4;
  border-radius: 9px;
  padding: 11px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
body:not(.admin-app):not(.studio) #session-group .session-end-btn:hover {
  background: #1c4527;
  color: #b6f0c8;
}
body:not(.admin-app):not(.studio) #session-group .session-end-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}
body:not(.admin-app):not(.studio) #case-file-toggle {
  width: 100%;
  align-items: center;
  gap: 8px;
  text-align: left;
  background: #1a2332;
  border: 1px solid #2a3444;
  color: #c0cfdc;
  border-radius: 9px;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
body:not(.admin-app):not(.studio) #case-file-toggle:not([hidden]) {
  display: flex;
}
body:not(.admin-app):not(.studio) #case-file-toggle:hover {
  background: #243245;
}
body:not(.admin-app):not(.studio) #case-file-toggle .case-file-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
body:not(.admin-app):not(.studio) #case-file-toggle .case-file-count {
  margin-left: auto;
  background: #7cc4dd;
  color: #0b131c;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  padding: 2px 6px;
  min-width: 8px;
  text-align: center;
}
body:not(.admin-app):not(.studio) #case-file-toggle .case-file-chevron {
  color: #8496a8;
  font-size: 11px;
  transition: transform .15s ease;
}
body:not(.admin-app):not(.studio) #case-file-toggle[aria-expanded=true] .case-file-chevron {
  transform: rotate(180deg);
}
body:not(.admin-app):not(.studio) #case-file-toggle:focus-visible {
  outline: 2px solid #7cc4dd;
  outline-offset: 2px;
}
body:not(.admin-app):not(.studio) #case-file-panel.case-file {
  margin-top: 8px;
  border: 1px solid #2a3444;
  border-radius: 10px;
  background: #0b131c;
  padding: 11px;
  max-height: 38vh;
  overflow-y: auto;
  font-size: 12.5px;
  line-height: 1.5;
  color: #c0cfdc;
}
body:not(.admin-app):not(.studio) #case-file-panel .case-file-title {
  display: none;
}
body:not(.admin-app):not(.studio) #case-file-panel .case-file-section {
  margin-top: 10px;
}
body:not(.admin-app):not(.studio) #case-file-panel .case-file-section:first-of-type {
  margin-top: 0;
}
body:not(.admin-app):not(.studio) #case-file-panel .case-file-label {
  font-size: 11px;
  font-weight: 600;
  color: #7cc4dd;
  margin-bottom: 2px;
}
body:not(.admin-app):not(.studio) #case-file-panel .case-file-text {
  white-space: pre-wrap;
  color: #c0cfdc;
}
@media (max-width: 900px) {
  body:not(.admin-app):not(.studio) #case-file-toggle {
    min-height: 44px;
  }
}
body:not(.admin-app):not(.studio) .mentor-synthesis {
  margin-top: 8px;
  border: 1px solid #2a3444;
  border-radius: 10px;
  background: #0b131c;
  padding: 11px;
  max-height: 42vh;
  overflow-y: auto;
  font-size: 12.5px;
  line-height: 1.5;
  color: #c0cfdc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body:not(.admin-app):not(.studio) .mentor-synthesis[hidden] {
  display: none;
}
.mentor-synthesis__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
}
.mentor-synthesis__strength,
.mentor-synthesis__priority {
  border: 1px solid #2a3444;
  border-radius: 8px;
  padding: 8px 10px;
  background: #121c29;
  transition: border-color .15s ease, background .15s ease;
}
.mentor-synthesis__group[data-active=true] {
  border: 1px solid #7cc4dd;
  background: #16283a;
  padding: 8px;
}
.mentor-synthesis__priority[data-active=true] {
  border-color: #7cc4dd;
  background: #16283a;
}
.mentor-synthesis__text {
  margin: 0;
  color: #c0cfdc;
}
.mentor-synthesis__phrase {
  margin: 6px 0 0;
  color: #7cc4dd;
  font-style: italic;
}
.mentor-synthesis blockquote {
  margin: 6px 0 0;
  padding-left: 8px;
  border-left: 2px solid #2a3444;
  color: #8fa1b2;
  font-style: italic;
}
@media (max-width: 768px) {
  body:not(.admin-app):not(.studio) header {
    position: relative;
  }
  body:not(.admin-app):not(.studio) #case-file-toggle {
    width: 38px;
    height: 38px;
    min-height: 38px;
    flex: 0 0 auto;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
  }
  body:not(.admin-app):not(.studio) #case-file-toggle:hover {
    background: rgba(255, 255, 255, 0.28);
  }
  body:not(.admin-app):not(.studio) #case-file-toggle .case-file-toggle-label {
    gap: 0;
  }
  body:not(.admin-app):not(.studio) #case-file-toggle .case-file-toggle-label span {
    display: none;
  }
  body:not(.admin-app):not(.studio) #case-file-toggle .case-file-chevron {
    display: none;
  }
  body:not(.admin-app):not(.studio) #case-file-toggle .case-file-count {
    position: absolute;
    top: -3px;
    right: -3px;
    margin-left: 0;
    font-size: 9px;
    line-height: 1.5;
    padding: 0 4px;
    min-width: 7px;
    box-shadow: 0 0 0 2px var(--color-primary);
  }
  body:not(.admin-app):not(.studio) #case-file-panel.case-file {
    position: absolute;
    top: 100%;
    left: 8px;
    right: 8px;
    margin-top: 6px;
    max-height: 70vh;
    z-index: 1500;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
  }
}
body:not(.admin-app):not(.studio) header {
  height: 64px;
  padding: 0 18px;
}
@media (max-width: 900px) {
  body.session-active:not(.admin-app):not(.studio) {
    --float-gutter-right: 0px;
  }
  body:not(.admin-app):not(.studio) main {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    height: auto;
    min-height: calc(100vh - 64px);
  }
  body:not(.admin-app):not(.studio) .stage {
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
  }
  body:not(.admin-app):not(.studio) .control-bar {
    border-left: none;
    border-top: 1px solid #2a3444;
  }
}
.picker-step {
  position: relative;
  padding-left: 56px !important;
}
.picker-step-num {
  position: absolute;
  left: var(--sp-3);
  top: var(--sp-3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.picker-step-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.picker-step-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-4) 0 var(--sp-2) 0;
  padding-left: 0;
}
.picker-step-header .picker-step-num {
  position: static;
}
.picker-step-title {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-text);
}
#mobile-menu-btn,
#mobile-drawer-backdrop {
  display: none;
}
#mobile-coach-panel {
  display: none;
}
#stage {
  display: none;
}
body.session-active #stage {
  display: block;
}
#idle-landing {
  display: none;
}
body.app-ready:not(.session-active) #idle-landing {
  display: flex;
  grid-column: 1 / -1;
  grid-row: 1;
}
body:not(.app-ready) .control-bar,
body:not(.app-ready) #mobile-coach-panel {
  display: none;
}
body.app-ready:not(.session-active) .control-bar,
body.app-ready:not(.session-active) #mobile-coach-panel {
  display: none;
}
.idle-landing {
  position: relative;
  isolation: isolate;
  width: 100%;
  flex: 1 1 auto;
  min-height: 60vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(
      120% 90% at 50% 8%,
      #1b3a52 0%,
      #12283b 45%,
      #0c1b26 100%);
}
.idle-landing__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(0.92) brightness(0.82);
}
.idle-landing__bg:not([src]),
.idle-landing__bg[src=""] {
  display: none;
}
.idle-landing__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      80% 70% at 50% 52%,
      rgba(8, 18, 32, 0.10) 0%,
      rgba(8, 18, 32, 0.52) 70%,
      rgba(8, 18, 32, 0.78) 100%),
    linear-gradient(
      to top,
      rgba(8, 18, 32, 0.55) 0%,
      rgba(8, 18, 32, 0) 40%);
}
.idle-landing__cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  padding: var(--sp-4);
}
.idle-landing__hint {
  margin: 0;
  max-width: 30ch;
  color: rgba(233, 242, 250, 0.92);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0.5);
}
.idle-pick-btn {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  border: 1px solid rgba(120, 200, 240, 0.55);
  border-radius: 999px;
  font-family: inherit;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #f3fbff;
  cursor: pointer;
  background:
    linear-gradient(
      135deg,
      #1f6f99 0%,
      #156082 45%,
      #0f4a66 100%);
  box-shadow:
    0 18px 50px -12px rgba(20, 110, 150, 0.75),
    0 0 0 6px rgba(56, 189, 248, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: idleFloat 4.5s ease-in-out infinite;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}
.idle-pick-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(56, 189, 248, 0.60);
  z-index: -1;
  pointer-events: none;
  animation: idlePing 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.idle-pick-btn:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(160, 225, 255, 0.9);
  animation-play-state: paused;
  box-shadow:
    0 26px 62px -10px rgba(30, 130, 180, 0.9),
    0 0 0 8px rgba(56, 189, 248, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.idle-pick-btn:active {
  transform: translateY(-1px) scale(0.99);
}
.idle-pick-btn:focus-visible {
  outline: 3px solid #7fd4ff;
  outline-offset: 4px;
  animation-play-state: paused;
}
.idle-pick-btn__arrow {
  font-size: 1.05em;
  line-height: 1;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.idle-pick-btn:hover .idle-pick-btn__arrow {
  transform: translateX(5px);
}
@keyframes idleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes idlePing {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.28);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}
@media (prefers-reduced-motion: reduce) {
  .idle-pick-btn {
    animation: none;
  }
  .idle-pick-btn::before {
    animation: none;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  body:not(.admin-app):not(.studio) header {
    padding: 8px 12px;
    min-height: 48px;
    gap: 8px;
  }
  .header-title h1 {
    font-size: 15px;
    line-height: 1.2;
  }
  #patient-info {
    font-size: 11px;
  }
  .header-actions {
    gap: 6px;
  }
  .header-actions > #lang-switcher {
    display: none;
  }
  .mobile-drawer-extras {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
  }
  .mobile-drawer-extras #lang-switcher,
  .mobile-drawer-extras #change-scenario-button {
    display: block !important;
    width: 100%;
    padding: 12px 14px;
    background: #f8fafc !important;
    color: var(--color-text, #1e293b) !important;
    border: 1px solid var(--color-border, #e2e8f0) !important;
    border-radius: 8px !important;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
  }
  .mobile-drawer-extras #user-chip {
    display: flex !important;
    flex-wrap: wrap;
    width: 100%;
    max-width: none !important;
    padding: 12px 14px;
    background: #f8fafc;
    color: var(--color-text, #1e293b);
    border: 1px solid var(--color-border, #e2e8f0);
    border-radius: 8px;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
  }
  .mobile-drawer-extras #user-chip .user-chip-email,
  .mobile-drawer-extras #user-chip #user-chip-email {
    flex: 1;
    font-size: 14px;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-drawer-extras #user-chip-logout {
    flex-shrink: 0;
  }
  .header-actions > #session-timer {
    font-size: 12px;
    padding: 4px 6px;
  }
  #user-chip {
    max-width: 100px;
  }
  .user-chip-email {
    font-size: 11px;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-left: auto;
    margin-right: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: background var(--t-fast);
  }
  #mobile-menu-btn:hover,
  #mobile-menu-btn[aria-expanded=true] {
    background: rgba(255, 255, 255, 0.28);
  }
  .mobile-menu-icon,
  .mobile-menu-icon::before,
  .mobile-menu-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .mobile-menu-icon {
    position: relative;
  }
  .mobile-menu-icon::before,
  .mobile-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .mobile-menu-icon::before {
    top: -6px;
  }
  .mobile-menu-icon::after {
    top: 6px;
  }
  #mobile-menu-btn[aria-expanded=true] .mobile-menu-icon {
    background: transparent;
  }
  #mobile-menu-btn[aria-expanded=true] .mobile-menu-icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  #mobile-menu-btn[aria-expanded=true] .mobile-menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
  body:not(.admin-app):not(.studio) main {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - 64px);
    box-sizing: border-box;
  }
  .stage {
    max-width: 100vw;
    margin: 0;
    border-radius: 0;
  }
  .dialog-overlay {
    max-height: 40%;
    padding: 8px 52px 8px 10px;
  }
  .dialog-overlay #transcript .bubble {
    font-size: 13px;
    padding: 6px 10px;
  }
  #status-bar {
    margin: 0 12px;
    padding: 6px 10px;
    border-radius: 8px;
  }
  #status-bar .status-stages {
    display: none;
  }
  #status-bar .status-text {
    font-size: 13px;
    padding: 0;
    text-align: center;
    margin: 0;
  }
  #mobile-floating-controls {
    position: static;
  }
  body:not(.admin-app):not(.studio) #ptt-button {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 50;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
    transition: transform 0.1s, box-shadow 0.1s;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  body:not(.admin-app):not(.studio).mobile-drawer-open #ptt-button,
  body:not(.admin-app):not(.studio).mobile-drawer-open #continuous-button {
    display: none;
  }
  body:not(.admin-app):not(.studio) #ptt-button:active,
  body:not(.admin-app):not(.studio) #ptt-button.recording {
    transform: translateY(-50%) scale(0.92);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.6);
    background: #dc2626;
  }
  body:not(.admin-app):not(.studio) #continuous-button:not([hidden]) {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 50;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.45);
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  body:not(.admin-app):not(.studio) #ptt-button .btn-label,
  body:not(.admin-app):not(.studio) #continuous-button .btn-label {
    display: none;
  }
  body:not(.admin-app):not(.studio) #ptt-button .btn-icon,
  body:not(.admin-app):not(.studio) #continuous-button .btn-icon {
    width: 34px;
    height: 34px;
    stroke-width: 1.75;
  }
  body:not(.admin-app):not(.studio) #controls {
    display: block;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    overflow: visible;
    gap: 0;
  }
  .control-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 82vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-surface, white);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.22);
    padding: 20px 16px calc(28px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    transform: translateY(102%);
    transition: transform 0.28s cubic-bezier(.4, .0, .2, 1);
  }
  .control-bar::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #cbd5e1;
  }
  body.mobile-drawer-open .control-bar {
    transform: translateY(0);
  }
  #mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 80;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
  }
  body.mobile-drawer-open #mobile-drawer-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  #text-input-container {
    margin-top: 12px;
  }
  #input-mode-toggle {
    display: block;
    margin-top: 14px;
    min-height: 44px;
    padding: 12px;
    text-align: center;
    background: #1a2332;
    border: 1px solid #2a3444;
    border-radius: 10px;
    color: #c0cfdc;
    cursor: pointer;
  }
  body.mobile-drawer-open #status-bar {
  }
  #report-summary,
  #asr-hint,
  #timings {
  }
  #debrief-modal .modal-card {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .mobile-drawer-extras {
    display: none !important;
  }
  #status-bar {
    order: 1;
  }
  #input-mode-toggle {
    order: 2;
  }
  #coach-history-toggle {
    order: 3;
  }
  #session-group {
    order: 4;
  }
  #controls,
  #text-input-container,
  .debrief-contextual-continue,
  #asr-hint,
  #timings,
  #report-summary {
    order: 10;
  }
  #session-group #user-chip-results {
    display: block;
    width: 100%;
    padding: 9px;
    font-size: 13px;
    text-align: center;
    background: #1a2332;
    border: 1px solid #2a3444;
    border-radius: 9px;
    color: #c0cfdc;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
  }
  #session-group #user-chip-results:hover {
    background: #243245;
    color: #e2eaf3;
  }
}
@media (max-width: 768px) {
  #trigger-toasts {
    top: 60px !important;
    right: 8px !important;
    left: 8px !important;
    max-width: none !important;
  }
}
@media (max-width: 480px) {
  .header-title h1 {
    font-size: 13px;
  }
  #patient-info {
    display: none;
  }
  body:not(.admin-app):not(.studio) #ptt-button,
  body:not(.admin-app):not(.studio) #continuous-button:not([hidden]) {
    width: 76px;
    height: 76px;
  }
  body:not(.admin-app):not(.studio) #ptt-button::before {
    font-size: 32px;
  }
  body:not(.admin-app):not(.studio) #continuous-button::before {
    font-size: 28px;
  }
}
@media (max-width: 900px) and (max-height: 480px) and (orientation: landscape) {
  body:not(.admin-app):not(.studio) main {
    padding: 4px 0 12px 0;
  }
  .stage {
    aspect-ratio: 16 / 9;
  }
  body:not(.admin-app):not(.studio) #ptt-button,
  body:not(.admin-app):not(.studio) #continuous-button:not([hidden]) {
    width: 64px;
    height: 64px;
    top: 50%;
    right: 16px;
  }
  body:not(.admin-app):not(.studio) #ptt-button::before {
    font-size: 26px;
  }
  body:not(.admin-app):not(.studio) #continuous-button::before {
    font-size: 22px;
  }
}
.break-anywhere {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.btn-destructive {
  border: 1.5px solid var(--color-danger);
  color: var(--color-danger);
  background: transparent;
  font-weight: 500;
  transition: background var(--t-base), color var(--t-base);
}
.btn-destructive:hover,
.btn-destructive:focus-visible {
  background: var(--color-danger);
  color: white;
}
.modal-confirm {
  max-width: 420px;
  padding: var(--sp-6);
}
.modal-confirm h3 {
  margin: 0 0 var(--sp-3);
  font-size: var(--fs-lg);
}
.modal-confirm p {
  margin: 0 0 var(--sp-5);
  color: var(--color-text);
  line-height: 1.5;
  white-space: pre-line;
}
.modal-confirm .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--sp-3);
}
.inline-alert {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  border-left: 4px solid;
  font-size: var(--fs-sm);
  line-height: 1.4;
  margin: var(--sp-3) 0;
}
.inline-alert-icon {
  font-size: 1.2em;
  flex-shrink: 0;
}
.inline-alert-message {
  flex: 1;
}
.inline-alert-action {
  flex-shrink: 0;
  padding: 4px 12px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  background: transparent;
  color: inherit;
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base);
}
.inline-alert-action:hover,
.inline-alert-action:focus-visible {
  background: currentColor;
  color: white;
}
.inline-alert-info {
  background: rgba(21, 96, 130, 0.08);
  border-left-color: var(--color-primary);
  color: var(--color-primary);
}
.inline-alert-warning {
  background: var(--color-warning-bg);
  border-left-color: var(--color-warning);
  color: var(--color-warning);
}
.inline-alert-error {
  background: var(--color-danger-bg);
  border-left-color: var(--color-danger);
  color: var(--color-danger);
}
.brand-mark {
  display: inline-flex;
  align-items: flex-start;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand-mark .brand-clin {
  font-weight: 600;
}
.brand-mark .brand-talk {
  color: var(--color-brand-accent);
  font-weight: 800;
}
.brand-mark .brand-ai {
  font-size: .5em;
  vertical-align: super;
  color: var(--color-brand-accent);
  font-weight: 800;
  margin-left: 1px;
}
.brand-mark .brand-ai,
.landing-nav__mark sup,
.hub-nav__mark sup,
.legal-brand sup,
.help-brand sup,
.join-mark sup,
.profile-brand sup,
.isp-mark sup {
  text-transform: uppercase;
}
a.site-home-logo {
  text-decoration: none;
  color: inherit;
  opacity: .85;
  transition: opacity .15s;
  flex-shrink: 0;
}
a.site-home-logo:hover {
  opacity: 1;
}
[data-user-locale-switcher] {
  flex: 0 0 auto;
}
.user-locale-switcher {
  --user-locale-bg: var(--color-surface);
  --user-locale-border: var(--color-border);
  --user-locale-fg: var(--color-text);
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding-left: var(--sp-2);
  color: var(--user-locale-fg);
  background: var(--user-locale-bg);
  border: 1px solid var(--user-locale-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast),
    background var(--t-fast);
}
.user-locale-switcher:hover {
  border-color: var(--color-primary);
}
.user-locale-switcher:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(21, 96, 130, .12);
}
.user-locale-switcher__icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.user-locale-switcher__select {
  min-width: 0;
  max-width: 132px;
  min-height: 34px;
  padding: 6px 8px 6px 6px;
  border: 0;
  color: inherit;
  background: transparent;
  font: 500 var(--fs-xs)/1.2 var(--font-sans);
  cursor: pointer;
}
.user-locale-switcher__select:focus-visible {
  outline: 0;
}
.user-locale-switcher__select:disabled {
  cursor: wait;
  opacity: .65;
}
.user-locale-switcher__select option {
  color: var(--color-text);
  background: var(--color-surface);
}
.profile-page .user-locale-switcher {
  --user-locale-bg: var(--prof-glass-bg);
  --user-locale-border: var(--prof-glass-bd);
  --user-locale-fg: var(--prof-text);
  box-shadow: none;
}
.profile-light .profile-page .user-locale-switcher {
  --user-locale-bg: #ffffff;
  --user-locale-border: rgba(15,23,42,.12);
  --user-locale-fg: #1f2937;
}
.join-shell .user-locale-switcher {
  --user-locale-bg: rgba(255,255,255,.04);
  --user-locale-border: rgba(255,255,255,.14);
  --user-locale-fg: #e6edf6;
  box-shadow: none;
}
.join-shell .user-locale-switcher:hover {
  border-color: #38bdf8;
}
@media (max-width: 600px) {
  .user-locale-switcher {
    min-height: 44px;
  }
  .user-locale-switcher__select {
    min-height: 42px;
    max-width: 112px;
  }
}
#lang-switcher:disabled {
  display: none;
}
.stage-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      120% 120% at 50% 30%,
      #16324a 0%,
      #0c1722 70%);
  overflow: hidden;
}
.stage-loader[hidden] {
  display: none;
}
.stage-loader-skeleton {
  position: absolute;
  inset: 0;
  opacity: .7;
  background:
    linear-gradient(#1b2c3e, #1b2c3e) 0 0/100% 38% no-repeat,
    linear-gradient(#22384e, #22384e) 18% 60%/26% 40% no-repeat,
    linear-gradient(#22384e, #22384e) 56% 55%/30% 45% no-repeat;
}
.stage-loader-sweep {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background:
    linear-gradient(
      105deg,
      transparent 30%,
      rgba(255, 255, 255, .10) 50%,
      transparent 70%);
  animation: stage-loader-sweep 1.6s ease-in-out infinite;
}
@keyframes stage-loader-sweep {
  to {
    transform: translateX(100%);
  }
}
.stage-loader-bar {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}
.stage-loader-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: var(--color-brand-accent);
  animation: stage-loader-bar 1.4s ease-in-out infinite;
}
@keyframes stage-loader-bar {
  to {
    left: 100%;
  }
}
.stage-loader-caption {
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #acc4d6;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .stage-loader-sweep,
  .stage-loader-bar::after {
    animation: none;
  }
}
.picker-setting-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  cursor: pointer;
  font-size: var(--fs-sm);
}
.picker-setting-row input {
  cursor: pointer;
}
.picker-mode-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.picker-mode-row .picker-mode-label {
  font-weight: 600;
}
.picker-mode-toggle[hidden] {
  display: none;
}
.picker-mode-toggle {
  display: inline-flex;
  border-radius: 0.375rem;
  overflow: hidden;
  border: 1px solid #ccc;
}
.picker-mode-btn {
  padding: 0.25rem 0.75rem;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 150ms, color 150ms;
}
.picker-mode-btn.active {
  background: #2c5282;
  color: white;
}
.picker-mode-hint {
  color: #666;
  font-size: 0.85rem;
}
#session-timer.timer-warning {
  color: #d54;
  font-weight: bold;
}
#session-timer.timer-expired {
  color: #c00;
}
.exam-timed-out .input-area,
.exam-timed-out [data-i18n="ui.btn.ptt_hold"] {
  pointer-events: none;
  opacity: 0.5;
}
.coach-bubble-host {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.coach-bubble-host[hidden] {
  display: none;
}
.coach-bubble {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: var(--coach-bubble-maxw, 280px);
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  font-size: var(--coach-bubble-fs, 14px);
  line-height: 1.4;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 220ms ease-out, opacity 200ms ease-out;
  z-index: 200;
  pointer-events: auto;
  font-family: inherit;
  color: #1a1a1a;
}
.coach-bubble--visible {
  transform: translateY(0);
  opacity: 1;
}
.coach-bubble-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #555;
  font-weight: 600;
}
.coach-bubble-icon {
  font-size: 14px;
}
.coach-bubble-label {
  flex: 1;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.coach-bubble-dismiss {
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 14px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  margin: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 4px;
}
.coach-bubble-dismiss:hover {
  color: #333;
  background: rgba(0, 0, 0, 0.05);
}
.coach-bubble-dismiss:focus-visible {
  outline: 2px solid #2196F3;
  outline-offset: 2px;
}
.coach-bubble-message {
  font-size: 14px;
  line-height: 1.4;
  color: #1a1a1a;
}
.coach-bubble-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(33, 150, 243, 0.5);
  transform-origin: left center;
  transform: scaleX(1);
  transition-property: transform;
  transition-timing-function: linear;
  border-radius: 0 0 14px 14px;
}
.coach-bubble--ambient {
  border-left: 3px solid var(--coach-color-ambient, #2196F3);
}
.coach-bubble--ambient .coach-bubble-label {
  color: #1565c0;
}
.coach-bubble--active {
  border-left: 3px solid var(--coach-color-active, #ff9800);
}
.coach-bubble--active .coach-bubble-label {
  color: #e65100;
}
.coach-bubble--active .coach-bubble-progress {
  background: rgba(255, 152, 0, 0.5);
}
.coach-bubble--critical {
  border-left: 3px solid var(--coach-color-critical, #f44336);
  box-shadow: 0 4px 18px rgba(244, 67, 54, 0.30);
  animation: coach-pulse 1.4s ease-in-out 1;
}
.coach-bubble--critical .coach-bubble-label {
  color: #b71c1c;
}
.coach-bubble--critical .coach-bubble-progress {
  background: rgba(244, 67, 54, 0.6);
}
@keyframes coach-pulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(244, 67, 54, 0.30);
  }
  50% {
    box-shadow: 0 6px 24px rgba(244, 67, 54, 0.55);
  }
}
.coach-history-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #2a3444;
  border-radius: 10px;
  background: #1a2332;
  color: #c0cfdc;
  font-family: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.coach-history-toggle[hidden] {
  display: none;
}
.coach-history-toggle:hover {
  background: #22304a;
  border-color: #3a4a63;
}
.coach-history-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.coach-history-toggle__icon {
  flex: 0 0 auto;
  opacity: .75;
}
.coach-history-toggle__label {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.coach-history-count {
  flex: 0 0 auto;
  min-width: 20px;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.coach-history-count[hidden] {
  display: none;
}
.coach-history {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 90vw;
  background: white;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
  z-index: 250;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 240ms ease-out;
  font-family: inherit;
}
.coach-history[hidden] {
  display: none;
}
.coach-history[data-open=true] {
  transform: translateX(0);
}
.coach-history-head {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #e0e0e0;
}
.coach-history-head h2 {
  flex: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1565c0;
}
.coach-history-close {
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.coach-history-close:hover {
  color: #333;
  background: rgba(0, 0, 0, 0.05);
}
.coach-history-close:focus-visible {
  outline: 2px solid #2196F3;
  outline-offset: 1px;
}
.coach-history-list {
  flex: 1;
  overflow-y: auto;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.coach-history-entry {
  padding: 10px 16px;
  border-bottom: 1px solid #f0f0f0;
  border-left: 3px solid transparent;
}
.coach-history-entry--ambient {
  border-left-color: #2196F3;
}
.coach-history-entry--active {
  border-left-color: #ff9800;
}
.coach-history-entry--critical {
  border-left-color: #f44336;
}
.coach-history-entry-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 11px;
  color: #555;
}
.coach-history-entry-icon {
  font-size: 13px;
}
.coach-history-entry-label {
  flex: 1;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.coach-history-entry-time {
  font-variant-numeric: tabular-nums;
  color: #666;
}
.coach-history-entry-message {
  font-size: 13px;
  line-height: 1.4;
  color: #1a1a1a;
}
.coach-history-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
  padding: 20px;
  text-align: center;
}
.picker-coach-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  user-select: none;
}
.picker-coach-toggle[hidden] {
  display: none;
}
.picker-coach-toggle input[type=checkbox] {
  margin: 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.picker-coach-toggle:hover {
  color: #1565c0;
}
@media (max-width: 640px) {
  .coach-history {
    width: 100vw;
  }
  .coach-bubble {
    max-width: calc(100vw - 40px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .coach-bubble {
    transition: opacity 0ms;
    transform: none;
  }
  .coach-bubble--critical {
    animation: none;
  }
  .coach-history {
    transition: transform 0ms;
  }
  .coach-bubble-progress {
    display: none;
  }
}
.coach-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1.4;
}
.coach-review-badge--done {
  background: #e8f5e9;
  color: #1b5e20;
}
.coach-review-badge--partial {
  background: #fff3e0;
  color: #e65100;
}
.coach-feedback-section {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}
.coach-feedback-section[hidden] {
  display: none;
}
.coach-feedback-section > h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1565c0;
  margin: 0 0 12px 0;
}
.coach-feedback-empty {
  color: #888;
  font-size: 14px;
  padding: 16px;
  text-align: center;
  font-style: italic;
}
.coach-feedback-empty[hidden] {
  display: none;
}
.coach-feedback-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.coach-feedback-item {
  background: #fafafa;
  border-radius: 8px;
  padding: 12px 16px;
  border-left: 3px solid #e0e0e0;
}
.coach-feedback-item-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #555;
  margin-bottom: 6px;
}
.coach-feedback-item-icon {
  font-size: 16px;
}
.coach-feedback-item-category {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.coach-feedback-item-band {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 8px;
  text-transform: uppercase;
}
.coach-feedback-item-band--ambient {
  background: #e3f2fd;
  color: #1565c0;
}
.coach-feedback-item-band--active {
  background: #fff3e0;
  color: #e65100;
}
.coach-feedback-item-band--critical {
  background: #ffebee;
  color: #b71c1c;
}
.coach-feedback-item-time {
  margin-left: auto;
  color: #999;
  font-variant-numeric: tabular-nums;
}
.coach-feedback-item-message {
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  padding-left: 12px;
  border-left: 2px solid #2196F3;
  font-style: italic;
}
.coach-feedback-item-context {
  margin-bottom: 8px;
  font-size: 12px;
}
.coach-feedback-item-context > summary {
  cursor: pointer;
  color: #1565c0;
  user-select: none;
}
.coach-feedback-item-reasoning {
  margin-top: 6px;
  padding: 8px;
  background: #f0f4f7;
  border-radius: 4px;
  font-size: 12px;
  color: #555;
}
.coach-feedback-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.coach-feedback-btn {
  min-width: 44px;
  min-height: 44px;
  border: 2px solid #e0e0e0;
  background: white;
  color: #555;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 150ms,
    border-color 150ms,
    transform 80ms;
}
.coach-feedback-btn:hover {
  background: #f5f5f5;
  border-color: #b0b0b0;
}
.coach-feedback-btn:active {
  transform: scale(0.95);
}
.coach-feedback-btn:focus-visible {
  outline: 2px solid #2196F3;
  outline-offset: 2px;
}
.coach-feedback-btn--active {
  background: #e8f5e9;
  border-color: #43a047;
  color: #2e7d32;
}
.coach-feedback-btn--not-helpful.coach-feedback-btn--active {
  background: #ffebee;
  border-color: #e53935;
  color: #c62828;
}
.coach-feedback-btn--unclear.coach-feedback-btn--active {
  background: #fff3e0;
  border-color: #fb8c00;
  color: #e65100;
}
.coach-feedback-btn--inactive {
  opacity: 0.4;
}
.coach-feedback-clear {
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
}
.coach-feedback-clear:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}
.coach-feedback-clear:focus-visible {
  outline: 2px solid #2196F3;
  outline-offset: 1px;
}
.coach-feedback-clear[hidden] {
  display: none;
}
.coach-feedback-comment {
  flex: 1 1 200px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
}
.coach-feedback-comment[hidden] {
  display: none;
}
.coach-feedback-comment:focus-visible {
  outline: 2px solid #2196F3;
  outline-offset: 1px;
  border-color: transparent;
}
.coach-feedback-status {
  font-size: 12px;
  color: #666;
  font-style: italic;
}
.coach-feedback-status[hidden] {
  display: none;
}
@media (max-width: 640px) {
  .coach-feedback-controls {
    flex-wrap: wrap;
  }
  .coach-feedback-comment {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .coach-feedback-btn {
    transition: none;
  }
}
#tutorial-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse var(--tutorial-spot-w, 1px) var(--tutorial-spot-h, 1px) at var(--tutorial-spot-x, 50%) var(--tutorial-spot-y, 50%),
      transparent 100%,
      rgba(0, 0, 0, 0.72) calc(100% + 2px));
  opacity: 0;
  transition: opacity 0.3s ease, background 0.35s ease;
}
#tutorial-overlay.active {
  opacity: 1;
}
#tutorial-overlay.tutorial-no-spot {
  background: rgba(0, 0, 0, 0.65);
  transition: opacity 0.3s ease;
}
#tutorial-card {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100vh - 100% - 20px));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  width: 560px;
  max-width: calc(100vw - 32px);
  z-index: 201;
  display: flex;
  flex-direction: row;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32), 0 2px 8px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  pointer-events: auto;
}
#tutorial-card[hidden] {
  display: none;
}
#tutorial-card.tutorial-card--top {
  transform: translateX(-50%) translateY(20px);
}
#tutorial-card-avatar {
  width: 132px;
  flex-shrink: 0;
  background: var(--color-surface-2);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
#tutorial-mentor {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#tutorial-mentor svg {
  width: 100%;
  height: auto;
  max-height: 188px;
  display: block;
}
#tutorial-mentor-svg {
  animation: mentor-breathe 4s ease-in-out infinite;
}
@keyframes mentor-breathe {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
#mentor-mouth {
  transform-box: fill-box;
  transform-origin: center;
}
#tutorial-mentor-svg.speaking #mentor-mouth {
  animation: mentor-talk 0.26s ease-in-out infinite;
}
@keyframes mentor-talk {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.7);
  }
}
#tutorial-card.session-phase #tutorial-card-avatar {
  display: none;
}
#tutorial-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--sp-4) var(--sp-5);
  min-width: 0;
  position: relative;
}
.tutorial-skip-btn {
  position: absolute;
  top: var(--sp-2);
  right: var(--sp-2);
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease;
}
.tutorial-skip-btn:hover {
  color: var(--color-text);
}
#tutorial-step-text {
  margin: 0 28px 0 0;
  padding-top: var(--sp-1);
  line-height: 1.6;
  color: var(--color-text);
  font-size: 15px;
  flex: 1;
}
#tutorial-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-4);
  gap: var(--sp-3);
}
#tutorial-progress {
  font-size: 12px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.tutorial-nav {
  display: flex;
  gap: var(--sp-2);
}
.btn-sm {
  padding: 5px 14px;
  font-size: 13px;
}
.tutorial-highlight {
  outline: 3px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
  animation: tutorial-pulse 1.6s ease-in-out infinite;
}
@keyframes tutorial-pulse {
  0%, 100% {
    outline-color: var(--color-primary);
    outline-offset: 4px;
  }
  50% {
    outline-color: var(--color-primary-hover);
    outline-offset: 7px;
  }
}
#report-view.tutorial-demo-active {
  z-index: 150;
}
.help-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9600;
  background: rgba(15, 30, 50, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: help-modal-fade 0.2s ease;
}
.help-modal-overlay[hidden] {
  display: none;
}
@keyframes help-modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.help-modal {
  position: relative;
  width: 100%;
  max-width: 740px;
  max-height: 88vh;
  background: var(--color-bg, #f5f7fa);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  animation: help-modal-rise 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes help-modal-rise {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.help-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e0e4ea);
  color: var(--color-text-muted, #6c7d8e);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.help-modal-close:hover {
  background: var(--color-hover, #f0f4fa);
  color: var(--color-text, #1a2332);
}
.help-modal-scroll {
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px 32px 40px;
}
.help-modal-scroll h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
  padding-right: 36px;
}
.help-modal-scroll .help-intro {
  font-size: 15px;
  color: var(--color-text-muted, #6c7d8e);
  line-height: 1.65;
  margin: 0 0 24px 0;
  padding: 16px 20px;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e0e4ea);
  border-radius: 8px;
}
.help-tour-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0284c7;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
  margin: 0 0 28px 0;
  transition: background 150ms ease, transform 150ms ease;
}
.help-tour-cta::before {
  content: "🎓";
  font-size: 16px;
}
.help-tour-cta:hover {
  background: #0369a1;
  transform: translateY(-1px);
}
.help-stages-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.help-stages-hint {
  font-size: 13px;
  color: var(--color-text-muted, #6c7d8e);
  margin: 0 0 16px 0;
}
.help-stages {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}
.help-stage,
.help-ref {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e0e4ea);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.help-ref.teacher {
  background: var(--color-bg-subtle, #f0f4fa);
}
.help-ref.teacher .help-collapse-title {
  color: var(--color-primary, #2563eb);
}
.help-collapse-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 16px 18px;
  font-family: inherit;
  color: var(--color-text, #1a2332);
}
.help-collapse-head:hover {
  background: var(--color-hover, #f6f9fc);
}
.help-stage-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-primary, #156082);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.help-collapse-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
}
.help-chevron {
  flex-shrink: 0;
  color: var(--color-text-muted, #9bb0c5);
  font-size: 12px;
  transition: transform 180ms ease;
}
.help-collapse-head[aria-expanded=true] .help-chevron {
  transform: rotate(90deg);
}
.help-collapse-body {
  padding: 0 18px 18px 56px;
}
.help-collapse-body.ref {
  padding-left: 18px;
}
.help-collapse-body p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 10px 0;
}
.help-collapse-body .lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary, #156082);
  margin: 12px 0 2px 0;
}
.help-collapse-body ul {
  margin: 4px 0 0 0;
  padding: 0;
  list-style: none;
}
.help-collapse-body li {
  font-size: 14px;
  line-height: 1.6;
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid var(--color-border-light, #f0f0f0);
}
.help-collapse-body li:last-child {
  border-bottom: none;
}
.help-collapse-body li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-text-muted, #9bb0c5);
}
.help-stage-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary, #156082);
  text-decoration: none;
}
.help-stage-link:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .help-modal-scroll {
    padding: 28px 18px 32px;
  }
  .help-collapse-body {
    padding-left: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .help-modal-overlay,
  .help-modal {
    animation: none;
  }
}
#tutorial-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 202;
  overflow: hidden;
}
.tutorial-confetti-piece {
  position: absolute;
  top: -10px;
  border-radius: 2px;
  animation: confetti-fall linear forwards;
}
@keyframes confetti-fall {
  to {
    transform: translateY(110vh) rotate(720deg);
  }
}
@media (max-width: 600px) {
  #tutorial-card {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: translateX(-50%) translateY(calc(100vh - 100%));
  }
  #tutorial-card.tutorial-card--top {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    transform: translateX(-50%) translateY(0);
  }
  #tutorial-card-avatar {
    width: 96px;
  }
  #tutorial-mentor svg {
    max-height: 150px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tutorial-highlight {
    animation: none;
  }
  #tutorial-overlay {
    transition: none;
  }
  #tutorial-card {
    transition: none;
  }
  .tutorial-confetti-piece {
    animation: none;
  }
  #tutorial-mentor-svg {
    animation: none;
  }
  #tutorial-mentor-svg.speaking #mentor-mouth {
    animation: none;
  }
}
body.didactics-page {
  --cg-page-bg:
    radial-gradient(
      
      120% 80% at 50% -10%,
      rgba(56,189,248,.10),
      transparent 60%),
    radial-gradient(
      
      90% 60% at 85% 110%,
      rgba(99,102,241,.08),
      transparent 60%),
    #050d1a;
  --cg-text:#e2e8f0;
  --cg-text-muted:#94a3b8;
  --cg-glass-bg:rgba(125,170,225,.06);
  --cg-glass-bd:rgba(125,211,252,.16);
  --cg-glass-bd-soft:rgba(125,211,252,.14);
  --cg-glass-shadow:inset 0 1px 1px rgba(199,211,234,.14),
    inset 0 28px 56px rgba(56,189,248,.05),
    0 24px 40px rgba(5,6,15,.5);
  --cg-accent:#38bdf8;
  --cg-accent-contrast:#04253a;
  --cg-progress-track:rgba(125,211,252,.14);
  --cg-choice-bg:rgba(125,170,225,.05);
  --cg-choice-sel-bg:rgba(56,189,248,.16);
  --cg-patient-bg:rgba(125,170,225,.09);
  --cg-badge-bg:rgba(56,189,248,.12);
  --cg-orb-opacity:.45;
  --cg-orb-1:rgba(56,189,248,.38);
  --cg-orb-2:rgba(99,102,241,.32);
  --cg-orb-3:rgba(45,212,191,.26);
  --cg-grid:rgba(125,211,252,.05);
  --cg-fb2-bg:rgba(34,197,94,.15);
  --cg-fb2-bd:rgba(34,197,94,.32);
  --cg-fb1-bg:rgba(245,158,11,.15);
  --cg-fb1-bd:rgba(245,158,11,.32);
  --cg-fb0-bg:rgba(239,68,68,.16);
  --cg-fb0-bd:rgba(239,68,68,.34);
  --cg-sign-2:#5be39a;
  --cg-sign-1:#fcd34d;
  --cg-sign-0:#fca5a5;
}
html.profile-light body.didactics-page {
  --cg-page-bg: #ffffff;
  --cg-text:#1f1f1f;
  --cg-text-muted:#5f6368;
  --cg-glass-bg:#ffffff;
  --cg-glass-bd:#dadce0;
  --cg-glass-bd-soft:#dadce0;
  --cg-glass-shadow:0 1px 2px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.05);
  --cg-accent:#0e7490;
  --cg-accent-contrast:#ffffff;
  --cg-progress-track:#eff1f6;
  --cg-choice-bg:#ffffff;
  --cg-choice-sel-bg:rgba(14,116,144,.08);
  --cg-patient-bg:#eff1f6;
  --cg-badge-bg:#eff1f6;
  --cg-orb-opacity:0;
  --cg-orb-1:transparent;
  --cg-orb-2:transparent;
  --cg-orb-3:transparent;
  --cg-grid:transparent;
  --cg-fb2-bg:rgba(16,185,129,.10);
  --cg-fb2-bd:rgba(16,185,129,.32);
  --cg-fb1-bg:rgba(245,158,11,.12);
  --cg-fb1-bd:rgba(245,158,11,.34);
  --cg-fb0-bg:rgba(239,68,68,.10);
  --cg-fb0-bd:rgba(239,68,68,.32);
  --cg-sign-2:#0a8f5b;
  --cg-sign-1:#b9760a;
  --cg-sign-0:#cf3636;
}
html.profile-light body.didactics-page .cg-atmos {
  display: none;
}
html.profile-light body.didactics-page .cg-card,
html.profile-light body.didactics-page .cg-choice,
html.profile-light body.didactics-page .cg-patient {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
html.profile-light body.didactics-page .cg-card {
  border-radius: 10px;
}
html.profile-light body.didactics-page .cg-choice {
  border-radius: 10px;
}
html.profile-light body.didactics-page .cg-primary {
  border-radius: 10px;
}
html.profile-light body.didactics-page .cg-title {
  font-family:
    Charter,
    "Bitstream Charter",
    "Source Serif 4",
    Georgia,
    "Times New Roman",
    serif;
  font-weight: 600;
  letter-spacing: -.01em;
}
html.profile-light body.didactics-page .cg-model-badge {
  color: #3c4043;
  border: 1px solid var(--cg-glass-bd);
}
.cg-atmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cg-orb {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(64px);
  filter: blur(64px);
  opacity: var(--cg-orb-opacity);
}
.cg-orb-1 {
  width: 46vw;
  height: 46vw;
  left: -8vw;
  top: -6vw;
  background:
    radial-gradient(
      circle,
      var(--cg-orb-1),
      transparent 68%);
  animation: land-float-a 24s ease-in-out infinite;
}
.cg-orb-2 {
  width: 40vw;
  height: 40vw;
  right: -6vw;
  top: 24vh;
  background:
    radial-gradient(
      circle,
      var(--cg-orb-2),
      transparent 68%);
  animation: land-float-b 28s ease-in-out infinite;
}
.cg-orb-3 {
  width: 34vw;
  height: 34vw;
  left: 16vw;
  bottom: -10vw;
  background:
    radial-gradient(
      circle,
      var(--cg-orb-3),
      transparent 68%);
  animation: land-float-a 32s ease-in-out infinite reverse;
}
.cg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--cg-grid) 1px, transparent 1px),
    linear-gradient(
      90deg,
      var(--cg-grid) 1px,
      transparent 1px);
  background-size: 64px 64px;
  -webkit-mask:
    radial-gradient(
      ellipse 75% 70% at 50% 35%,
      #000 20%,
      transparent 78%);
  mask:
    radial-gradient(
      ellipse 75% 70% at 50% 35%,
      #000 20%,
      transparent 78%);
}
@media (prefers-reduced-motion: reduce) {
  .cg-orb {
    animation: none;
  }
}
.cg-root {
  display: flex;
  justify-content: center;
}
.cg-wizard {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cg-chrome {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cg-chrome-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cg-step-label,
.cg-close {
  font-size: 13px;
  color: var(--cg-text-muted);
}
.cg-close {
  text-decoration: none;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 8px;
}
.cg-close:hover {
  color: var(--cg-text);
}
.cg-progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--cg-progress-track);
  overflow: hidden;
}
.cg-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--cg-accent);
  transition: width .3s ease;
}
.cg-card {
  background: var(--cg-glass-bg);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid var(--cg-glass-bd);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--cg-glass-shadow);
  color: var(--cg-text);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(8px);
}
.cg-card.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .2s, transform .2s;
}
.cg-card:focus {
  outline: none;
}
.cg-title {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--cg-text);
}
.cg-intro {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cg-text-muted);
}
.cg-overview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cg-overview-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--cg-text);
}
.cg-overview-row.is-done .cg-overview-title {
  color: var(--cg-text-muted);
}
.cg-overview-mark {
  width: 16px;
  color: var(--cg-sign-2);
  font-weight: 700;
}
.cg-skill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: var(--color-primary, #2563eb);
}
.cg-model-badge {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cg-badge-bg);
  color: var(--cg-accent);
}
.cg-learn-link {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--cg-accent);
  text-decoration: none;
  opacity: .9;
}
.cg-learn-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.cg-learn-link[hidden] {
  display: none;
}
.cg-concept {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cg-concept-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cg-accent);
}
.cg-concept-body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cg-text);
}
.cg-patient-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cg-avatar {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--cg-glass-bg);
  border: 1px solid var(--cg-glass-bd-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.cg-patient {
  background: var(--cg-patient-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--cg-glass-bd-soft);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 14px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--cg-text);
}
.cg-reply-label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--cg-text-muted);
}
.cg-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cg-choice {
  display: block;
  width: 100%;
  text-align: left;
  min-height: 52px;
  padding: 14px 16px;
  border: 1.5px solid var(--cg-glass-bd-soft);
  border-radius: 14px;
  background: var(--cg-choice-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--cg-text);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.cg-choice:hover:not([disabled]) {
  border-color: var(--cg-accent);
}
.cg-choice.is-selected {
  border-width: 2px;
  border-color: var(--cg-accent);
  background: var(--cg-choice-sel-bg);
}
.cg-choice[disabled] {
  cursor: default;
}
.cg-feedback {
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cg-feedback.score-2 {
  background: var(--cg-fb2-bg);
  border: 1px solid var(--cg-fb2-bd);
}
.cg-feedback.score-1 {
  background: var(--cg-fb1-bg);
  border: 1px solid var(--cg-fb1-bd);
}
.cg-feedback.score-0 {
  background: var(--cg-fb0-bg);
  border: 1px solid var(--cg-fb0-bd);
}
.cg-outcome {
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--cg-text);
}
.cg-debrief {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cg-text);
}
.cg-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cg-primary {
  align-self: flex-start;
  min-height: 48px;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: var(--cg-accent);
  color: var(--cg-accent-contrast);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: filter .15s ease;
}
.cg-primary:hover:not([disabled]) {
  filter: brightness(1.06);
}
.cg-primary[disabled] {
  opacity: .5;
  cursor: default;
}
.cg-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.cg-ghost {
  background: transparent;
  border: none;
  color: var(--cg-accent);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 4px;
}
.cg-profile {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cg-profile-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--cg-text);
  padding: 8px 12px;
  border-radius: 12px;
}
.cg-profile-row.score-2 {
  background: var(--cg-fb2-bg);
}
.cg-profile-row.score-1 {
  background: var(--cg-fb1-bg);
}
.cg-profile-row.score-0 {
  background: var(--cg-fb0-bg);
}
.cg-profile-sign {
  width: 18px;
  font-weight: 700;
  text-align: center;
}
.cg-profile-row.score-2 .cg-profile-sign {
  color: var(--cg-sign-2);
}
.cg-profile-row.score-1 .cg-profile-sign {
  color: var(--cg-sign-1);
}
.cg-profile-row.score-0 .cg-profile-sign {
  color: var(--cg-sign-0);
}
.cg-profile-title {
  flex: 1;
}
.cg-error {
  font-size: 14.5px;
  color: var(--cg-text-muted);
}
.cg-choice:focus-visible,
.cg-primary:focus-visible,
.cg-ghost:focus-visible,
.cg-close:focus-visible {
  outline: 3px solid var(--cg-accent);
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .cg-card {
    padding: 18px;
  }
  .cg-primary,
  .cg-choice {
    width: 100%;
  }
  .cg-primary {
    align-self: stretch;
    text-align: center;
  }
}
@media (min-width: 900px) {
  .cg-wizard {
    max-width: 780px;
  }
  .cg-card {
    padding: 32px 36px;
  }
  .cg-title {
    font-size: 24px;
  }
  .cg-card[data-card=page] {
    position: relative;
    padding-left: 248px;
    min-height: 236px;
  }
  .cg-card[data-card=page] > .cg-illu {
    position: absolute;
    left: 36px;
    top: 40px;
    width: 176px;
    margin: 0;
  }
  .cg-card[data-card=page] .cg-illu svg {
    width: 160px;
    height: 160px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cg-card.is-in {
    transition: none;
  }
  .cg-progress-fill {
    transition: none;
  }
}
.landing-root {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 9000;
  background:
    radial-gradient(
      120% 80% at 50% -10%,
      rgba(56, 189, 248, .10),
      transparent 60%),
    radial-gradient(
      90% 60% at 85% 110%,
      rgba(99, 102, 241, .08),
      transparent 60%),
    #050d1a;
  color: #e2e8f0;
  font-family:
    "Inter",
    system-ui,
    sans-serif;
  --glass-bg: rgba(56,189,248,.045);
  --glass-bd: rgba(125,211,252,.14);
  --glass-shadow:
    inset 0 1px 1px rgba(199,211,234,.14),
    inset 0 28px 56px rgba(56,189,248,.05),
    0 24px 40px rgba(5,6,15,.5);
  scroll-behavior: smooth;
}
.landing-atmos {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.landing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .55;
  will-change: transform;
}
.landing-orb--1 {
  width: 46vw;
  height: 46vw;
  left: -8vw;
  top: -6vw;
  background:
    radial-gradient(
      circle,
      rgba(56, 189, 248, .45),
      transparent 68%);
}
.landing-orb--2 {
  width: 38vw;
  height: 38vw;
  right: -6vw;
  top: 28vh;
  background:
    radial-gradient(
      circle,
      rgba(99, 102, 241, .40),
      transparent 68%);
}
.landing-orb--3 {
  width: 34vw;
  height: 34vw;
  left: 18vw;
  bottom: -10vw;
  background:
    radial-gradient(
      circle,
      rgba(45, 212, 191, .30),
      transparent 68%);
}
.landing-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 211, 252, .05) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(125, 211, 252, .05) 1px,
      transparent 1px);
  background-size: 64px 64px;
  mask-image:
    radial-gradient(
      ellipse 75% 70% at 50% 35%,
      #000 20%,
      transparent 78%);
  -webkit-mask-image:
    radial-gradient(
      ellipse 75% 70% at 50% 35%,
      #000 20%,
      transparent 78%);
}
@keyframes land-float-a {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(3vw, 4vh) scale(1.06);
  }
}
@keyframes land-float-b {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-3vw, -3vh) scale(1.08);
  }
}
.landing-orb--1 {
  animation: land-float-a 22s ease-in-out infinite;
}
.landing-orb--2 {
  animation: land-float-b 26s ease-in-out infinite;
}
.landing-orb--3 {
  animation: land-float-a 30s ease-in-out infinite reverse;
}
.landing-nav {
  position: sticky;
  top: 16px;
  z-index: 5;
  margin: 16px auto 0;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 10px 8px 20px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: var(--glass-shadow);
}
.landing-nav__mark {
  font-weight: 700;
  letter-spacing: -.02em;
  color: #f0f9ff;
  font-size: 16px;
}
.landing-nav__mark .brand-talk,
.landing-nav__mark sup {
  color: #38bdf8;
}
.landing-nav__cta {
  font-size: 13px;
  padding: 8px 18px;
  white-space: nowrap;
}
.landing-nav__tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing-lang {
  position: relative;
}
.landing-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  color: #cbe7fb;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: .02em;
  transition:
    border-color .2s,
    background .2s,
    color .2s;
}
.landing-lang__btn:hover {
  border-color: var(--glass-bd);
  background: var(--glass-bg);
  color: #f0f9ff;
}
.landing-lang__globe {
  flex-shrink: 0;
  opacity: .85;
}
.landing-lang__caret {
  font-size: 9px;
  opacity: .7;
}
.landing-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 6px;
  border-radius: 10px;
  z-index: 20;
  background: rgba(8, 18, 34, .96);
  border: 1px solid var(--glass-bd);
  box-shadow: 0 12px 32px rgba(5, 6, 15, .5);
}
.landing-lang__menu[hidden] {
  display: none;
}
.landing-lang__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: none;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  color: #cbe7fb;
  text-align: left;
  transition: background .15s, color .15s;
}
.landing-lang__row:hover {
  background: rgba(56, 189, 248, .10);
}
.landing-lang__row.is-active {
  color: #38bdf8;
  font-weight: 600;
}
.landing-lang__check {
  flex-shrink: 0;
}
.landing-theme-toggle {
  background: none;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  padding: 6px 9px;
  color: #cbe7fb;
  line-height: 1;
  transition: border-color .2s, background .2s;
}
.landing-theme-toggle:hover {
  border-color: var(--glass-bd);
  background: var(--glass-bg);
}
.landing-theme-toggle,
.landing-lang__btn {
  position: relative;
}
.landing-theme-toggle::after,
.landing-lang__btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 44px;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .landing-nav {
    gap: 8px;
    padding-left: 14px;
  }
  .landing-nav__tools {
    gap: 2px;
  }
  .landing-nav__cta {
    padding: 8px 10px;
    font-size: 12px;
  }
  .landing-nav__mark {
    font-size: 14px;
  }
  .landing-lang__btn {
    padding: 6px 7px;
  }
  .landing-theme-toggle {
    padding: 6px 7px;
  }
}
.landing-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 460px) minmax(300px, 480px);
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  text-align: left;
}
.landing-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.landing-hero-copy .landing-tagline-sub {
  text-align: left;
  max-width: none;
  margin-left: 0;
}
.landing-hero-copy .landing-hero-actions {
  justify-content: flex-start;
}
.landing-hero-visual {
  position: relative;
}
.landing-hero-shot {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(
      120% 140% at 15% 0%,
      rgba(56, 189, 248, .22),
      transparent 55%),
    radial-gradient(
      120% 140% at 90% 100%,
      rgba(99, 102, 241, .18),
      transparent 55%),
    #0a1830;
  border: 1px solid var(--glass-bd);
  box-shadow: var(--glass-shadow);
}
.landing-hero-shot__chrome {
  position: absolute;
  top: 14px;
  left: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.landing-hero-shot__chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(226, 240, 253, .55);
}
.landing-hero-shot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.landing-hero-shot__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 13, 26, .55) 0%,
      rgba(5, 13, 26, 0) 30%,
      rgba(5, 13, 26, 0) 70%,
      rgba(5, 13, 26, .35) 100%);
}
.landing-hero-shot__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px;
  text-align: center;
  color: rgba(203, 231, 251, .55);
}
.landing-hero-shot__cap {
  font-size: 13px;
  line-height: 1.6;
}
.landing-hero-shot__spec {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(203, 231, 251, .35);
  font-family: var(--font-mono);
}
.landing-hero-live__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f87171;
  box-shadow: 0 0 8px 2px rgba(248, 113, 113, .65);
  animation: hero-live-pulse 1.6s ease-in-out infinite;
  margin-right: 2px;
}
@keyframes hero-live-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .35;
  }
}
.landing-hero-topbar__time canvas {
  vertical-align: middle;
  margin-right: 4px;
}
.landing-hero-chip {
  position: absolute;
  max-width: 220px;
  padding: 12px 16px;
  border-radius: 14px;
  z-index: 3;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: var(--glass-shadow);
  font-size: 13px;
  color: #cbe7fb;
}
.landing-hero-chip__label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7dd3fc;
}
.landing-hero-chip--transcript {
  top: 40%;
  left: -28px;
}
.landing-hero-chip--transcript p {
  margin: 6px 0 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .landing-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .landing-hero-copy {
    align-items: center;
  }
  .landing-hero-copy .landing-tagline-sub {
    text-align: center;
  }
  .landing-hero-copy .landing-hero-actions {
    justify-content: center;
  }
  .landing-hero-chip--transcript {
    left: 8px;
    top: auto;
    bottom: -18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .landing-hero-live__dot {
    animation: none;
  }
}
.landing-how,
.landing-guide,
.landing-cats,
.landing-login {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 24px;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(.985);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--rd, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #7dd3fc;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.landing-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px 2px rgba(56, 189, 248, .8);
  animation: land-pulse 2.4s ease-in-out infinite;
}
@keyframes land-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .35;
  }
}
.landing-wordmark {
  font-size: clamp(48px, 9vw, 88px);
  margin: 0 0 14px;
  color: #f0f9ff;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  text-wrap: balance;
}
.landing-wordmark .brand-talk {
  background:
    linear-gradient(
      180deg,
      #7dd3fc,
      #38bdf8 60%,
      #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-wordmark .brand-ai {
  font-size: .34em;
  vertical-align: super;
  color: #38bdf8;
  -webkit-text-fill-color: #38bdf8;
}
.landing-tagline {
  font-size: clamp(17px, 3vw, 24px);
  color: #cbe7fb;
  margin: 0 auto 12px;
  max-width: 640px;
  line-height: 1.5;
  text-wrap: balance;
  font-weight: 400;
}
.landing-tagline-sub {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(203, 231, 251, .62);
  margin: 0 auto 30px;
  max-width: 560px;
  line-height: 1.6;
  text-wrap: balance;
}
.landing-root--light .landing-tagline-sub {
  color: var(--land-ink-2);
}
.landing-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.landing-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  color: #e8f4fd;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: inset 0 1px 1px rgba(186, 214, 247, .10);
  transition:
    transform .25s cubic-bezier(.22, 1, .36, 1),
    box-shadow .25s,
    border-color .25s,
    background .25s;
}
.landing-btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(186, 214, 247, .18), 0 0 28px rgba(56, 189, 248, .25);
  border-color: rgba(125, 211, 252, .4);
}
.landing-btn--primary {
  color: #061018;
  font-weight: 600;
  background:
    linear-gradient(
      180deg,
      #9ce0ff,
      #38bdf8);
  border-color: rgba(125, 211, 252, .6);
  box-shadow: 0 6px 20px rgba(56, 189, 248, .30), inset 0 1px 1px rgba(255, 255, 255, .5);
}
.landing-btn--primary:hover {
  box-shadow: 0 10px 32px rgba(56, 189, 248, .5), inset 0 1px 1px rgba(255, 255, 255, .6);
}
.landing-btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      transparent 30%,
      rgba(255, 255, 255, .45) 50%,
      transparent 70%);
  transform: translateX(-120%);
}
.landing-btn--primary:hover::after {
  transform: translateX(120%);
  transition: transform .7s ease;
}
.landing-how h2,
.landing-guide h2,
.landing-cats h2,
.landing-login h2 {
  text-align: center;
  color: #f0f9ff;
  margin: 0 0 36px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.landing-step,
.landing-cat,
.landing-login form,
.landing-guide__card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 16px;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--glass-shadow);
}
.landing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.landing-step {
  padding: 26px;
  transition:
    transform .3s cubic-bezier(.22, 1, .36, 1),
    box-shadow .3s,
    border-color .3s;
}
.landing-step:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, .32);
  box-shadow: var(--glass-shadow), 0 0 30px rgba(56, 189, 248, .16);
}
.landing-step-n {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  color: #061018;
  background:
    linear-gradient(
      180deg,
      #9ce0ff,
      #38bdf8);
  box-shadow: 0 4px 16px rgba(56, 189, 248, .35);
}
.landing-step h3 {
  color: #f0f9ff;
  margin: 16px 0 8px;
  font-size: 18px;
  font-weight: 600;
}
.landing-step p {
  color: rgba(203, 231, 251, .62);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.landing-how--wide {
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
.landing-learn--btn-only {
  text-align: center;
  padding: 40px 24px;
}
.landing-how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.landing-how-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px;
  border-radius: 16px;
  text-decoration: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--glass-shadow);
  color: #cbe7fb;
  font-size: 15px;
  font-weight: 500;
  transition:
    transform .25s cubic-bezier(.22, 1, .36, 1),
    box-shadow .25s,
    border-color .25s,
    background .25s;
}
.landing-how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, .36);
  box-shadow: var(--glass-shadow), 0 0 28px rgba(56, 189, 248, .18);
}
.landing-how-card__label {
  flex: 1 1 auto;
}
.landing-how-card__arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: #38bdf8;
  transition: transform .2s cubic-bezier(.22, 1, .36, 1);
}
.landing-how-card:hover .landing-how-card__arrow {
  transform: translateX(4px);
}
.landing-how-cards--single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
}
.landing-how-card--wide {
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .landing-how--wide {
    padding-left: 16px;
    padding-right: 16px;
  }
  .landing-how-cards {
    grid-template-columns: 1fr;
  }
}
.landing-guide {
  text-align: center;
}
.landing-guide__card {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 28px;
}
.landing-guide p {
  color: rgba(203, 231, 251, .62);
  margin: 0 0 22px;
}
.landing-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}
.landing-cat {
  padding: 24px;
  text-align: center;
  color: #cbe7fb;
  font-weight: 500;
  transition:
    transform .3s cubic-bezier(.22, 1, .36, 1),
    box-shadow .3s,
    border-color .3s;
}
.landing-cat:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, .3);
  box-shadow: var(--glass-shadow), 0 0 26px rgba(56, 189, 248, .14);
}
.landing-cats-locked {
  text-align: center;
  color: #7dd3fc;
  margin-top: 22px;
  font-size: 14px;
}
.landing-login {
  max-width: 460px;
}
.landing-login form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}
.landing-login form[hidden] {
  display: none;
}
.landing-login input {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(125, 211, 252, .16);
  background: rgba(5, 13, 26, .6);
  color: #eaf6ff;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.landing-login input::placeholder {
  color: #6b8197;
}
.landing-login input:focus {
  outline: none;
  border-color: rgba(56, 189, 248, .55);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, .14);
}
.landing-login .login-error {
  color: #fca5a5;
}
.landing-login .login-success {
  text-align: center;
  color: #cbe7fb;
}
.landing-login-pop {
  position: relative;
}
.landing-login--pop {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  max-width: 360px;
  width: max-content;
  margin: 0;
  padding: 6px 0 0;
  text-align: left;
}
.landing-login--pop[hidden] {
  display: none;
}
.landing-login--pop h2 {
  text-align: left;
  font-size: 18px;
  margin: 0 0 4px;
  padding: 0 4px;
  color: #f0f9ff;
  font-weight: 600;
  letter-spacing: -.01em;
}
.landing-login--pop .login-error,
.landing-login--pop .login-success {
  margin: 0 4px;
}
@media (max-width: 480px) {
  .landing-login--pop {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    max-width: none;
    width: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .landing-orb,
  .landing-eyebrow::before {
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .landing-root {
    scroll-behavior: auto;
  }
}
.landing-root--light {
  --land-paper: #ffffff;
  --land-band: #f1f5f8;
  --land-mist: #eff1f6;
  --land-ink: #1f1f1f;
  --land-ink-2: #3c4043;
  --land-ink-3: #5f6368;
  --land-accent: #0e7490;
  --land-accent-hover: #155e75;
  --land-hairline: #dadce0;
  --land-card-shadow: 0 1px 2px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.05);
  --land-serif:
    Charter,
    "Bitstream Charter",
    "Source Serif 4",
    Georgia,
    "Times New Roman",
    serif;
  background: var(--land-paper);
  color: var(--land-ink);
}
.landing-root--light .landing-atmos {
  display: none;
}
.landing-root--light .landing-nav {
  top: 0;
  margin: 0;
  width: auto;
  max-width: none;
  min-height: 64px;
  justify-content: space-between;
  padding: 8px 24px;
  border-radius: 0;
  background: var(--land-paper);
  border: none;
  border-bottom: 1px solid var(--land-hairline);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.landing-root--light .landing-nav__mark {
  color: var(--land-ink);
}
.landing-root--light .landing-nav__mark .brand-talk,
.landing-root--light .landing-nav__mark sup {
  color: var(--land-accent);
}
.landing-root--light .landing-lang__btn {
  color: var(--land-ink);
}
.landing-root--light .landing-lang__btn:hover {
  border-color: var(--land-hairline);
  background: var(--land-band);
  color: var(--land-ink);
}
.landing-root--light .landing-lang__menu {
  background: var(--land-paper);
  border-color: var(--land-hairline);
  box-shadow: var(--land-card-shadow), 0 8px 24px rgba(0, 0, 0, .08);
}
.landing-root--light .landing-lang__row {
  color: var(--land-ink-2);
}
.landing-root--light .landing-lang__row:hover {
  background: var(--land-band);
}
.landing-root--light .landing-lang__row.is-active {
  color: var(--land-accent);
}
.landing-root--light .landing-theme-toggle {
  color: var(--land-ink-2);
}
.landing-root--light .landing-theme-toggle:hover {
  border-color: var(--land-hairline);
  background: var(--land-band);
}
.landing-root--light .landing-btn {
  border-radius: 10px;
  background: var(--land-paper);
  border: 1px solid var(--land-hairline);
  color: var(--land-ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.landing-root--light .landing-btn:hover {
  transform: translateY(-1px);
  border-color: var(--land-accent);
  color: var(--land-accent);
  box-shadow: var(--land-card-shadow);
}
.landing-root--light .landing-btn--primary {
  background: var(--land-accent);
  border-color: var(--land-accent);
  color: #ffffff;
}
.landing-root--light .landing-btn--primary:hover {
  background: var(--land-accent-hover);
  border-color: var(--land-accent-hover);
  color: #ffffff;
  box-shadow: var(--land-card-shadow);
}
.landing-root--light .landing-btn--primary::after {
  display: none;
}
.landing-root--light .landing-eyebrow {
  color: var(--land-ink-3);
  background: none;
  border-color: var(--land-hairline);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.landing-root--light .landing-eyebrow::before {
  background: var(--land-accent);
  box-shadow: none;
  animation: none;
}
.landing-root--light .landing-wordmark {
  font-family: var(--land-serif);
  font-weight: 600;
  color: var(--land-ink);
  font-size: clamp(44px, 6vw, 50px);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.landing-root--light .landing-wordmark .brand-talk {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--land-ink);
  border-bottom: 4px solid var(--land-ink);
  padding-bottom: 2px;
}
.landing-root--light .landing-wordmark .brand-ai {
  color: var(--land-accent);
  -webkit-text-fill-color: var(--land-accent);
}
.landing-root--light .landing-tagline {
  color: var(--land-ink-2);
}
.landing-root--light .landing-how h2,
.landing-root--light .landing-guide h2,
.landing-root--light .landing-cats h2,
.landing-root--light .landing-login h2,
.landing-root--light .landing-plans h2,
.landing-root--light .landing-request h2 {
  font-family: var(--land-serif);
  color: var(--land-ink);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.landing-root--light .landing-how,
.landing-root--light .landing-guide,
.landing-root--light .landing-cats,
.landing-root--light .landing-login,
.landing-root--light .landing-plans,
.landing-root--light .landing-request {
  padding-top: 64px;
  padding-bottom: 64px;
}
.landing-root--light .landing-how--wide {
  background: var(--land-band);
}
.landing-root--light .landing-cats,
.landing-root--light .landing-request {
  background: var(--land-band);
  box-shadow: 0 0 0 100vmax var(--land-band);
  clip-path: inset(0 -100vmax);
}
.landing-root--light .landing-step,
.landing-root--light .landing-cat,
.landing-root--light .landing-login form,
.landing-root--light .landing-guide__card,
.landing-root--light .landing-how-card,
.landing-root--light .landing-demo-tab,
.landing-root--light .landing-hero-chip,
.landing-root--light .landing-plan-card,
.landing-root--light .landing-checkout,
.landing-root--light .landing-request form {
  background: var(--land-paper);
  border: 1px solid var(--land-hairline);
  border-radius: 10px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--land-card-shadow);
}
.landing-root--light .landing-how-card:hover,
.landing-root--light .landing-cat:hover,
.landing-root--light .landing-step:hover,
.landing-root--light .landing-plan-card:hover {
  transform: translateY(-2px);
  border-color: #c2c8cd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .06), 0 4px 10px rgba(0, 0, 0, .06);
}
.landing-root--light .landing-guide__card {
  background: var(--land-mist);
}
.landing-root--light .landing-how-card {
  color: var(--land-ink);
}
.landing-root--light .landing-how-card__arrow {
  color: var(--land-accent);
}
.landing-root--light .landing-step h3 {
  color: var(--land-ink);
}
.landing-root--light .landing-step p {
  color: var(--land-ink-3);
}
.landing-root--light .landing-step-n {
  color: var(--land-ink);
  background: var(--land-paper);
  border: 1px solid var(--land-hairline);
  box-shadow: none;
  border-radius: 50%;
}
.landing-root--light .landing-guide p,
.landing-root--light .landing-trycta p {
  color: var(--land-ink-2);
}
.landing-root--light .landing-cat {
  color: var(--land-ink-2);
}
.landing-root--light .landing-cats-locked {
  color: var(--land-ink-3);
}
.landing-root--light .landing-plans > p {
  color: var(--land-ink-2);
}
.landing-root--light .plan-name {
  font-family: var(--land-serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--land-ink);
}
.landing-root--light .landing-plan-card--featured {
  border-color: var(--land-accent);
  box-shadow: var(--land-card-shadow);
}
.landing-root--light .plan-badge {
  color: var(--land-ink-2);
  background: var(--land-mist);
  border: 1px solid var(--land-hairline);
  box-shadow: none;
}
.landing-root--light .plan-price {
  color: var(--land-ink);
}
.landing-root--light .plan-price span {
  color: var(--land-ink-3);
}
.landing-root--light .plan-trial {
  color: var(--land-ink-2);
  background: var(--land-mist);
  border: 1px solid var(--land-hairline);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.landing-root--light .landing-checkout h3 {
  font-family: var(--land-serif);
  color: var(--land-ink);
  letter-spacing: -.01em;
}
.landing-root--light .landing-checkout label {
  color: var(--land-ink-2);
}
.landing-root--light .landing-checkout input,
.landing-root--light .landing-request input,
.landing-root--light .landing-login input {
  background: var(--land-paper);
  border: 1px solid var(--land-hairline);
  border-radius: 8px;
  color: var(--land-ink);
}
.landing-root--light .landing-checkout input::placeholder,
.landing-root--light .landing-request input::placeholder,
.landing-root--light .landing-login input::placeholder {
  color: var(--land-ink-3);
}
.landing-root--light .landing-checkout input:focus,
.landing-root--light .landing-request input:focus,
.landing-root--light .landing-login input:focus {
  outline: none;
  border-color: var(--land-accent);
  box-shadow: 0 0 0 3px rgba(14, 116, 144, .15);
}
.landing-root--light .landing-promo-msg {
  color: var(--land-ink-2);
}
.landing-root--light #land-checkout-otp p {
  color: var(--land-ink-2);
}
.landing-root--light .landing-checkout .login-link {
  color: var(--land-accent);
}
.landing-root--light .landing-checkout .login-link:hover {
  color: var(--land-accent-hover);
}
.landing-root--light .landing-checkout .login-error,
.landing-root--light .landing-request .login-error,
.landing-root--light .landing-login .login-error {
  background: rgba(220, 38, 38, .06);
  border: 1px solid rgba(220, 38, 38, .30);
  color: #b91c1c;
}
.landing-root--light .landing-login .login-success {
  color: var(--land-ink-2);
}
.landing-root--light .landing-login .login-link {
  color: var(--land-accent);
}
.landing-root--light .landing-request .login-success {
  background: rgba(16, 185, 129, .08);
  border-color: rgba(4, 120, 87, .30);
  color: #047857;
}
.landing-root--light .landing-request-type {
  background: var(--land-mist);
  border: 1px solid var(--land-hairline);
  border-radius: 10px;
}
.landing-root--light .landing-request-type span {
  color: var(--land-ink-2);
  border-radius: 8px;
}
.landing-root--light .landing-request-type input:checked + span {
  color: var(--land-accent);
  font-weight: 600;
  background: var(--land-paper);
  box-shadow: inset 0 0 0 1px var(--land-hairline), 0 1px 2px rgba(0, 0, 0, .05);
}
.landing-root--light .landing-request-type input:focus-visible + span {
  outline: 2px solid var(--land-accent);
  outline-offset: 2px;
}
.landing-root--light .landing-provider-picker-label {
  color: var(--land-ink-2);
}
.landing-root--light .segmented {
  background: var(--land-mist);
  border: 1px solid var(--land-hairline);
  border-radius: 10px;
}
.landing-root--light .segmented__item {
  color: var(--land-ink-2);
  border-radius: 8px;
}
.landing-root--light .segmented__item[aria-pressed=true] {
  color: var(--land-accent);
  font-weight: 600;
  background: var(--land-paper);
  box-shadow: inset 0 0 0 1px var(--land-hairline), 0 1px 2px rgba(0, 0, 0, .05);
}
.landing-root--light .segmented__item:focus-visible {
  outline: 2px solid var(--land-accent);
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .landing-root--light .landing-nav {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.landing-trycta,
.landing-market {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 24px;
  text-align: center;
}
.landing-demo {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  min-height: 74vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.landing-demo > * {
  flex-shrink: 0;
}
.landing-demo h2,
.landing-trycta h2,
.landing-market h2 {
  text-align: center;
  color: #f0f9ff;
  margin: 0 0 14px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.landing-sec-lead {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
  color: rgba(203, 231, 251, .72);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  text-wrap: balance;
}
.landing-demo-frame {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 5 / 4;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(
      120% 140% at 20% 0%,
      rgba(56, 189, 248, .28),
      transparent 55%),
    radial-gradient(
      120% 140% at 85% 100%,
      rgba(99, 102, 241, .22),
      transparent 55%),
    #0a1830;
  border: 1px solid var(--glass-bd);
  box-shadow: var(--glass-shadow);
}
.landing-demo-frame__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
.landing-demo-frame__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 13, 26, .5) 0%,
      rgba(5, 13, 26, .05) 35%,
      rgba(5, 13, 26, .15) 70%,
      rgba(5, 13, 26, .55) 100%);
}
.landing-demo-chrome {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.landing-demo-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(226, 240, 253, .55);
}
.landing-demo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #061018;
  background:
    linear-gradient(
      180deg,
      #9ce0ff,
      #38bdf8);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 34px rgba(56, 189, 248, .45);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}
.landing-demo-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}
.landing-demo-play svg {
  margin-left: 3px;
}
.landing-demo-duration {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 2;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: #cbe7fb;
  background: rgba(5, 13, 26, .55);
  border: 1px solid rgba(226, 240, 253, .18);
}
.landing-demo-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 0;
  max-width: 820px;
}
.landing-demo-tab {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: #7dd3fc;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
}
.landing-trycta {
  padding-top: 0;
}
.landing-trycta p {
  color: rgba(203, 231, 251, .68);
  margin: 0 0 22px;
}
.landing-steprow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.landing-stepcard {
  padding: 26px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--glass-shadow);
}
.landing-stepcard .landing-step-n {
  margin-bottom: 14px;
}
.landing-stepcard h3 {
  color: #f0f9ff;
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}
.landing-stepcard p {
  color: rgba(203, 231, 251, .64);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.landing-cta {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 24px 64px;
  text-align: center;
}
.landing-cta__card {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 32px;
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(56, 189, 248, .12),
      rgba(56, 189, 248, .03));
  border: 1px solid var(--glass-bd);
  box-shadow: var(--glass-shadow);
}
.landing-cta__card h2 {
  color: #f0f9ff;
  margin: 0 0 12px;
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.landing-cta__card p {
  color: rgba(203, 231, 251, .72);
  margin: 0 0 24px;
  line-height: 1.6;
}
.landing-nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.landing-nav__link {
  color: #cbe7fb;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s;
}
.landing-nav__link:hover {
  color: #7dd3fc;
}
.landing-footer {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 24px auto 0;
  padding: 30px 24px 46px;
  border-top: 1px solid rgba(125, 211, 252, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: center;
  justify-content: space-between;
}
.landing-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.landing-footer a {
  color: #cbe7fb;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.landing-footer a:hover {
  color: #7dd3fc;
}
.landing-footer__brand {
  color: #8fb4cf;
  font-size: 13px;
}
@media (max-width: 768px) {
  .landing-nav__links {
    display: none;
  }
}
.landing-root--light .landing-demo h2,
.landing-root--light .landing-trycta h2,
.landing-root--light .landing-market h2,
.landing-root--light .landing-cta__card h2 {
  font-family: var(--land-serif);
  color: var(--land-ink);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.landing-root--light .landing-sec-lead {
  color: var(--land-ink-2);
}
.landing-root--light .landing-stepcard {
  background: var(--land-paper);
  border: 1px solid var(--land-hairline);
  border-radius: 10px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--land-card-shadow);
}
.landing-root--light .landing-stepcard h3 {
  color: var(--land-ink);
}
.landing-root--light .landing-stepcard p {
  color: var(--land-ink-3);
}
.landing-root--light .landing-stepcard .landing-step-n {
  color: var(--land-ink);
  background: var(--land-paper);
  border: 1px solid var(--land-hairline);
  box-shadow: none;
  border-radius: 50%;
}
.landing-root--light .landing-cta__card {
  background: var(--land-mist);
  border: 1px solid var(--land-hairline);
  box-shadow: var(--land-card-shadow);
}
.landing-root--light .landing-cta__card p {
  color: var(--land-ink-2);
}
.landing-root--light .landing-nav__link {
  color: var(--land-ink-2);
}
.landing-root--light .landing-nav__link:hover {
  color: var(--land-accent);
}
.landing-root--light .landing-footer {
  border-top: 1px solid var(--land-hairline);
}
.landing-root--light .landing-footer a {
  color: var(--land-ink-2);
}
.landing-root--light .landing-footer a:hover {
  color: var(--land-accent);
}
.landing-root--light .landing-footer__brand {
  color: var(--land-ink-3);
}
.landing-root--light .landing-footer-col h4 {
  color: var(--land-accent);
}
.landing-root--light .landing-footer-brand-col p {
  color: var(--land-ink-3);
}
.landing-root--light .landing-footer-newsletter input {
  background: var(--land-paper);
  color: var(--land-ink);
  border-color: var(--land-hairline);
}
.landing-root--light .landing-footer-bottom {
  color: var(--land-ink-3);
  border-top-color: var(--land-hairline);
}
.landing-root--light .landing-cta-checks {
  color: var(--land-ink-2);
}
.landing-demo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px auto 0;
  max-width: 820px;
  text-align: left;
}
.landing-demo-step {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(203, 231, 251, .78);
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.landing-demo-step b {
  display: block;
  color: #7dd3fc;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.landing-demo-cap {
  margin: 16px auto 0;
  font-size: 13px;
  color: rgba(203, 231, 251, .55);
}
@media (max-width: 768px) {
  .landing-demo-steps {
    grid-template-columns: 1fr;
  }
}
.landing-about {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 24px;
}
.landing-about h2 {
  text-align: center;
  color: #f0f9ff;
  margin: 0 0 36px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.landing-about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.landing-about-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--glass-shadow);
  transition:
    transform .3s cubic-bezier(.22, 1, .36, 1),
    border-color .3s,
    box-shadow .3s;
}
.landing-about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, .32);
  box-shadow: var(--glass-shadow), 0 0 28px rgba(56, 189, 248, .16);
}
.landing-about-card h3 {
  color: #f0f9ff;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}
.landing-about-card p {
  color: rgba(203, 231, 251, .64);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .landing-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .landing-about-grid {
    grid-template-columns: 1fr;
  }
}
.landing-sys {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 24px;
}
.landing-sys h2 {
  text-align: center;
  color: #f0f9ff;
  margin: 0 0 36px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.landing-sys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.landing-sys-block {
  padding: 26px 24px;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--glass-shadow);
}
.landing-sys-block h3 {
  color: #f0f9ff;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}
.landing-sys-promise {
  color: rgba(203, 231, 251, .72);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.landing-sys-proofs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.landing-sys-proofs li {
  position: relative;
  padding-left: 22px;
  color: rgba(203, 231, 251, .62);
  font-size: 13px;
  line-height: 1.55;
}
.landing-sys-proofs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(56, 189, 248, .16);
  border: 1px solid rgba(125, 211, 252, .45);
  box-shadow: 0 0 8px rgba(56, 189, 248, .25);
}
@media (max-width: 900px) {
  .landing-sys-grid {
    grid-template-columns: 1fr;
  }
}
.landing-facts {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 8px 24px 40px;
}
.landing-facts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.landing-fact {
  padding: 18px 12px;
  border-radius: 14px;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.landing-fact b {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: -.02em;
}
.landing-fact span {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(203, 231, 251, .6);
}
@media (max-width: 900px) {
  .landing-facts-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .landing-market .landing-steprow {
    grid-template-columns: repeat(4, 1fr);
  }
}
.landing-teach {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 24px;
}
.landing-teach h2 {
  text-align: center;
  color: #f0f9ff;
  margin: 0 0 14px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.landing-teach-steps {
  counter-reset: tstep;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.landing-teach-steps li {
  counter-increment: tstep;
  position: relative;
  padding: 13px 16px 13px 52px;
  border-radius: 14px;
  color: rgba(203, 231, 251, .75);
  font-size: 14px;
  line-height: 1.55;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.landing-teach-steps li::before {
  content: counter(tstep);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #061018;
  background:
    linear-gradient(
      180deg,
      #9ce0ff,
      #38bdf8);
  box-shadow: 0 3px 10px rgba(56, 189, 248, .3);
}
.landing-teach-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
}
.landing-teach-chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  color: #7dd3fc;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
}
.landing-teach-note {
  max-width: 640px;
  margin: 0 auto 22px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(203, 231, 251, .5);
}
.landing-teach-cta {
  text-align: center;
}
.landing-faq {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
}
.landing-faq h2 {
  text-align: center;
  color: #f0f9ff;
  margin: 0 0 28px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.landing-faq details {
  margin-bottom: 10px;
  border-radius: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color .25s;
}
.landing-faq details[open] {
  border-color: rgba(125, 211, 252, .3);
}
.landing-faq summary {
  padding: 16px 18px;
  cursor: pointer;
  color: #e8f4fd;
  font-size: 15px;
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.landing-faq summary::-webkit-details-marker {
  display: none;
}
.landing-faq summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 18px;
  color: #38bdf8;
  transition: transform .2s;
}
.landing-faq details[open] summary::after {
  transform: rotate(45deg);
}
.landing-faq details p {
  margin: 0;
  padding: 0 18px 16px;
  color: rgba(203, 231, 251, .66);
  font-size: 14px;
  line-height: 1.65;
}
.landing-root--light .landing-about h2,
.landing-root--light .landing-sys h2,
.landing-root--light .landing-teach h2,
.landing-root--light .landing-faq h2 {
  font-family: var(--land-serif);
  color: var(--land-ink);
  font-size: 29px;
  font-weight: 600;
}
.landing-root--light .landing-about-card,
.landing-root--light .landing-sys-block,
.landing-root--light .landing-fact,
.landing-root--light .landing-demo-step,
.landing-root--light .landing-teach-steps li,
.landing-root--light .landing-teach-chip,
.landing-root--light .landing-faq details {
  background: var(--land-paper);
  border: 1px solid var(--land-hairline);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--land-card-shadow);
}
.landing-root--light .landing-about-card h3,
.landing-root--light .landing-sys-block h3 {
  color: var(--land-ink);
}
.landing-root--light .landing-about-card p,
.landing-root--light .landing-sys-promise {
  color: var(--land-ink-2);
}
.landing-root--light .landing-sys-proofs li,
.landing-root--light .landing-teach-steps li {
  color: var(--land-ink-2);
}
.landing-root--light .landing-demo-step {
  color: var(--land-ink-2);
  box-shadow: none;
}
.landing-root--light .landing-demo-step b {
  color: var(--land-accent);
}
.landing-root--light .landing-demo-cap {
  color: var(--land-ink-3);
}
.landing-root--light .landing-fact b {
  color: var(--land-accent);
}
.landing-root--light .landing-fact span {
  color: var(--land-ink-3);
}
.landing-root--light .landing-teach-chip {
  color: var(--land-accent);
  box-shadow: none;
}
.landing-root--light .landing-teach-note {
  color: var(--land-ink-3);
}
.landing-root--light .landing-faq summary {
  color: var(--land-ink);
}
.landing-root--light .landing-faq details p {
  color: var(--land-ink-2);
}
.landing-root--light .landing-faq summary::after {
  color: var(--land-accent);
}
[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}
.landing-hero-visual {
  max-width: 560px;
}
.landing-hero-shot {
  aspect-ratio: 16 / 11;
}
.landing-hero-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(5, 13, 26, .55);
  border-bottom: 1px solid rgba(226, 240, 253, .1);
  font-size: 12px;
  color: #cbe7fb;
}
.landing-hero-topbar__session {
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing-hero-topbar__time {
  font-variant-numeric: tabular-nums;
  color: rgba(203, 231, 251, .6);
}
.landing-hero-skills {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 208px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(5, 13, 26, .72);
  border: 1px solid rgba(226, 240, 253, .14);
  backdrop-filter: blur(10px);
}
.landing-hero-skills__title {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin: 0 0 10px;
}
.landing-hero-skill-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 11px;
}
.landing-hero-skill-row:last-child {
  margin-bottom: 0;
}
.landing-hero-skill-row span:first-child {
  flex: 0 0 84px;
  color: rgba(203, 231, 251, .72);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.landing-hero-skill-track {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: rgba(125, 211, 252, .14);
  overflow: hidden;
}
.landing-hero-skill-fill {
  height: 100%;
  border-radius: 3px;
  background:
    linear-gradient(
      90deg,
      #38bdf8,
      #7dd3fc);
}
.landing-hero-skill-row b {
  flex: 0 0 24px;
  text-align: right;
  color: #7dd3fc;
  font-weight: 600;
}
.landing-about-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.landing-about-card {
  position: relative;
}
.landing-about-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background:
    linear-gradient(
      150deg,
      #38bdf8,
      #0ea5e9);
  -webkit-mask:
    radial-gradient(
      circle at 30% 30%,
      transparent 0,
      transparent 0);
}
.landing-about-card .landing-about-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  font-size: 20px;
  background:
    linear-gradient(
      150deg,
      rgba(56, 189, 248, .16),
      rgba(14, 165, 233, .08));
  border: 1px solid rgba(56, 189, 248, .22);
}
.landing-steprow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.landing-stepcard {
  position: relative;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.landing-stepcard .landing-step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 15px;
  background:
    linear-gradient(
      180deg,
      #9ce0ff,
      #38bdf8);
  color: #061018;
  box-shadow: 0 4px 16px rgba(56, 189, 248, .35);
  position: relative;
  z-index: 2;
}
.landing-stepcard::after {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(50% + 30px);
  right: calc(-50% + 30px);
  height: 0;
  border-top: 2px dashed rgba(56, 189, 248, .28);
  z-index: 1;
}
.landing-stepcard:last-child::after {
  display: none;
}
.landing-stepcard h3 {
  font-size: 15px;
  margin: 0 0 6px;
}
.landing-stepcard p {
  font-size: 13px;
}
@media (max-width: 860px) {
  .landing-steprow {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .landing-stepcard::after {
    display: none;
  }
}
.landing-skills {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 24px;
  text-align: center;
}
.landing-skills h2 {
  text-align: center;
  color: #f0f9ff;
  margin: 0 0 36px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.landing-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.landing-skill-card {
  padding: 20px 18px;
  border-radius: 16px;
  text-align: left;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-top: 3px solid var(--sk-c, #38bdf8);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.landing-skill-card__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  font-size: 15px;
  margin-bottom: 12px;
  background: color-mix(in srgb, var(--sk-c, #38bdf8) 18%, transparent);
  color: var(--sk-c, #38bdf8);
}
.landing-skill-card__score {
  font-size: 22px;
  font-weight: 700;
  color: var(--sk-c, #38bdf8);
  margin: 0 0 2px;
}
.landing-skill-card__label {
  font-size: 13px;
  font-weight: 600;
  color: #f0f9ff;
  margin: 0 0 6px;
}
.landing-skill-card__desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(203, 231, 251, .6);
  margin: 0;
}
.landing-testi {
  position: relative;
  z-index: 1;
  padding: 56px 24px;
  background: rgba(5, 13, 26, .4);
  border-top: 1px solid rgba(125, 211, 252, .1);
  border-bottom: 1px solid rgba(125, 211, 252, .1);
}
.landing-testi__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.landing-testi h2 {
  text-align: center;
  color: #f0f9ff;
  margin: 0 0 32px;
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 600;
}
.landing-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.landing-testi-card {
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(226, 240, 253, .1);
}
.landing-testi-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0 0 16px;
  font-style: italic;
}
.landing-testi-person {
  display: flex;
  align-items: center;
  gap: 10px;
}
.landing-testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    linear-gradient(
      150deg,
      #38bdf8,
      #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.landing-testi-person b {
  display: block;
  font-size: 13px;
  color: #f0f9ff;
}
.landing-testi-person span {
  font-size: 12px;
  color: rgba(203, 231, 251, .55);
}
.landing-testi-placeholder-note {
  text-align: center;
  font-size: 11px;
  color: rgba(203, 231, 251, .35);
  margin-top: 20px;
}
.landing-trust {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}
.landing-trust p {
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(203, 231, 251, .45);
  margin: 0 0 20px;
  text-transform: uppercase;
}
.landing-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
}
.landing-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(203, 231, 251, .55);
}
.landing-trust-item svg {
  flex-shrink: 0;
  opacity: .6;
}
.landing-cta {
  background: rgba(56, 189, 248, .05);
  border-radius: 24px;
  max-width: 1000px;
  margin: 0 auto 56px;
  padding: 0;
}
.landing-cta__card {
  background:
    linear-gradient(
      135deg,
      rgba(56, 189, 248, .12),
      rgba(99, 102, 241, .10));
  border: 1px solid rgba(56, 189, 248, .22);
  border-radius: 24px;
  padding: 48px 32px;
  max-width: none;
}
.landing-cta-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(203, 231, 251, .7);
}
.landing-cta-checks span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.landing-cta-checks span::before {
  content: "✓";
  color: #34d399;
  font-weight: 700;
}
.landing-footer {
  display: block;
  padding: 48px 24px 32px;
}
.landing-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}
.landing-footer-brand-col p {
  font-size: 13px;
  color: rgba(203, 231, 251, .5);
  line-height: 1.6;
  margin: 10px 0 0;
  max-width: 240px;
}
.landing-footer-col h4 {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin: 0 0 14px;
  font-weight: 600;
}
.landing-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.landing-footer-col a {
  color: rgba(203, 231, 251, .7);
  text-decoration: none;
  font-size: 13px;
}
.landing-footer-col a:hover {
  color: #7dd3fc;
}
.landing-footer-newsletter {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.landing-footer-newsletter input {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  border-radius: 9px;
  border: 1px solid rgba(226, 240, 253, .16);
  background: rgba(5, 13, 26, .5);
  color: #eaf6ff;
  font-size: 13px;
}
.landing-footer-newsletter button {
  flex-shrink: 0;
  width: 36px;
  border-radius: 9px;
  border: none;
  background:
    linear-gradient(
      180deg,
      #9ce0ff,
      #38bdf8);
  color: #061018;
  font-weight: 700;
  cursor: pointer;
}
.landing-footer-bottom {
  max-width: 1120px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(125, 211, 252, .1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(203, 231, 251, .4);
}
@media (max-width: 860px) {
  .landing-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .landing-footer-grid {
    grid-template-columns: 1fr;
  }
}
.landing-root--light .landing-skill-card {
  background: var(--land-paper);
  border-color: var(--land-hairline);
  box-shadow: var(--land-card-shadow);
  backdrop-filter: none;
}
.landing-root--light .landing-skill-card__label {
  color: var(--land-ink);
}
.landing-root--light .landing-skill-card__desc {
  color: var(--land-ink-3);
}
.landing-root--light .landing-about-card .landing-about-ic {
  background: var(--land-mist);
  border-color: var(--land-hairline);
}
.landing-root--light .landing-skills h2 {
  font-family: var(--land-serif);
  color: var(--land-ink);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.landing-root--light .landing-trust p {
  color: var(--land-ink-3);
}
.landing-root--light .landing-trust-item {
  color: var(--land-ink-2);
}
.landing-testi {
  background: #0a1830;
}
.landing-root--light .landing-testi h2 {
  color: #f0f9ff;
}
.hub-root {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  z-index: 8500;
  background:
    radial-gradient(
      120% 80% at 50% -10%,
      rgba(56, 189, 248, .10),
      transparent 60%),
    radial-gradient(
      90% 60% at 85% 110%,
      rgba(99, 102, 241, .08),
      transparent 60%),
    #050d1a;
  color: #e2e8f0;
  font-family:
    "Inter",
    system-ui,
    sans-serif;
  --glass-bg: rgba(56,189,248,.045);
  --glass-bd: rgba(125,211,252,.14);
  --glass-shadow:
    inset 0 1px 1px rgba(199,211,234,.14),
    inset 0 28px 56px rgba(56,189,248,.05),
    0 24px 40px rgba(5,6,15,.5);
}
.hub-atmos {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hub-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .45;
  will-change: transform;
}
.hub-orb--1 {
  width: 50vw;
  height: 50vw;
  left: -10vw;
  top: -8vw;
  background:
    radial-gradient(
      circle,
      rgba(56, 189, 248, .38),
      transparent 68%);
  animation: land-float-a 24s ease-in-out infinite;
}
.hub-orb--2 {
  width: 40vw;
  height: 40vw;
  right: -8vw;
  bottom: -6vw;
  background:
    radial-gradient(
      circle,
      rgba(99, 102, 241, .32),
      transparent 68%);
  animation: land-float-b 30s ease-in-out infinite;
}
.hub-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 211, 252, .04) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(125, 211, 252, .04) 1px,
      transparent 1px);
  background-size: 64px 64px;
  mask-image:
    radial-gradient(
      ellipse 80% 75% at 50% 40%,
      #000 20%,
      transparent 78%);
  -webkit-mask-image:
    radial-gradient(
      ellipse 80% 75% at 50% 40%,
      #000 20%,
      transparent 78%);
}
@media (prefers-reduced-motion: reduce) {
  .hub-orb {
    animation: none;
  }
}
.hub-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  margin: 0;
  background: rgba(5, 13, 26, .72);
  border-bottom: 1px solid var(--glass-bd);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.hub-nav__mark {
  font-weight: 700;
  letter-spacing: -.02em;
  color: #f0f9ff;
  font-size: 17px;
  text-decoration: none;
}
.hub-nav__mark .brand-talk {
  color: #38bdf8;
}
.hub-nav__mark sup {
  color: #38bdf8;
  font-size: .4em;
  vertical-align: super;
}
.hub-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hub-root .user-locale-switcher {
  --user-locale-bg: var(--glass-bg);
  --user-locale-border: var(--glass-bd);
  --user-locale-fg: #cbe7fb;
  min-height: 34px;
  border-radius: 999px;
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hub-root .user-locale-switcher__select {
  min-height: 32px;
  max-width: 112px;
}
.hub-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #cbe7fb;
  text-decoration: none;
  cursor: pointer;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color .2s,
    box-shadow .2s,
    transform .2s;
}
.hub-nav__link:hover {
  border-color: rgba(125, 211, 252, .35);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(56, 189, 248, .2);
}
.hub-nav__link:focus-visible {
  outline: 2px solid #7dd3fc;
  outline-offset: 2px;
}
#hub-root:not(.hub-root--light) .hub-nav__link {
  min-height: 38px;
  color: #f0f9ff;
  background: rgba(15, 40, 65, .78);
  border-color: rgba(125, 211, 252, .30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
#hub-root:not(.hub-root--light) .hub-nav__link:hover {
  color: #ffffff;
  background: rgba(21, 96, 130, .70);
  border-color: rgba(125, 211, 252, .62);
}
.hub-settings-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
}
.hub-settings-icon__person {
  font-size: 22px;
  line-height: 1;
}
.hub-bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 20px 48px;
}
.hub-tile {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 18px;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--glass-shadow);
  padding: 22px 24px;
  transition:
    border-color .3s,
    box-shadow .3s,
    transform .3s cubic-bezier(.22, 1, .36, 1);
  overflow: hidden;
}
.hub-tile:hover {
  border-color: rgba(125, 211, 252, .28);
  box-shadow: var(--glass-shadow), 0 0 28px rgba(56, 189, 248, .12);
}
.hub-tile__label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin: 0 0 14px;
  font-weight: 600;
}
.hub-tile__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}
.hub-tile__head .hub-tile__label {
  margin: 0;
}
.hub-tile__link {
  font-size: 12px;
  font-weight: 600;
  color: #38bdf8;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.hub-tile__link:hover {
  color: #7dd3fc;
}
.hub-root--light .hub-tile__link {
  color: #0ea5e9;
}
.hub-root--light .hub-tile__link:hover {
  color: #0369a1;
}
.hub-tile--hero {
  grid-column: span 8;
}
.hub-tile--mission {
  grid-column: span 12;
}
.hub-tile--rewards {
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.hub-tile--rewards h2 {
  margin: 0;
  font-size: 25px;
}
.hub-tile--rewards p {
  margin: 7px 0 0;
  color: #aac3d4;
}
.hub-rewards-tile__action {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hub-rewards-tile__action > span {
  padding: 7px 11px;
  color: #f1bc6a;
  background: rgba(154, 93, 16, .16);
  border: 1px solid rgba(241, 188, 106, .28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.hub-tile--profile {
  grid-column: span 12;
}
.hub-tile--commit {
  grid-column: span 6;
}
.hub-tile--cohort {
  grid-column: span 6;
}
.hub-tile--recent {
  grid-column: span 12;
}
.hub-tile--learn {
  grid-column: span 12;
}
.hub-profile-body {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: 24px;
  align-items: start;
}
.hub-profile-shape .competency-shape {
  max-width: none;
}
.hub-axis-summary {
  font-size: 12px;
  color: #94a3b8;
  margin: 8px 0 0;
  line-height: 1.5;
}
.hub-domain-detail {
  margin-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, .2);
  padding-top: 10px;
}
.hub-domain-detail__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hub-domain-detail__back {
  margin-left: auto;
}
.hub-chip {
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 999px;
}
.hub-chip--danger {
  background: rgba(220, 38, 38, .15);
  color: #fca5a5;
}
.hub-chip--warning {
  background: rgba(245, 158, 11, .15);
  color: #fbbf24;
}
.hub-hero-name {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: #f0f9ff;
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.hub-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(56, 189, 248, .08);
  border: 1px solid rgba(125, 211, 252, .22);
  color: #cbe7fb;
}
.hub-pill strong {
  color: #38bdf8;
}
.hub-pill--empty {
  opacity: .75;
  font-weight: 400;
}
.hub-action-photo {
  width: 120px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 12%;
  border-radius: 12px;
  display: block;
}
.hub-tile--rec {
  display: flex;
  flex-direction: column;
}
.hub-rec-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.hub-overline {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin: 0 0 14px;
  font-weight: 600;
}
.hub-rec-title {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  margin: 0 0 6px;
  line-height: 1.3;
}
.hub-rec-title:hover {
  text-decoration: underline;
}
.hub-rec-hook {
  font-size: 14px;
  color: rgba(203, 231, 251, .78);
  margin: 0;
  line-height: 1.45;
}
.hub-rec-reason {
  font-size: 12px;
  color: rgba(203, 231, 251, .5);
  margin: 8px 0 0;
  line-height: 1.4;
}
.hub-rec-cta {
  align-self: flex-start;
  margin-top: auto;
  gap: 8px;
}
.hub-rec-cta-icon {
  flex-shrink: 0;
}
.hub-rec-more-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #94a3b8;
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, .15);
}
.hub-rec-more {
  list-style: none;
  margin: 8px 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hub-rec-more__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hub-rec-more__title {
  font-size: 13px;
  font-weight: 600;
  color: #cbe7fb;
  text-decoration: none;
}
.hub-rec-more__title:hover {
  color: #7dd3fc;
  text-decoration: underline;
}
.hub-rec-more__hook {
  font-size: 12px;
  color: rgba(203, 231, 251, .5);
  line-height: 1.4;
}
.hub-root--light .hub-overline {
  color: #0369a1;
}
.hub-root--light .hub-rec-hook {
  color: #334155;
}
.hub-root--light .hub-rec-reason {
  color: #64748b;
}
.hub-root--light .hub-rec-more-label {
  color: #64748b;
  border-top-color: rgba(15, 23, 42, .08);
}
.hub-root--light .hub-rec-more__title {
  color: #075985;
}
.hub-root--light .hub-rec-more__title:hover {
  color: #0369a1;
}
.hub-root--light .hub-rec-more__hook {
  color: #64748b;
}
.hub-tile--action {
  grid-column: span 4;
  display: flex;
  gap: 14px;
  align-items: stretch;
}
.hub-action-media {
  flex: 0 0 120px;
}
.hub-action-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.hub-action-title {
  font-size: 15px;
  font-weight: 600;
  color: #f0f9ff;
  margin: 0;
}
.hub-action-sub {
  font-size: 13px;
  color: rgba(203, 231, 251, .62);
  margin: 0;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.hub-action-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
@media (max-width: 380px) {
  .hub-tile--action {
    flex-direction: column;
  }
  .hub-action-media {
    flex: none;
    align-self: center;
  }
}
.hub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--glass-bd);
  color: #cbe7fb;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  transition:
    transform .2s,
    box-shadow .2s,
    border-color .2s;
  text-align: center;
}
.hub-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, .35);
  box-shadow: 0 6px 20px rgba(56, 189, 248, .2);
}
.hub-btn--primary {
  color: #061018;
  font-weight: 600;
  background:
    linear-gradient(
      180deg,
      #9ce0ff,
      #38bdf8);
  border-color: rgba(125, 211, 252, .6);
  box-shadow: 0 4px 16px rgba(56, 189, 248, .28), inset 0 1px 1px rgba(255, 255, 255, .45);
}
.hub-btn--primary:hover {
  box-shadow: 0 8px 28px rgba(56, 189, 248, .45), inset 0 1px 1px rgba(255, 255, 255, .55);
}
.hub-tile--mission {
  display: flex;
  align-items: center;
  gap: 24px;
  border-color: rgba(56, 189, 248, .24);
}
.hub-mission-copy {
  flex: 1;
  min-width: 0;
}
.hub-mission-copy .hub-overline {
  margin-bottom: 8px;
}
.hub-mission-title {
  margin: 0;
  color: #f0f9ff;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.3;
}
.hub-mission-sub {
  margin: 6px 0 0;
  color: rgba(203, 231, 251, .68);
  font-size: 13px;
  line-height: 1.45;
}
.hub-mission-score {
  display: inline-block;
  margin-left: 6px;
  color: #7dd3fc;
  font-weight: 700;
}
.hub-mission-cta {
  flex: 0 0 auto;
  text-decoration: none;
}
.hub-root--light .hub-mission-title {
  color: #0f172a;
}
.hub-root--light .hub-mission-sub {
  color: #475569;
}
.hub-root--light .hub-mission-score {
  color: #0369a1;
}
.hub-radar-canvas {
  width: 100%;
  display: block;
}
.hub-radar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 14px;
}
.hub-radar-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(203, 231, 251, .72);
}
.hub-radar-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  flex-shrink: 0;
}
.hub-radar-legend-btn {
  padding: 6px 12px;
  border-radius: 999px;
  font: inherit;
  line-height: 1.2;
  cursor: pointer;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  transition:
    border-color .2s,
    box-shadow .2s,
    transform .2s;
}
.hub-radar-legend-btn:hover {
  border-color: rgba(125, 211, 252, .4);
  box-shadow: 0 0 16px rgba(56, 189, 248, .16);
  transform: translateY(-1px);
}
.hub-radar-legend-btn:focus-visible {
  outline: 2px solid rgba(56, 189, 248, .6);
  outline-offset: 2px;
}
.hub-drill-items {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
}
.hub-drill-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(56, 189, 248, .05);
  border: 1px solid rgba(125, 211, 252, .12);
  font-size: 13px;
}
.hub-root--light .hub-drill-item {
  background: rgba(2, 132, 199, .06);
  border-color: rgba(15, 23, 42, .10);
}
.hub-drill-item-pct {
  flex-shrink: 0;
  font-weight: 700;
  color: #fca5a5;
  min-width: 34px;
}
.hub-root--light .hub-drill-item-pct {
  color: #dc2626;
}
.hub-drill-item-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hub-drill-item-rat {
  color: rgba(203, 231, 251, .6);
  font-size: 12px;
  line-height: 1.45;
}
.hub-root--light .hub-drill-item-rat {
  color: #64748b;
}
.hub-trend-mount {
  width: 100%;
  display: block;
  flex: 1 1 auto;
  min-height: 170px;
}
.hub-trend-mount svg {
  width: 100%;
  height: auto;
}
.hub-trend-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px 20px;
  margin: 0 0 12px;
}
.hub-trend-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.hub-trend-stat__value {
  font-size: 15px;
  font-weight: 600;
  color: #cbe7fb;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
}
.hub-trend-stat--main .hub-trend-stat__value {
  font-size: 26px;
  font-weight: 700;
  color: #f0f9ff;
  letter-spacing: -.02em;
}
.hub-trend-stat__label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #94a3b8;
  white-space: nowrap;
}
.hub-trend-delta {
  font-size: 13px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 999px;
}
.hub-trend-delta--up {
  color: #6ee7b7;
  background: rgba(52, 211, 153, .14);
}
.hub-trend-delta--down {
  color: #fca5a5;
  background: rgba(248, 113, 113, .13);
}
.hub-trend-delta--flat {
  color: rgba(203, 231, 251, .6);
  background: rgba(125, 211, 252, .10);
}
#hub-commit-body {
  font-size: 14px;
  color: #cbe7fb;
  line-height: 1.55;
}
.hub-commit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 230px;
  overflow-y: auto;
}
.hub-commit-empty {
  color: rgba(203, 231, 251, .45);
  font-style: italic;
  font-size: 13px;
}
.hub-commit-group {
  border-top: 1px solid rgba(148, 163, 184, .15);
  padding-top: 8px;
  margin-top: 8px;
}
.hub-commit-group:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.hub-commit-group--muted .hub-commit-group__name {
  opacity: .6;
}
.hub-commit-group__head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
}
.hub-commit-group__count {
  margin-left: auto;
  font-size: 11px;
  color: #fbbf24;
}
.hub-commit-group--muted .hub-commit-group__count {
  color: #94a3b8;
}
.hub-commit-group__hint {
  font-size: 11px;
  color: #94a3b8;
  margin: 4px 0 0;
}
.hub-commit-group__head:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}
.hub-root--light .hub-commit-group__count {
  color: #92400e;
}
.hub-root--light .hub-commit-group--muted .hub-commit-group__count {
  color: #64748b;
}
.hub-root--light .hub-commit-group__hint {
  color: #64748b;
}
.hub-tile--how {
  grid-column: span 12;
}
.hub-how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}
.hub-how-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 12px;
  text-decoration: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--glass-shadow);
  color: #cbe7fb;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform .22s cubic-bezier(.22, 1, .36, 1),
    border-color .22s,
    box-shadow .22s;
}
.hub-how-card:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, .3);
  box-shadow: var(--glass-shadow), 0 0 22px rgba(56, 189, 248, .14);
}
.hub-how-card__label {
  flex: 1 1 auto;
}
.hub-how-card__arrow {
  flex-shrink: 0;
  font-size: 16px;
  color: #38bdf8;
  transition: transform .2s cubic-bezier(.22, 1, .36, 1);
}
.hub-how-card:hover .hub-how-card__arrow {
  transform: translateX(3px);
}
.hub-cohort-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hub-cohort-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  align-items: center;
}
.hub-cohort-label {
  font-size: 11px;
  color: rgba(203, 231, 251, .6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hub-cohort-bars {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hub-cohort-bar-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hub-cohort-bar-track {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(125, 211, 252, .1);
  overflow: hidden;
}
.hub-cohort-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width .5s cubic-bezier(.22, 1, .36, 1);
}
.hub-cohort-bar-fill--you {
  background:
    linear-gradient(
      90deg,
      #38bdf8,
      #7dd3fc);
}
.hub-cohort-bar-fill--cohort {
  background: rgba(125, 211, 252, .28);
}
.hub-cohort-bar-pct {
  font-size: 11px;
  color: rgba(203, 231, 251, .55);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}
.hub-cohort-you-label,
.hub-cohort-cohort-label {
  font-size: 10px;
  color: rgba(125, 211, 252, .6);
  letter-spacing: .1em;
}
.hub-recent-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hub-recent-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(56, 189, 248, .025);
  border: 1px solid rgba(125, 211, 252, .08);
  text-decoration: none;
  color: #cbe7fb;
  font-size: 13px;
  transition: border-color .2s, background .2s;
}
.hub-recent-row:hover {
  border-color: rgba(125, 211, 252, .22);
  background: rgba(56, 189, 248, .06);
}
.hub-recent-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.hub-recent-badge--green {
  background: rgba(52, 211, 153, .15);
}
.hub-recent-badge--yellow {
  background: rgba(251, 191, 36, .13);
}
.hub-recent-badge--red {
  background: rgba(248, 113, 113, .12);
}
.hub-recent-badge--gray {
  background: rgba(148, 163, 184, .12);
  color: #94a3b8;
}
.hub-recent-title {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hub-recent-pct {
  font-size: 12px;
  font-weight: 600;
  color: rgba(203, 231, 251, .7);
  flex-shrink: 0;
}
.hub-recent-date {
  font-size: 11px;
  color: rgba(203, 231, 251, .45);
  flex-shrink: 0;
}
.hub-recent-empty {
  color: rgba(203, 231, 251, .45);
  font-style: italic;
  font-size: 13px;
}
.hub-guide-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  background: rgba(56, 189, 248, .06);
  border: 1px solid rgba(125, 211, 252, .14);
  color: #cbe7fb;
  margin-bottom: 20px;
  transition: border-color .2s, background .2s;
}
.hub-guide-link:hover {
  border-color: rgba(125, 211, 252, .28);
  background: rgba(56, 189, 248, .10);
}
.hub-guide-cta {
  color: #38bdf8;
  font-size: 13px;
  font-weight: 500;
}
.hub-cats-title {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin: 0 0 12px;
  font-weight: 600;
}
.hub-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.hub-cat {
  padding: 18px 20px;
  border-radius: 12px;
  cursor: pointer;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  color: #cbe7fb;
  font-weight: 500;
  font-size: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color .25s,
    transform .25s,
    box-shadow .25s;
  text-align: center;
}
.hub-cat:hover {
  border-color: rgba(125, 211, 252, .32);
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow), 0 0 24px rgba(56, 189, 248, .14);
}
.hub-loading {
  color: rgba(203, 231, 251, .45);
  font-style: italic;
  font-size: 14px;
}
.hub-shell-placeholder {
  min-height: 3.5rem;
  margin: 0;
  border-radius: 12px;
  background:
    linear-gradient(
      90deg,
      rgba(148, 163, 184, .08),
      rgba(148, 163, 184, .16),
      rgba(148, 163, 184, .08));
  background-size: 200% 100%;
  animation: hub-shell-shimmer 1.4s linear infinite;
}
[data-hub-start-hydration] {
  min-height: 10rem;
}
@keyframes hub-shell-shimmer {
  to {
    background-position: -200% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hub-shell-placeholder {
    animation: none;
  }
}
#hub-start-tile .picker-search {
  background: rgba(5, 13, 26, .4);
  border: 1px solid var(--glass-bd);
  color: #eaf6ff;
  margin-bottom: 14px;
}
#hub-start-tile .picker-search::placeholder {
  color: rgba(203, 231, 251, .4);
}
#hub-start-tile .picker-search:focus {
  border-color: rgba(125, 211, 252, .4);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, .15);
}
#hub-start-tile .hub-start-chips {
  margin-bottom: 14px;
}
#hub-start-tile .picker-chip {
  background: rgba(56, 189, 248, .04);
  border: 1px solid var(--glass-bd);
  color: #cbe7fb;
}
#hub-start-tile .picker-chip:hover {
  border-color: rgba(125, 211, 252, .3);
  background: rgba(56, 189, 248, .08);
}
#hub-start-tile .picker-chip.active {
  background:
    linear-gradient(
      180deg,
      #38bdf8,
      #0ea5e9);
  border-color: rgba(3, 105, 161, .5);
  color: #061018;
  font-weight: 600;
}
.hub-start-collections {
  margin-bottom: 18px;
}
.hub-start-collections__label {
  margin: 0 0 8px;
}
.hub-start-cta {
  width: 100%;
  padding: 13px 20px;
  font-size: 15px;
  text-align: center;
  justify-content: center;
}
.hub-start-cta[disabled] {
  opacity: .5;
  cursor: not-allowed;
}
.hub-start-cta[disabled]:hover {
  transform: none;
  box-shadow: none;
}
.hub-root--light #hub-start-tile .picker-search {
  background: rgba(255, 255, 255, .7);
  border-color: rgba(15, 23, 42, .12);
  color: #0f172a;
}
.hub-root--light #hub-start-tile .picker-search::placeholder {
  color: rgba(71, 85, 105, .6);
}
.hub-root--light #hub-start-tile .picker-chip {
  background: rgba(255, 255, 255, .6);
  border-color: rgba(15, 23, 42, .12);
  color: #1f2937;
}
.hub-root--light #hub-start-tile .picker-chip:hover {
  border-color: rgba(3, 105, 161, .3);
}
.hub-root--light #hub-start-tile .picker-chip.active {
  background:
    linear-gradient(
      180deg,
      #38bdf8,
      #0ea5e9);
  border-color: rgba(3, 105, 161, .5);
  color: #ffffff;
}
@media (max-width: 768px) {
  .hub-tile--hero,
  .hub-tile--action,
  .hub-tile--mission,
  .hub-tile--profile,
  .hub-tile--commit,
  .hub-tile--cohort,
  .hub-tile--recent,
  .hub-tile--learn {
    grid-column: span 12;
  }
  .hub-bento {
    gap: 12px;
    padding: 0 12px 36px;
  }
  .hub-nav {
    padding: 8px 16px;
  }
  .hub-tile--mission {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .hub-mission-cta {
    align-self: stretch;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hub-tile--hero {
    grid-column: span 7;
  }
  .hub-tile--action {
    grid-column: span 5;
  }
  .hub-tile--profile {
    grid-column: span 12;
  }
  .hub-tile--commit {
    grid-column: span 6;
  }
  .hub-tile--cohort {
    grid-column: span 6;
  }
}
@media (max-width: 980px) {
  .hub-profile-body {
    grid-template-columns: 1fr;
  }
  .hub-profile-shape .competency-shape {
    max-width: 360px;
    margin-inline: auto;
  }
}
.hub-root--light {
  background:
    radial-gradient(
      120% 80% at 50% -10%,
      rgba(14, 165, 233, .10),
      transparent 60%),
    radial-gradient(
      90% 60% at 85% 110%,
      rgba(99, 102, 241, .06),
      transparent 60%),
    #eef3f8;
  color: #1f2937;
  --glass-bg: rgba(255,255,255,.72);
  --glass-bd: rgba(15,23,42,.08);
  --glass-shadow: 0 1px 1px rgba(255,255,255,.6) inset, 0 10px 28px rgba(15,23,42,.08);
}
.hub-root--light .hub-nav {
  background: rgba(238, 243, 248, .88);
  border-bottom-color: rgba(15, 23, 42, .08);
}
.hub-root--light .hub-nav__mark {
  color: #0f172a;
}
.hub-root--light .hub-nav__mark .brand-talk {
  color: #0369a1;
}
.hub-root--light .hub-nav__mark sup {
  color: #0369a1;
}
.hub-root--light .user-locale-switcher {
  --user-locale-bg: rgba(255,255,255,.6);
  --user-locale-border: rgba(15,23,42,.12);
  --user-locale-fg: #0f172a;
}
.hub-root--light .hub-nav__link {
  color: #0f172a;
  background: rgba(255, 255, 255, .6);
  border-color: rgba(15, 23, 42, .12);
}
.hub-root--light .hub-nav__link:hover {
  border-color: rgba(3, 105, 161, .35);
  box-shadow: 0 4px 16px rgba(14, 165, 233, .15);
}
.hub-theme-toggle {
  padding: 7px 11px;
  font-size: 15px;
  line-height: 1;
}
.hub-root--light .hub-orb {
  opacity: .18;
}
.hub-root--light .hub-grid {
  background-image:
    linear-gradient(rgba(15, 23, 42, .04) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(15, 23, 42, .04) 1px,
      transparent 1px);
}
.hub-root--light .hub-tile {
  box-shadow: 0 1px 1px rgba(255, 255, 255, .6) inset, 0 10px 28px rgba(15, 23, 42, .08);
}
.hub-root--light .hub-tile:hover {
  box-shadow: 0 2px 2px rgba(255, 255, 255, .7) inset, 0 16px 36px rgba(15, 23, 42, .12);
}
.hub-root--light .hub-tile__label {
  color: #0369a1;
}
.hub-root--light .hub-hero-name {
  color: #0f172a;
}
.hub-root--light .hub-pill {
  background: rgba(14, 165, 233, .10);
  border-color: rgba(3, 105, 161, .18);
  color: #0369a1;
}
.hub-root--light .hub-pill strong {
  color: #0369a1;
}
.hub-root--light .hub-action-title {
  color: #0f172a;
}
.hub-root--light .hub-action-sub {
  color: #475569;
}
.hub-root--light .hub-btn {
  color: #1f2937;
  border-color: rgba(15, 23, 42, .12);
  background: rgba(255, 255, 255, .7);
}
.hub-root--light .hub-btn:hover {
  border-color: rgba(3, 105, 161, .3);
  box-shadow: 0 6px 20px rgba(14, 165, 233, .15);
}
.hub-root--light .hub-btn--primary {
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #38bdf8,
      #0ea5e9);
  border-color: rgba(3, 105, 161, .5);
  box-shadow: 0 4px 16px rgba(14, 165, 233, .25), inset 0 1px 1px rgba(255, 255, 255, .35);
}
.hub-root--light .hub-btn--primary:hover {
  box-shadow: 0 8px 28px rgba(14, 165, 233, .40), inset 0 1px 1px rgba(255, 255, 255, .45);
}
.hub-root--light .hub-trend-stat__value {
  color: #475569;
}
.hub-root--light .hub-trend-stat--main .hub-trend-stat__value {
  color: #0f172a;
}
.hub-root--light .hub-trend-stat__label {
  color: #64748b;
}
.hub-root--light .hub-trend-delta--up {
  color: #047857;
  background: rgba(16, 185, 129, .13);
}
.hub-root--light .hub-trend-delta--down {
  color: #b91c1c;
  background: rgba(239, 68, 68, .10);
}
.hub-root--light .hub-trend-delta--flat {
  color: #475569;
  background: rgba(14, 165, 233, .08);
}
.hub-root--light .hub-how-card {
  color: #0f172a;
}
.hub-root--light .hub-how-card:hover {
  border-color: rgba(14, 165, 233, .3);
  box-shadow: var(--glass-shadow), 0 0 18px rgba(14, 165, 233, .10);
}
.hub-root--light .hub-how-card__arrow {
  color: #0ea5e9;
}
.landing-how-card {
}
.hub-root--light #hub-commit-body {
  color: #1f2937;
}
.hub-root--light .hub-commit-empty {
  color: #64748b;
}
.hub-root--light .hub-cohort-label {
  color: #475569;
}
.hub-root--light .hub-cohort-bar-track {
  background: rgba(15, 23, 42, .07);
}
.hub-root--light .hub-cohort-bar-fill--you {
  background:
    linear-gradient(
      90deg,
      #0ea5e9,
      #38bdf8);
}
.hub-root--light .hub-cohort-bar-fill--cohort {
  background: rgba(14, 165, 233, .22);
}
.hub-root--light .hub-cohort-bar-pct {
  color: #475569;
}
.hub-root--light .hub-cohort-you-label,
.hub-root--light .hub-cohort-cohort-label {
  color: #0369a1;
}
.hub-root--light .hub-recent-row {
  color: #1f2937;
  border-color: rgba(15, 23, 42, .07);
  background: rgba(255, 255, 255, .5);
}
.hub-root--light .hub-recent-row:hover {
  border-color: rgba(14, 165, 233, .3);
  background: rgba(14, 165, 233, .05);
}
.hub-root--light .hub-recent-title {
  color: #0f172a;
}
.hub-root--light .hub-recent-pct {
  color: #1f2937;
}
.hub-root--light .hub-recent-date {
  color: #64748b;
}
.hub-root--light .hub-recent-empty {
  color: #64748b;
}
.hub-root--light .hub-recent-badge--green {
  background: rgba(16, 185, 129, .15);
}
.hub-root--light .hub-recent-badge--yellow {
  background: rgba(251, 191, 36, .15);
}
.hub-root--light .hub-recent-badge--red {
  background: rgba(239, 68, 68, .13);
}
.hub-root--light .hub-recent-badge--gray {
  background: rgba(100, 116, 139, .12);
  color: #475569;
}
.hub-root--light .hub-guide-link {
  color: #0f172a;
  border-color: rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .55);
}
.hub-root--light .hub-guide-link:hover {
  border-color: rgba(14, 165, 233, .3);
  background: rgba(14, 165, 233, .06);
}
.hub-root--light .hub-guide-cta {
  color: #0369a1;
}
.hub-root--light .hub-cats-title {
  color: #0369a1;
}
.hub-root--light .hub-cat {
  color: #1f2937;
  border-color: rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .55);
}
.hub-root--light .hub-cat:hover {
  border-color: rgba(14, 165, 233, .3);
}
.hub-root--light .hub-loading {
  color: #64748b;
}
.hub-root--light .hub-radar-legend-item {
  color: #1f2937;
}
.hub-root--light .hub-radar-legend-dot {
  background: #0ea5e9;
}
.commitment-item {
  list-style: none;
}
.commitment-item__card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(56, 189, 248, .04);
  border: 1px solid rgba(125, 211, 252, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: inherit;
  text-decoration: none;
  transition:
    transform .22s cubic-bezier(.22, 1, .36, 1),
    border-color .22s,
    box-shadow .22s;
}
.commitment-item__card--linked:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, .28);
  box-shadow: 0 4px 20px rgba(56, 189, 248, .10);
}
.commitment-item__card--static {
  cursor: default;
}
html.profile-light .commitment-item__card {
  background: rgba(14, 165, 233, .05);
  border-color: rgba(15, 23, 42, .09);
}
html.profile-light .commitment-item__card--linked:hover {
  border-color: rgba(14, 165, 233, .28);
  box-shadow: 0 4px 16px rgba(14, 165, 233, .08);
}
@media (max-width: 768px) {
  .hub-how-cards {
    grid-template-columns: 1fr;
  }
}
.demo-banner {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--color-primary-soft, #e8f0f5);
  color: var(--color-primary, #156082);
  border: 1px solid var(--color-border, #e5e7eb);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.demo-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary, #156082);
}
.demo-refused {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--color-bg, #fafaf7);
}
.demo-refused-card {
  max-width: 440px;
  text-align: center;
  background: var(--color-surface, #ffffff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.demo-refused-title {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--color-text, #1f2937);
}
.demo-refused-msg {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-muted, #6b7280);
}
.demo-refused-cta {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 10px;
  background: var(--color-primary, #156082);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
.demo-refused-cta:hover {
  background: var(--color-primary-hover, #0f9ed5);
}
.landing-plans,
.landing-request {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 56px 24px;
}
.landing-plans {
  max-width: 960px;
}
.landing-request {
  max-width: 508px;
}
.landing-plans h2,
.landing-request h2 {
  text-align: center;
  color: #f0f9ff;
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.landing-request h2 {
  margin-bottom: 28px;
}
.landing-plans > p {
  text-align: center;
  color: rgba(203, 231, 251, .62);
  margin: 0 auto 36px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.5;
}
.landing-checkout input,
.landing-request input,
.hub-limited__invite input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(125, 211, 252, .16);
  background: rgba(5, 13, 26, .6);
  color: #eaf6ff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.landing-checkout input::placeholder,
.landing-request input::placeholder,
.hub-limited__invite input::placeholder {
  color: #6b8197;
}
.landing-checkout input:focus,
.landing-request input:focus,
.hub-limited__invite input:focus {
  outline: none;
  border-color: rgba(56, 189, 248, .55);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, .14);
}
button.landing-btn {
  font-family: inherit;
}
.landing-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  align-items: stretch;
}
.landing-plan-grid:empty {
  display: none;
}
.landing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 26px 26px;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--glass-shadow);
  transition:
    transform .3s cubic-bezier(.22, 1, .36, 1),
    border-color .3s,
    box-shadow .3s;
}
.landing-plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, .32);
  box-shadow: var(--glass-shadow), 0 0 30px rgba(56, 189, 248, .16);
}
.landing-plan-card--featured {
  border-color: rgba(56, 189, 248, .42);
  box-shadow: var(--glass-shadow), 0 0 34px rgba(56, 189, 248, .20);
}
.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #061018;
  background:
    linear-gradient(
      180deg,
      #9ce0ff,
      #38bdf8);
  box-shadow: 0 4px 14px rgba(56, 189, 248, .35);
}
.plan-name {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7dd3fc;
  font-weight: 600;
}
.landing-plan-card--featured .plan-name {
  padding-right: 110px;
}
.plan-price {
  color: #f0f9ff;
}
.plan-price strong {
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -.02em;
}
.plan-price span {
  font-size: 15px;
  color: rgba(203, 231, 251, .6);
  margin-left: 4px;
}
.plan-trial {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #7dd3fc;
  background: rgba(56, 189, 248, .08);
  border: 1px solid rgba(56, 189, 248, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.landing-plan-card .landing-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.landing-checkout {
  max-width: 460px;
  margin: 36px auto 0;
  padding: 28px;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--glass-shadow);
}
.landing-checkout[hidden] {
  display: none;
}
.landing-checkout h3 {
  margin: 0 0 18px;
  text-align: center;
  color: #f0f9ff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.landing-checkout form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.landing-checkout form[hidden],
.landing-request form[hidden] {
  display: none;
}
.landing-checkout label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(203, 231, 251, .75);
  margin: 0 0 -8px 2px;
}
.landing-promo {
  display: flex;
  gap: 10px;
}
.landing-promo input {
  flex: 1 1 auto;
  min-width: 0;
}
.landing-promo .landing-btn {
  flex-shrink: 0;
  padding: 12px 22px;
}
.landing-promo-msg {
  margin: -4px 0 0 2px;
  font-size: 13px;
  color: #7dd3fc;
}
.landing-checkout .landing-btn--primary {
  width: 100%;
  justify-content: center;
}
.landing-checkout .login-error,
.landing-request .login-error {
  background: rgba(248, 113, 113, .08);
  border: 1px solid rgba(248, 113, 113, .3);
  color: #fca5a5;
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 14px;
  font-size: 14px;
}
.landing-provider-picker-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(203, 231, 251, .75);
  margin: 4px 0 -4px 2px;
}
.segmented {
  display: flex;
  padding: 4px;
  border-radius: 999px;
  margin: 0 0 4px;
  background: rgba(5, 13, 26, .5);
  border: 1px solid rgba(125, 211, 252, .14);
}
.segmented__item {
  flex: 1 1 0;
  padding: 10px 12px;
  border: none;
  border-radius: 999px;
  background: none;
  color: #cbe7fb;
  font-size: 14px;
  cursor: pointer;
  transition:
    background .2s,
    color .2s,
    box-shadow .2s;
}
.segmented__item[aria-pressed=true] {
  color: #061018;
  font-weight: 600;
  background:
    linear-gradient(
      180deg,
      #9ce0ff,
      #38bdf8);
  box-shadow: 0 4px 14px rgba(56, 189, 248, .30);
}
.segmented__item:focus-visible {
  outline: 2px solid rgba(56, 189, 248, .6);
  outline-offset: 2px;
}
#land-checkout-otp {
  margin-top: 18px;
  text-align: center;
}
#land-checkout-otp[hidden] {
  display: none;
}
#land-checkout-otp p {
  margin: 0 0 14px;
  font-size: 14px;
  color: rgba(203, 231, 251, .7);
  line-height: 1.5;
}
#land-checkout-code {
  text-align: center;
  letter-spacing: .35em;
  font-variant-numeric: tabular-nums;
}
.landing-checkout .login-link {
  color: #7dd3fc;
  font-size: 13px;
  margin-top: 12px;
}
.landing-checkout .login-link:hover {
  color: #bae6fd;
}
.landing-request form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--glass-shadow);
}
.landing-request-type {
  display: flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(5, 13, 26, .5);
  border: 1px solid rgba(125, 211, 252, .14);
}
.landing-request-type label {
  position: relative;
  flex: 1 1 0;
  cursor: pointer;
}
.landing-request-type input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.landing-request-type span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: #cbe7fb;
  transition:
    background .2s,
    color .2s,
    box-shadow .2s;
}
.landing-request-type input:checked + span {
  color: #061018;
  font-weight: 600;
  background:
    linear-gradient(
      180deg,
      #9ce0ff,
      #38bdf8);
  box-shadow: 0 4px 14px rgba(56, 189, 248, .30);
}
.landing-request-type input:focus-visible + span {
  outline: 2px solid rgba(56, 189, 248, .6);
  outline-offset: 2px;
}
.landing-request .landing-btn--primary {
  width: 100%;
  justify-content: center;
}
.landing-request .login-success {
  background: rgba(52, 211, 153, .08);
  border: 1px solid rgba(52, 211, 153, .28);
  color: #6ee7b7;
  border-radius: 12px;
  padding: 12px 16px;
  margin: 16px 0 0;
  font-size: 14px;
  text-align: center;
}
.hub-access-tile {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hub-access-tile[hidden] {
  display: none;
}
.hub-access-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(56, 189, 248, .08);
  border: 1px solid rgba(125, 211, 252, .22);
  color: #cbe7fb;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hub-limited {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 32px auto;
  padding: 32px 28px;
  border-radius: 18px;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--glass-shadow);
}
.hub-limited[hidden] {
  display: none;
}
.hub-limited h2 {
  margin: 0 0 20px;
  color: #f0f9ff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.hub-limited__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 18px;
}
.hub-limited__invite {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}
.hub-limited__invite input {
  flex: 1 1 auto;
  min-width: 0;
}
.hub-limited__invite .landing-btn {
  flex-shrink: 0;
  padding: 12px 22px;
}
.hub-root--light .hub-access-chip {
  background: rgba(14, 165, 233, .10);
  border-color: rgba(3, 105, 161, .18);
  color: #0369a1;
}
.hub-root--light .hub-limited h2 {
  color: #0f172a;
}
.hub-root--light .hub-limited .landing-btn {
  color: #0f172a;
}
.hub-root--light .hub-limited .landing-btn--primary {
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #38bdf8,
      #0ea5e9);
  border-color: rgba(3, 105, 161, .5);
}
.hub-root--light .hub-limited__invite input {
  background: rgba(255, 255, 255, .7);
  color: #0f172a;
  border-color: rgba(15, 23, 42, .12);
}
.hub-root--light .hub-limited__invite input::placeholder {
  color: #64748b;
}
@media (max-width: 700px) {
  .landing-plan-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .landing-plans,
  .landing-request {
    padding: 44px 16px;
  }
  .landing-checkout {
    padding: 22px 18px;
  }
  .landing-request form {
    padding: 22px 18px;
  }
  .landing-promo {
    flex-direction: column;
  }
  .landing-promo .landing-btn {
    width: 100%;
    justify-content: center;
  }
  .hub-limited__invite {
    flex-direction: column;
  }
  .hub-limited__invite .landing-btn,
  .hub-limited__actions .landing-btn {
    width: 100%;
    justify-content: center;
  }
}
.gc-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 9100;
  padding: 16px;
}
.gc-panel[hidden] {
  display: none;
}
.gc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gc-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
.gc-close {
  border: 0;
  background: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
}
.gc-greeting {
  font-size: 11px;
  line-height: 1.3;
  color: var(--color-text-muted);
  margin: 4px 0 6px;
}
.gc-privacy {
  font-size: 6pt;
  line-height: 1.35;
  color: var(--color-text-muted);
  opacity: .7;
  margin: 6px 0;
}
.gc-log {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
}
.gc-msg {
  padding: 7px 11px;
  border-radius: 12px;
  font-size: 13px;
  max-width: 85%;
  white-space: pre-wrap;
  word-break: break-word;
}
.gc-msg--user {
  align-self: flex-end;
  background: var(--color-primary);
  color: #fff;
}
.gc-msg--assistant {
  align-self: flex-start;
  background: var(--color-surface-2);
}
.gc-msg--error {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}
.gc-examples {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 6px;
  margin-bottom: 8px;
  scrollbar-width: none;
}
.gc-examples::-webkit-scrollbar {
  display: none;
}
.gc-example {
  flex: none;
  white-space: nowrap;
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  background: none;
  cursor: pointer;
  color: inherit;
}
.gc-form {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.gc-input {
  flex: 1;
  resize: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 8px;
  font-size: 13px;
  font-family: inherit;
}
.gc-send {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 120ms ease, transform 120ms ease;
}
.gc-send:hover {
  background: var(--color-primary-hover);
}
.gc-send:active {
  transform: scale(.94);
}
.gc-send-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gc-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}
@media (max-width: 480px) {
  .gc-panel {
    right: 8px;
    left: 8px;
    width: auto;
    bottom: 8px;
  }
}
.rt-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-5);
  overflow-y: auto;
  z-index: 40;
  font-size: var(--fs-sm);
  color: var(--color-text);
}
.rt-panel[hidden] {
  display: none;
}
.rt-panel .rt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--color-border);
}
.rt-panel h3 {
  font-size: var(--fs-md);
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}
.rt-panel h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin: 0 0 var(--sp-1);
  color: var(--color-text);
}
.rt-icon {
  flex-shrink: 0;
}
.rt-run {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.rt-run-note {
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  margin: 0;
}
.rt-cat {
  border: 1px solid var(--color-border);
  border-left-width: 3px;
  border-radius: var(--radius-lg);
  padding: var(--sp-2) var(--sp-3);
  background: var(--color-surface);
}
.rt-cat-author {
  border-left-color: var(--color-primary);
}
.rt-cat-engine {
  border-left-color: var(--color-border-strong);
}
.rt-cat h4 {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.rt-class-tag {
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: 1px var(--sp-2);
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
}
.rt-cat-author .rt-class-tag {
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border-color: var(--color-primary-soft);
}
.rt-expectation {
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  margin: var(--sp-1) 0 0;
}
.rt-probes {
  list-style: none;
  margin: var(--sp-2) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.rt-probe {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-2);
  background: var(--color-surface);
}
.rt-probe-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rt-order-hint,
.rt-markers {
  color: var(--color-text-subtle);
  font-size: var(--fs-xs);
}
.rt-probe-actions {
  display: flex;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
  align-items: center;
  flex-wrap: wrap;
}
.rt-send,
.rt-reset,
.rt-report {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast);
}
.rt-send:hover:not(:disabled),
.rt-reset:hover:not(:disabled),
.rt-report:hover:not(:disabled) {
  background: var(--color-hover);
}
.rt-send {
  color: var(--color-primary);
  border-color: var(--color-primary-soft);
}
.rt-send:hover:not(:disabled) {
  background: var(--color-primary-soft);
}
.rt-report:disabled {
  opacity: .7;
  cursor: default;
}
.rt-behavioral {
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  font-style: italic;
}
.rt-pass,
.rt-fail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-subtle);
  cursor: pointer;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast);
}
.rt-pass {
  margin-left: auto;
}
.rt-pass:hover,
.rt-fail:hover {
  background: var(--color-hover);
}
.rt-pass.on {
  background: var(--color-success-bg);
  border-color: var(--color-success);
  color: var(--color-success);
}
.rt-fail.on {
  background: var(--color-danger-bg);
  border-color: var(--color-danger);
  color: var(--color-danger);
}
.rt-remediation {
  margin-top: var(--sp-2);
  padding: var(--sp-2);
  background: var(--color-warning-bg);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: flex-start;
}
.rt-empty {
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  font-style: italic;
  margin: 0;
}
.rt-footer {
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--color-border);
}
.rt-footer .rt-mark {
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .rt-send,
  .rt-reset,
  .rt-report,
  .rt-pass,
  .rt-fail {
    transition: none;
  }
}
.competency-profile-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.competency-profile-wrap .competency-shape {
  flex: 0 0 auto;
}
.competency-profile-wrap .ordinal-profile {
  flex: 1 1 320px;
  min-width: 260px;
}
.ordinal-profile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ordinal-axis {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ordinal-axis__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 4px 2px;
  border-radius: 6px;
  font: inherit;
  color: inherit;
}
.ordinal-axis__head:hover {
  background: rgba(21, 96, 130, .06);
}
.ordinal-axis__head:focus-visible {
  outline: 2px solid var(--prof-chart-line, #156082);
  outline-offset: 2px;
}
.ordinal-axis__name {
  font-weight: 600;
}
.ordinal-axis__entrustment {
  font-size: 12px;
  opacity: .75;
}
.ordinal-evidence {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}
.ordinal-evidence__status {
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.ordinal-evidence__status--established {
  color: #157347;
}
.ordinal-evidence__status--preliminary {
  color: #156082;
}
.ordinal-evidence__status--insufficient {
  color: #92400e;
}
.ordinal-evidence__status--unavailable {
  color: #64748b;
}
.ordinal-evidence__stale {
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  white-space: nowrap;
}
.ordinal-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.ordinal-seg {
  height: 8px;
  border-radius: 4px;
  background: var(--prof-chart-track, #e2e8f0);
}
.ordinal-seg--filled.ordinal-seg--l1 {
  background: #cf8f8f;
}
.ordinal-seg--filled.ordinal-seg--l2 {
  background: #d9c088;
}
.ordinal-seg--filled.ordinal-seg--l3 {
  background: #a6c489;
}
.ordinal-seg--filled.ordinal-seg--l4 {
  background: #78aa82;
}
.ordinal-seg--current {
  box-shadow: 0 0 0 2px rgba(15, 20, 25, .3);
}
.ordinal-desc {
  font-size: 12px;
  line-height: 1.5;
  opacity: .9;
  padding: 6px 10px;
  border-left: 3px solid var(--prof-chart-line, #156082);
  background: rgba(21, 96, 130, .05);
  border-radius: 0 6px 6px 0;
}
.competency-shape {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  overflow: visible;
}
.competency-shape .shape-axis-label {
  font-size: 9px;
  fill: var(--prof-chart-muted, #64748b);
  pointer-events: none;
}
.competency-shape .shape-axis-label--clickable {
  pointer-events: auto;
  cursor: pointer;
}
.competency-shape .shape-axis-label--clickable:hover {
  fill: var(--prof-chart-line, #156082);
}
.competency-shape .shape-label-hit {
  cursor: pointer;
}
.competency-shape .shape-ring {
  stroke: var(--prof-chart-muted, #cbd5e1);
  stroke-width: 1;
}
.competency-shape .shape-spoke {
  stroke: var(--prof-chart-track, #e2e8f0);
  stroke-width: 1;
}
.competency-shape .shape-poly {
  fill: var(--prof-chart-base, rgba(21, 96, 130, .15));
  stroke: var(--prof-chart-line, #156082);
  stroke-width: 1.5;
}
.competency-shape .shape-point {
  fill: var(--prof-chart-dot, #156082);
}
.competency-shape .shape-point--preliminary {
  fill: var(--prof-chart-bar-c, #7db8d1);
  stroke: var(--prof-chart-line, #156082);
  stroke-dasharray: 2 2;
}
.competency-shape .shape-nodata {
  stroke: var(--prof-chart-muted, #94a3b8);
  stroke-width: 1.5;
  stroke-dasharray: 2 2;
}
.competency-shape .shape-hit {
  cursor: pointer;
}
.competency-shape .shape-hit:focus-visible {
  outline: 2px solid var(--prof-chart-line, #156082);
  outline-offset: 2px;
}
.competency-shape .shape-axis-count {
  fill: #f59e0b;
  font-weight: 600;
}
.competency-shape .shape-hit--selected {
  stroke: #f59e0b;
  stroke-width: 2;
}
#hub-shape-mount {
  display: flex;
  justify-content: center;
  overflow: visible;
}
#hub-root:not(.hub-root--light) .competency-shape .shape-axis-label {
  fill: rgba(203, 231, 251, .7);
}
#hub-root:not(.hub-root--light) .competency-shape .shape-ring {
  stroke: rgba(125, 211, 252, .16);
}
#hub-root:not(.hub-root--light) .competency-shape .shape-spoke {
  stroke: rgba(125, 211, 252, .13);
}
#hub-root:not(.hub-root--light) .competency-shape .shape-poly {
  stroke: #38bdf8;
  fill: rgba(56, 189, 248, .18);
}
#hub-root:not(.hub-root--light) .competency-shape .shape-point {
  fill: #38bdf8;
}
#hub-root:not(.hub-root--light) .competency-shape .shape-point--preliminary {
  fill: rgba(56, 189, 248, .45);
  stroke: #38bdf8;
}
#hub-root:not(.hub-root--light) .competency-shape .shape-nodata {
  stroke: rgba(203, 231, 251, .5);
}
#hub-root:not(.hub-root--light) .competency-shape .shape-hit:focus-visible {
  outline: 2px solid rgba(56, 189, 248, .6);
  outline-offset: 2px;
}
#hub-root:not(.hub-root--light) .competency-shape .shape-axis-label--clickable:hover {
  fill: #7dd3fc;
}
.hub-competency-preliminary {
  font-size: 12px;
  line-height: 1.4;
  padding: 6px 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: #fef3c7;
  color: #92400e;
}
.trend-chart {
  display: block;
  max-width: 100%;
  height: auto;
}
.trend-chart .trend-grid {
  stroke: var(--prof-chart-track, #e2e8f0);
  stroke-width: 1;
}
.trend-chart .trend-axis {
  stroke: var(--prof-chart-muted, #94a3b8);
  stroke-width: 1;
}
.trend-chart .trend-target {
  stroke: #e8a33d;
  stroke-width: 1.5;
  stroke-dasharray: 5 3;
}
.trend-chart .trend-line {
  stroke: var(--prof-chart-line, #156082);
  stroke-width: 2;
}
.trend-chart .trend-dot {
  fill: var(--prof-chart-dot, #156082);
}
.trend-chart .trend-dot--last {
  stroke: #fff;
  stroke-width: 1.5;
}
.trend-chart .trend-axis-label {
  font-size: 9px;
  fill: var(--prof-chart-muted, #64748b);
}
.trend-chart .trend-axis-title {
  font-size: 10px;
  font-weight: 600;
  fill: var(--prof-chart-muted, #64748b);
}
.trend-chart .trend-hit {
  cursor: default;
}
.trend-chart .trend-hit:focus-visible {
  outline: 2px solid var(--prof-chart-line, #156082);
}
.trend-tooltip {
  position: fixed;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  background: #0b1118;
  color: #e6edf3;
  border: 1px solid #2a3441;
  border-radius: 8px;
  padding: 6px 9px;
  font-size: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  transition: opacity .12s;
}
.trend-metric-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.trend-metric-label {
  font-size: 13px;
  font-weight: 600;
}
.trend-metric-reset {
  font: inherit;
  font-size: 11px;
  cursor: pointer;
  background: none;
  color: inherit;
  border: 1px solid var(--prof-chart-track, #cbd5e1);
  border-radius: 999px;
  padding: 2px 10px;
}
.trend-metric-reset:hover {
  background: rgba(21, 96, 130, .08);
}
.trend-metric-reset:focus-visible {
  outline: 2px solid var(--prof-chart-line, #156082);
}
@media (max-width: 640px) {
  .competency-profile-wrap {
    flex-direction: column;
  }
}
.landing-testi__inner {
  text-align: center;
}
.landing-testi-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #7dd3fc;
  background: rgba(56, 189, 248, .10);
  border: 1px solid rgba(125, 211, 252, .28);
}
.landing-testi-lead {
  max-width: 600px;
  margin: 16px auto 0;
  color: rgba(203, 231, 251, .72);
  font-size: 16px;
  line-height: 1.6;
}
.landing-root,
.landing-root--light {
  --vp-blue: #2463eb;
  --vp-blue-2: #1d4ed8;
  --vp-navy: #06183a;
  --vp-navy-2: #0b2555;
  --vp-text: #07163d;
  --vp-muted: #5d6b86;
  --vp-line: #e5ebf5;
  --vp-soft: #f6f9ff;
  --vp-card: #ffffff;
  --vp-shadow: 0 18px 55px rgba(15, 38, 85, .12);
  background: #ffffff;
  color: var(--vp-text);
  overflow-x: hidden;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.landing-root--light .landing-atmos {
  display: none;
}
.landing-nav,
.landing-root--light .landing-nav {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: none;
  min-height: 64px;
  margin: 0;
  padding: 10px clamp(20px, 6vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #06183a;
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.landing-nav__mark,
.landing-root--light .landing-nav__mark {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}
.landing-nav__mark::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  vertical-align: -8px;
  border-radius: 9px;
  background:
    radial-gradient(
      circle at 50% 50%,
      #ffffff 0 22%,
      transparent 24%),
    linear-gradient(
      135deg,
      #38bdf8,
      #2563eb);
  box-shadow: 0 8px 18px rgba(37, 99, 235, .35);
}
.landing-nav__mark .brand-talk,
.landing-nav__mark sup,
.landing-root--light .landing-nav__mark .brand-talk,
.landing-root--light .landing-nav__mark sup {
  color: #8fd0ff;
}
.landing-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
}
.landing-nav__link,
.landing-root--light .landing-nav__link {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.landing-nav__link:hover,
.landing-root--light .landing-nav__link:hover {
  color: #ffffff;
}
.landing-nav__tools {
  flex: 0 0 auto;
  gap: 10px;
}
.landing-lang__btn,
.landing-root--light .landing-lang__btn,
.landing-theme-toggle,
.landing-root--light .landing-theme-toggle {
  color: rgba(255, 255, 255, .84);
}
.landing-nav__login,
.landing-root--light .landing-nav__login {
  padding: 9px 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: none;
}
.landing-nav__cta,
.landing-root--light .landing-nav__cta {
  padding: 10px 20px;
  white-space: nowrap;
}
.landing-hero,
.landing-root--light .landing-hero {
  max-width: none;
  min-height: 600px;
  margin: 0;
  padding: 34px clamp(20px, 4vw, 56px) 38px;
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(680px, 1.22fr);
  gap: clamp(24px, 3vw, 44px);
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(
      circle at 46% 44%,
      rgba(37, 99, 235, .30),
      transparent 22%),
    radial-gradient(
      circle at 70% 8%,
      rgba(59, 130, 246, .18),
      transparent 24%),
    linear-gradient(
      135deg,
      #06122d 0%,
      #071a3f 50%,
      #09275b 100%);
  color: #ffffff;
}
.landing-hero-copy {
  max-width: 480px;
  align-items: flex-start;
  min-width: 0;
}
.landing-eyebrow,
.landing-root--light .landing-eyebrow {
  margin: 0 0 24px;
  padding: 8px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.landing-eyebrow::before,
.landing-root--light .landing-eyebrow::before {
  width: 8px;
  height: 8px;
  background: #2f7cff;
  box-shadow: 0 0 18px rgba(47, 124, 255, .7);
  animation: none;
}
.landing-wordmark {
  display: none;
}
.landing-tagline,
.landing-root--light .landing-tagline {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(38px, 3.7vw, 56px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0;
  max-width: 480px;
  text-align: left;
}
.landing-tagline::first-line {
  color: #ffffff;
}
.landing-tagline-sub,
.landing-root--light .landing-tagline-sub {
  max-width: 470px;
  margin: 0 0 30px;
  color: rgba(230, 238, 255, .78);
  font-size: 16px;
  line-height: 1.72;
  text-align: left;
}
.landing-hero-actions {
  justify-content: flex-start;
  gap: 14px;
}
.landing-btn,
.landing-root--light .landing-btn {
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  color: #10234a;
  background: #ffffff;
  border: 1px solid rgba(16, 35, 74, .12);
  box-shadow: 0 8px 22px rgba(7, 22, 61, .08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.landing-btn--primary,
.landing-root--light .landing-btn--primary {
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #1f6bf0 0%,
      #1557de 100%);
  border-color: #1f6bf0;
  box-shadow: 0 12px 30px rgba(37, 99, 235, .34);
}
.landing-btn--primary:hover,
.landing-root--light .landing-btn--primary:hover {
  background:
    linear-gradient(
      180deg,
      #2563eb 0%,
      #1d4ed8 100%);
  border-color: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
}
.landing-btn--ghost,
.landing-root--light .landing-btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .20);
  box-shadow: none;
}
.landing-btn--question {
  display: none;
}
.landing-hero-proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.landing-hero-proofs span {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
  min-width: 0;
}
.landing-hero-proofs svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  fill: none;
  stroke: #71b4ff;
  stroke-width: 1.8;
  background: rgba(255, 255, 255, .07);
}
.landing-hero-proofs b {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.25;
}
.landing-hero-proofs small {
  color: rgba(230, 238, 255, .58);
  font-size: 11px;
  line-height: 1.35;
}
.landing-hero-visual {
  width: min(100%, 1000px);
  max-width: none;
  min-width: 0;
}
.landing-product-ui {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(104, 158, 255, .24);
  border-radius: 18px;
  background: rgba(6, 22, 52, .82);
  box-shadow: 0 28px 80px rgba(0, 7, 28, .50), inset 0 1px 0 rgba(255, 255, 255, .08);
  overflow: hidden;
}
.landing-product-topbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  color: rgba(232, 241, 255, .82);
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.landing-product-topbar button {
  border: 0;
  border-radius: 8px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  font: inherit;
  font-weight: 700;
}
.landing-product-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.72fr) minmax(0, .9fr);
  grid-template-rows: 380px 132px;
  gap: 10px;
  padding: 10px;
}
.landing-dialog-panel,
.landing-video-panel,
.landing-score-panel,
.landing-transcript-panel,
.landing-reco-panel {
  min-width: 0;
  border: 1px solid rgba(119, 169, 255, .18);
  border-radius: 12px;
  background: rgba(11, 34, 76, .84);
  color: #eaf2ff;
}
.landing-dialog-panel,
.landing-score-panel,
.landing-transcript-panel,
.landing-reco-panel {
  padding: 14px;
}
.landing-dialog-panel,
.landing-score-panel,
.landing-transcript-panel,
.landing-reco-panel {
  overflow: hidden;
}
.landing-dialog-panel h3,
.landing-score-panel h3,
.landing-transcript-panel h3,
.landing-reco-panel h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}
.landing-dialog-msg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.45;
}
.landing-dialog-msg b {
  font-size: 11px;
  color: rgba(255, 255, 255, .72);
}
.landing-dialog-msg small {
  align-self: flex-end;
  color: rgba(255, 255, 255, .56);
}
.landing-dialog-msg--patient {
  background: rgba(255, 255, 255, .06);
}
.landing-dialog-msg--doctor {
  background: #2463eb;
  color: #ffffff;
}
.landing-typing {
  color: rgba(234, 242, 255, .66);
  font-size: 12px;
}
.landing-video-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.landing-video-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 14%;
}
.landing-call-controls {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 18, 45, .72);
  backdrop-filter: blur(10px);
}
.landing-call-controls span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}
.landing-call-controls span:last-child {
  background: #ef4444;
}
.landing-score-ring {
  width: 82px;
  height: 82px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: conic-gradient(#8fd14f 0 82%, rgba(255, 255, 255, .12) 82% 100%);
  box-shadow: inset 0 0 0 10px rgba(6, 24, 58, .95);
}
.landing-score-ring b {
  font-size: 28px;
  line-height: 1;
}
.landing-score-ring span {
  font-size: 10px;
  color: rgba(255, 255, 255, .62);
}
.landing-score-panel .landing-hero-skill-row {
  gap: 7px;
  color: rgba(234, 242, 255, .78);
}
.landing-score-panel .landing-hero-skill-row span:first-child {
  flex-basis: 92px;
}
.landing-score-panel .landing-hero-skill-fill {
  background:
    linear-gradient(
      90deg,
      #79d65b,
      #b9f26b);
}
.landing-transcript-panel {
  grid-column: span 2;
  min-height: 0;
}
.landing-transcript-panel p,
.landing-reco-panel p {
  margin: 0 0 8px;
  color: rgba(234, 242, 255, .70);
  font-size: 12px;
  line-height: 1.45;
}
.landing-reco-panel p {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}
.landing-reco-panel p::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #86efac;
}
.landing-demo,
.landing-about,
.landing-sys,
.landing-market,
.landing-skills,
.landing-teach,
.landing-cats,
.landing-trycta,
.landing-request,
.landing-faq,
.landing-trust {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px;
}
.landing-demo {
  margin-top: 0;
  display: block;
  max-width: none;
  padding: 42px clamp(18px, 3vw, 42px) 32px;
}
.landing-demo h2,
.landing-root--light .landing-demo h2,
.landing-about h2,
.landing-sys h2,
.landing-market h2,
.landing-skills h2,
.landing-teach h2,
.landing-cats h2,
.landing-faq h2,
.landing-request h2,
.landing-trycta h2,
.landing-root--light .landing-about h2,
.landing-root--light .landing-sys h2,
.landing-root--light .landing-market h2,
.landing-root--light .landing-teach h2,
.landing-root--light .landing-cats h2,
.landing-root--light .landing-faq h2,
.landing-root--light .landing-skills h2,
.landing-root--light .landing-request h2 {
  color: var(--vp-text);
  font-family: inherit;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}
.landing-demo h2,
.landing-demo .landing-sec-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.landing-demo-frame {
  width: min(100%, 1380px);
  max-width: none;
  margin: 26px auto 0;
  aspect-ratio: 16 / 7;
  border-radius: 18px;
  border: 1px solid var(--vp-line);
  box-shadow: var(--vp-shadow);
}
.landing-demo-poster-note {
  display: none;
}
.landing-demo + .landing-trycta {
  display: none;
}
.landing-demo-frame__img {
  object-position: 50% 22%;
}
.landing-demo-frame__scrim {
  background:
    linear-gradient(
      180deg,
      rgba(5, 16, 40, .10),
      rgba(5, 16, 40, .42)),
    linear-gradient(
      90deg,
      rgba(5, 16, 40, .42),
      transparent 42%,
      rgba(5, 16, 40, .30));
}
.landing-demo-play {
  top: 50%;
  width: 82px;
  height: 82px;
}
.landing-demo-cta {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  min-width: 220px;
  justify-content: center;
}
.landing-about-grid,
.landing-sys-grid,
.landing-skills-grid,
.landing-cat-grid {
  gap: 18px;
}
.landing-about-card,
.landing-sys-block,
.landing-skill-card,
.landing-cat,
.landing-faq details,
.landing-root--light .landing-about-card,
.landing-root--light .landing-sys-block,
.landing-root--light .landing-skill-card,
.landing-root--light .landing-cat,
.landing-root--light .landing-faq details {
  border: 1px solid var(--vp-line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(19, 45, 92, .06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.landing-about-card h3,
.landing-sys-block h3,
.landing-skill-card__label,
.landing-root--light .landing-about-card h3,
.landing-root--light .landing-sys-block h3,
.landing-root--light .landing-skill-card__label {
  color: var(--vp-text);
}
.landing-about-card p,
.landing-sys-promise,
.landing-sys-proofs li,
.landing-skill-card__desc,
.landing-cat,
.landing-faq details p,
.landing-root--light .landing-about-card p,
.landing-root--light .landing-sys-promise,
.landing-root--light .landing-sys-proofs li,
.landing-root--light .landing-skill-card__desc,
.landing-root--light .landing-cat,
.landing-root--light .landing-faq details p {
  color: var(--vp-muted);
}
.landing-sys {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.landing-sys h2 {
  grid-column: 1 / -1;
}
.landing-sys-grid {
  display: contents;
}
.landing-market {
  padding-top: 30px;
}
.landing-stepcard .landing-step-n,
.landing-root--light .landing-stepcard .landing-step-n {
  background: #2463eb;
  color: #ffffff;
  border: 0;
  box-shadow: 0 12px 24px rgba(37, 99, 235, .22);
}
.landing-stepcard::after {
  border-top-color: rgba(36, 99, 235, .28);
}
.landing-skills {
  padding-top: 34px;
}
.landing-skills-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.landing-skill-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 198px;
  padding: 26px 22px;
}
.landing-skill-card__ic {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  margin-bottom: 24px;
  border-radius: 12px;
}
.landing-skill-card__ic svg {
  width: 28px;
  height: 28px;
}
.landing-skill-card__label,
.landing-root--light .landing-skill-card__label {
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 750;
  text-wrap: balance;
}
.landing-skill-card__desc,
.landing-root--light .landing-skill-card__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  text-wrap: pretty;
}
.landing-skill-card:nth-child(n+6) {
  display: none;
}
.landing-teach {
  border: 1px solid var(--vp-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(19, 45, 92, .06);
}
.landing-cats {
  background: var(--vp-soft);
  box-shadow: 0 0 0 100vmax var(--vp-soft);
  clip-path: inset(0 -100vmax);
}
.landing-trycta {
  max-width: 1080px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  border: 1px solid #cfe0ff;
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      #f4f8ff,
      #edf4ff);
}
.landing-trycta h2,
.landing-trycta p {
  text-align: left;
  margin-left: 0;
}
.landing-testi {
  margin: 22px clamp(20px, 4vw, 56px);
  border-radius: 18px;
  border: 0;
  background:
    linear-gradient(
      135deg,
      #06183a,
      #09275b);
}
.landing-cta {
  max-width: 1120px;
  margin-top: 10px;
  background: transparent;
}
.landing-cta__card,
.landing-root--light .landing-cta__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  border-radius: 16px;
  border: 0;
  background:
    linear-gradient(
      135deg,
      #06183a,
      #09275b);
}
.landing-cta__card h2,
.landing-root--light .landing-cta__card h2 {
  color: #ffffff;
  text-align: left;
}
.landing-cta__card p,
.landing-root--light .landing-cta__card p {
  color: rgba(230, 238, 255, .72);
  text-align: left;
}
.landing-cta__card .landing-hero-actions {
  justify-content: flex-end;
}
.landing-cta-checks,
.landing-root--light .landing-cta-checks {
  grid-column: 2;
  justify-content: flex-end;
  color: rgba(230, 238, 255, .76);
}
.landing-footer,
.landing-root--light .landing-footer {
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 48px clamp(24px, 5vw, 72px) 32px;
  border-radius: 0;
  background: #06183a;
  box-shadow: none;
}
.landing-footer-grid,
.landing-footer-bottom {
  max-width: 1180px;
}
.landing-footer-col h4,
.landing-root--light .landing-footer-col h4 {
  color: #5bc7ff;
}
.landing-footer a,
.landing-root--light .landing-footer a,
.landing-footer-col a,
.landing-root--light .landing-footer-col a {
  color: rgba(230, 238, 255, .72);
}
.landing-footer a:hover,
.landing-root--light .landing-footer a:hover {
  color: #ffffff;
}
.landing-footer-brand-col p,
.landing-footer__brand,
.landing-root--light .landing-footer-brand-col p,
.landing-root--light .landing-footer__brand {
  color: rgba(230, 238, 255, .60);
}
.landing-footer-bottom,
.landing-root--light .landing-footer-bottom {
  border-top-color: rgba(230, 238, 255, .30);
}
.landing-nav__mark,
.landing-root--light .landing-nav__mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.landing-nav__mark::before {
  display: none;
}
.landing-brand-logo {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  object-fit: contain;
}
.landing-brand-word {
  display: inline-flex;
  align-items: baseline;
}
.landing-testi,
.landing-cta {
  width: min(calc(100% - 48px), 1180px);
  max-width: 1180px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.landing-testi {
  margin-top: 24px;
  margin-bottom: 28px;
  padding: 56px clamp(24px, 5vw, 72px);
}
.landing-testi h2,
.landing-root--light .landing-testi h2 {
  margin-bottom: 0;
  text-wrap: balance;
}
.landing-btn--research {
  display: inline-flex;
  justify-content: center;
  margin-top: 26px;
  max-width: 100%;
  padding: 13px 22px;
  border: 1px solid rgba(125, 211, 252, .45);
  background: rgba(36, 99, 235, .22);
  color: #ffffff;
  white-space: normal;
  text-align: center;
}
.landing-btn--research:hover {
  border-color: rgba(143, 208, 255, .85);
  background: rgba(36, 99, 235, .42);
}
.landing-btn--research:focus-visible,
.landing-research-close:focus-visible,
.landing-research-dialog input:focus-visible,
.landing-research-dialog select:focus-visible,
.landing-research-dialog textarea:focus-visible {
  outline: 2px solid #5bc7ff;
  outline-offset: 3px;
}
.landing-cta {
  margin-top: 10px;
  margin-bottom: 48px;
}
.landing-research-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(3, 13, 34, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.landing-research-modal[hidden] {
  display: none;
}
.landing-research-dialog {
  width: min(100%, 720px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 28px;
  border: 1px solid #d6e2f6;
  border-radius: 16px;
  background: #ffffff;
  color: #0a1a3f;
  box-shadow: 0 28px 80px rgba(3, 13, 34, .34);
}
.landing-research-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.landing-research-kicker {
  display: block;
  margin-bottom: 7px;
  color: #2463eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.landing-research-dialog h2 {
  margin: 0;
  color: #0a1a3f;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}
.landing-research-close {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  padding: 0;
  border: 1px solid #d6e2f6;
  border-radius: 8px;
  background: #f7faff;
  color: #405274;
  cursor: pointer;
}
.landing-research-close:hover {
  background: #edf4ff;
  color: #0a1a3f;
}
.landing-research-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.landing-research-lead {
  max-width: 620px;
  margin: 14px 0 24px;
  color: #5a6a87;
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}
.landing-research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.landing-research-dialog label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #263858;
  font-size: 13px;
  font-weight: 700;
}
.landing-research-dialog input,
.landing-research-dialog select,
.landing-research-dialog textarea {
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  padding: 11px 13px;
  border: 1px solid #c9d7ec;
  border-radius: 8px;
  background: #ffffff;
  color: #0a1a3f;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
}
.landing-research-dialog select {
  cursor: pointer;
}
.landing-research-dialog textarea {
  min-height: 108px;
  resize: vertical;
  line-height: 1.5;
}
.landing-research-dialog input:hover,
.landing-research-dialog select:hover,
.landing-research-dialog textarea:hover {
  border-color: #9db7dd;
}
.landing-research-dialog input::placeholder,
.landing-research-dialog textarea::placeholder {
  color: #8795ad;
}
.landing-research-message {
  margin-top: 16px;
}
.landing-research-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  margin: 16px 0 18px;
  color: #5a6a87 !important;
  font-weight: 500 !important;
  line-height: 1.45;
  cursor: pointer;
}
.landing-research-consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 1px 0 0;
  accent-color: #2463eb;
}
.landing-research-dialog form > .landing-btn {
  width: 100%;
  justify-content: center;
}
.landing-research-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.landing-research-status {
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}
.landing-research-status--error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}
.landing-research-success {
  padding: 26px 0 6px;
  text-align: center;
}
.landing-research-success__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 24px;
  font-weight: 800;
}
.landing-research-success h3 {
  margin: 0 0 8px;
  color: #0a1a3f;
  font-size: 23px;
}
.landing-research-success p {
  margin: 0 0 20px;
  color: #5a6a87;
}
.landing-research-success .landing-btn {
  min-width: 180px;
  justify-content: center;
}
body.landing-modal-open {
  overflow: hidden;
}
@media (max-width: 1080px) {
  .landing-nav {
    padding-inline: 18px;
  }
  .landing-nav__links {
    gap: 14px;
  }
  .landing-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .landing-hero-copy,
  .landing-tagline,
  .landing-tagline-sub {
    text-align: center;
    align-items: center;
  }
  .landing-hero-actions {
    justify-content: center;
  }
  .landing-hero-proofs {
    max-width: 620px;
  }
  .landing-sys {
    grid-template-columns: 1fr;
  }
  .landing-skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .landing-demo {
    grid-template-columns: 1fr;
  }
  .landing-demo h2,
  .landing-demo .landing-sec-lead {
    text-align: center;
  }
  .landing-demo-frame {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 760px) {
  .landing-root,
  .landing-root--light {
    width: 100%;
  }
  .landing-nav,
  .landing-root--light .landing-nav {
    min-height: 62px;
    gap: 10px;
    padding: 9px 14px;
  }
  .landing-nav__links,
  .landing-theme-toggle,
  .landing-nav__cta {
    display: none;
  }
  .landing-nav__mark {
    font-size: 14px;
  }
  .landing-brand-logo {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .landing-nav__login,
  .landing-root--light .landing-nav__login {
    padding: 8px 12px;
    font-size: 12px;
  }
  .landing-hero,
  .landing-root--light .landing-hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    padding: 34px 18px 30px;
    gap: 26px;
  }
  .landing-tagline,
  .landing-root--light .landing-tagline {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.05;
  }
  .landing-hero-proofs {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 330px;
  }
  .landing-hero-actions {
    width: 100%;
    max-width: 330px;
  }
  .landing-hero-actions .landing-btn {
    width: 100%;
    justify-content: center;
  }
  .landing-product-ui {
    width: 100%;
    max-width: 390px;
    border-radius: 16px;
  }
  .landing-product-topbar {
    grid-template-columns: 1fr auto;
    font-size: 10px;
  }
  .landing-product-topbar button {
    display: none;
  }
  .landing-product-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .landing-dialog-panel,
  .landing-score-panel,
  .landing-transcript-panel,
  .landing-reco-panel {
    display: none;
  }
  .landing-video-panel {
    aspect-ratio: 4 / 3;
  }
  .landing-demo,
  .landing-about,
  .landing-sys,
  .landing-market,
  .landing-skills,
  .landing-teach,
  .landing-cats,
  .landing-trycta,
  .landing-request,
  .landing-faq,
  .landing-trust {
    padding: 34px 18px;
  }
  .landing-demo {
    padding-left: 0;
    padding-right: 0;
  }
  .landing-demo h2,
  .landing-demo .landing-sec-lead {
    padding-left: 18px;
    padding-right: 18px;
  }
  .landing-demo-frame {
    width: 100%;
    margin-top: 20px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    aspect-ratio: 4 / 3;
  }
  .landing-demo-play {
    width: 64px;
    height: 64px;
  }
  .landing-demo-cta {
    bottom: 18px;
    min-width: 0;
    width: calc(100% - 36px);
  }
  .landing-about-grid,
  .landing-skills-grid,
  .landing-cat-grid {
    grid-template-columns: 1fr;
  }
  .landing-skill-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas: "icon label" "icon description";
    column-gap: 18px;
    row-gap: 6px;
    min-height: 0;
    padding: 20px;
  }
  .landing-skill-card__ic {
    grid-area: icon;
    margin: 0;
  }
  .landing-skill-card__label {
    grid-area: label;
    align-self: end;
    margin: 0;
  }
  .landing-skill-card__desc {
    grid-area: description;
    align-self: start;
  }
  .landing-steprow {
    grid-template-columns: 1fr;
  }
  .landing-trycta,
  .landing-cta__card,
  .landing-root--light .landing-cta__card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .landing-trycta h2,
  .landing-trycta p,
  .landing-cta__card h2,
  .landing-cta__card p,
  .landing-root--light .landing-cta__card h2,
  .landing-root--light .landing-cta__card p {
    text-align: center;
  }
  .landing-cta__card .landing-hero-actions,
  .landing-cta-checks,
  .landing-root--light .landing-cta__card .landing-hero-actions,
  .landing-root--light .landing-cta-checks {
    grid-column: auto;
    justify-content: center;
  }
  .landing-testi {
    width: calc(100% - 36px);
    margin: 20px auto;
    padding: 40px 20px;
  }
  .landing-cta {
    width: calc(100% - 36px);
    margin-bottom: 36px;
  }
  .landing-footer {
    padding: 36px 18px 28px;
  }
  .landing-research-modal {
    align-items: end;
    padding: 12px;
  }
  .landing-research-dialog {
    max-height: calc(100vh - 24px);
    padding: 22px 18px;
    border-radius: 14px;
  }
  .landing-research-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .landing-research-head {
    gap: 12px;
  }
  .landing-research-dialog h2 {
    font-size: 24px;
  }
}
.landing-root,
.landing-root--light {
  --vp-blue: #075985;
  --vp-blue-2: #0c4a6e;
  --vp-navy: #0e2841;
  --vp-navy-2: #156082;
  --vp-text: #0f172a;
  --vp-muted: #475569;
  --vp-subtle: #94a3b8;
  --vp-line: #e2e8f0;
  --vp-line-strong: #cbd5e1;
  --vp-soft: #f8fafc;
  --vp-primary-soft: #f0f9ff;
  --vp-card: #ffffff;
  --vp-shadow: 0 10px 24px rgba(15, 23, 42, .08);
  background: #ffffff;
  color: var(--vp-text);
}
.landing-nav,
.landing-root--light .landing-nav,
.landing-footer,
.landing-root--light .landing-footer {
  background: var(--vp-navy);
}
.landing-hero,
.landing-root--light .landing-hero {
  min-height: 560px;
  padding-top: 32px;
  padding-bottom: 32px;
  background: var(--vp-navy);
}
.landing-product-ui {
  border-radius: 12px;
  background: #0f172a;
  box-shadow: 0 24px 56px rgba(2, 6, 23, .36);
}
.landing-dialog-panel,
.landing-video-panel,
.landing-score-panel,
.landing-transcript-panel,
.landing-reco-panel {
  border-radius: 8px;
  background: #102f55;
}
.landing-dialog-msg--doctor {
  background: var(--vp-navy-2);
}
.landing-score-panel .landing-hero-skill-fill {
  background: #86efac;
}
.landing-btn,
.landing-root--light .landing-btn {
  border-radius: 8px;
  color: var(--vp-text);
  background: #ffffff;
  border-color: var(--vp-line-strong);
  box-shadow: none;
}
.landing-btn--primary,
.landing-root--light .landing-btn--primary {
  color: #ffffff;
  background: var(--vp-blue);
  border-color: var(--vp-blue);
  box-shadow: 0 6px 14px rgba(7, 89, 133, .18);
}
.landing-btn--primary:hover,
.landing-root--light .landing-btn--primary:hover {
  color: #ffffff;
  background: var(--vp-blue-2);
  border-color: var(--vp-blue-2);
  box-shadow: 0 8px 18px rgba(7, 89, 133, .22);
}
.landing-root--light .landing-hero .landing-btn--ghost,
.landing-root--light .landing-cta__card .landing-btn--ghost {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
}
.landing-root--light .landing-hero .landing-btn--ghost:hover,
.landing-root--light .landing-cta__card .landing-btn--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .68);
}
.landing-root--light .landing-nav .landing-nav__login {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
}
.landing-root--light .landing-nav .landing-nav__login:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .68);
}
.landing-root--light .landing-trycta .landing-btn--ghost,
.landing-root--light .landing-learn .landing-btn--ghost,
.landing-root--light .landing-teach .landing-btn--ghost {
  color: var(--vp-blue);
  background: #ffffff;
  border-color: var(--vp-line-strong);
}
.landing-root--light .landing-trycta .landing-btn--ghost:hover,
.landing-root--light .landing-learn .landing-btn--ghost:hover,
.landing-root--light .landing-teach .landing-btn--ghost:hover {
  color: var(--vp-blue-2);
  background: var(--vp-primary-soft);
  border-color: #7dd3fc;
}
.landing-demo,
.landing-about,
.landing-sys,
.landing-market,
.landing-skills,
.landing-teach,
.landing-cats,
.landing-trycta,
.landing-request,
.landing-faq,
.landing-trust {
  width: 100%;
  max-width: 1180px;
  box-sizing: border-box;
  padding: 34px 24px;
}
.landing-root section[id] {
  scroll-margin-top: 76px;
}
.landing-demo {
  max-width: none;
  min-height: 0;
  padding: 38px clamp(18px, 3vw, 42px) 30px;
}
.landing-demo h2,
.landing-about h2,
.landing-sys h2,
.landing-market h2,
.landing-skills h2,
.landing-teach h2,
.landing-cats h2,
.landing-faq h2,
.landing-request h2,
.landing-trycta h2,
.landing-root--light .landing-about h2,
.landing-root--light .landing-sys h2,
.landing-root--light .landing-teach h2,
.landing-root--light .landing-faq h2,
.landing-root--light .landing-skills h2,
.landing-root--light .landing-request h2,
.landing-root--light .landing-trycta h2,
.landing-cta__card h2,
.landing-root--light .landing-cta__card h2,
.landing-testi h2,
.landing-root--light .landing-testi h2 {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}
.landing-demo-frame {
  margin-top: 22px;
  border-radius: 12px;
  border-color: var(--vp-line);
  box-shadow: var(--vp-shadow);
}
.landing-demo-frame__scrim {
  background: rgba(15, 23, 42, .28);
}
.landing-demo-play {
  width: 72px;
  height: 72px;
  color: var(--vp-navy);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .24);
}
.landing-about-grid,
.landing-sys-grid,
.landing-skills-grid,
.landing-cat-grid {
  gap: 14px;
}
.landing-about-card,
.landing-sys-block,
.landing-skill-card,
.landing-cat,
.landing-faq details,
.landing-root--light .landing-about-card,
.landing-root--light .landing-sys-block,
.landing-root--light .landing-skill-card,
.landing-root--light .landing-cat,
.landing-root--light .landing-faq details {
  border-color: var(--vp-line);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .05);
}
.landing-about-card {
  padding: 20px;
}
.landing-sys-block {
  padding: 22px 20px;
}
.landing-about-card::before {
  display: none;
}
.landing-about-card .landing-about-ic,
.landing-root--light .landing-about-card .landing-about-ic {
  color: var(--vp-blue);
  background: var(--vp-primary-soft);
  border-color: #bae6fd;
  border-radius: 8px;
}
.landing-market {
  padding-top: 26px;
}
.landing-stepcard .landing-step-n,
.landing-root--light .landing-stepcard .landing-step-n {
  background: var(--vp-blue);
  box-shadow: none;
}
.landing-stepcard::after {
  border-top-color: var(--vp-line-strong);
}
.landing-skills {
  padding-top: 30px;
}
.landing-skill-card {
  --sk-c: var(--vp-blue) !important;
  min-height: 180px;
  padding: 22px 20px;
  border-top: 1px solid var(--vp-line);
}
.landing-skill-card__ic {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  margin-bottom: 18px;
  color: var(--vp-blue);
  background: var(--vp-primary-soft);
  border-radius: 8px;
}
.landing-skill-card__label,
.landing-root--light .landing-skill-card__label {
  color: var(--vp-text);
}
.landing-skill-card__desc,
.landing-root--light .landing-skill-card__desc {
  color: var(--vp-muted);
}
.landing-teach {
  padding: 30px 32px;
  border-color: var(--vp-line);
  border-radius: 12px;
  box-shadow: var(--vp-shadow);
}
.landing-teach-chip,
.landing-root--light .landing-teach-chip {
  color: var(--vp-blue);
  background: var(--vp-primary-soft);
  border-color: #bae6fd;
}
.landing-teach-note,
.landing-root--light .landing-teach-note {
  color: var(--vp-muted);
}
.landing-cats {
  background: var(--vp-soft);
  box-shadow: 0 0 0 100vmax var(--vp-soft);
}
.landing-learn--btn-only {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 24px 22px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.landing-trycta {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  grid-template-areas: "heading body" "actions body";
  column-gap: 48px;
  row-gap: 18px;
  align-items: center;
  margin-top: 8px;
  padding: 28px 32px;
  border-color: var(--vp-line);
  border-radius: 12px;
  background: var(--vp-soft);
}
.landing-trycta h2 {
  grid-area: heading;
  margin: 0;
  font-size: clamp(26px, 2.5vw, 34px);
  text-wrap: balance;
}
.landing-trycta > p {
  grid-area: body;
  margin: 0;
  color: var(--vp-muted);
  font-size: 17px;
  line-height: 1.6;
}
.landing-trycta > .landing-hero-actions {
  grid-area: actions;
}
.landing-request {
  padding-top: 30px;
  padding-bottom: 30px;
}
.landing-root--light .landing-request form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 24px;
  border-color: var(--vp-line);
  border-radius: 12px;
  box-shadow: var(--vp-shadow);
}
.landing-root--light .landing-request input {
  min-width: 0;
  color: var(--vp-text);
  border-color: var(--vp-line-strong);
  background: #ffffff;
}
.landing-root--light .landing-request input::placeholder {
  color: var(--vp-subtle);
}
.landing-faq details {
  margin-bottom: 8px;
}
.landing-faq summary {
  color: var(--vp-text);
}
.landing-faq details p {
  color: var(--vp-muted);
}
.landing-testi {
  width: min(calc(100% - 48px), 1180px);
  margin: 16px auto 22px;
  padding: 40px clamp(24px, 5vw, 56px);
  border: 0;
  border-radius: 12px;
  background: #0f172a;
}
.landing-testi-lead {
  color: #cbd5e1;
}
.landing-testi-badge {
  color: #bae6fd;
  background: rgba(14, 165, 233, .10);
  border-color: rgba(125, 211, 252, .36);
}
.landing-btn--research {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, .46);
}
.landing-btn--research:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .72);
}
.landing-trust {
  padding-top: 26px;
  padding-bottom: 26px;
}
.landing-trust p,
.landing-root--light .landing-trust p {
  color: var(--vp-muted);
}
.landing-trust-item,
.landing-root--light .landing-trust-item {
  color: var(--vp-muted);
}
.landing-cta {
  width: min(calc(100% - 48px), 1180px);
  max-width: 1180px;
  margin: 8px auto 32px;
  border-radius: 12px;
  background: transparent;
}
.landing-cta__card,
.landing-root--light .landing-cta__card {
  padding: 32px;
  border-radius: 12px;
  background: var(--vp-navy);
}
.landing-cta__card p,
.landing-root--light .landing-cta__card p {
  color: #cbd5e1;
}
.landing-cta-checks,
.landing-root--light .landing-cta-checks {
  color: #cbd5e1;
}
.landing-footer,
.landing-root--light .landing-footer {
  padding-top: 40px;
  padding-bottom: 28px;
}
.landing-footer-col h4,
.landing-root--light .landing-footer-col h4 {
  color: #bae6fd;
}
.landing-footer a,
.landing-root--light .landing-footer a,
.landing-footer-col a,
.landing-root--light .landing-footer-col a {
  color: #cbd5e1;
}
.landing-footer-brand-col p,
.landing-footer__brand,
.landing-root--light .landing-footer-brand-col p,
.landing-root--light .landing-footer__brand {
  color: #94a3b8;
}
.landing-research-dialog {
  border-color: var(--vp-line);
  color: var(--vp-text);
  box-shadow: 0 24px 56px rgba(15, 23, 42, .24);
}
.landing-research-kicker {
  color: var(--vp-blue);
}
.landing-research-dialog h2,
.landing-research-success h3 {
  color: var(--vp-text);
}
.landing-research-lead,
.landing-research-consent,
.landing-research-success p {
  color: var(--vp-muted) !important;
}
.landing-research-close {
  border-color: var(--vp-line);
  background: var(--vp-soft);
  color: var(--vp-muted);
}
.landing-research-dialog label {
  color: var(--vp-text);
}
.landing-research-dialog input,
.landing-research-dialog select,
.landing-research-dialog textarea {
  border-color: var(--vp-line-strong);
  color: var(--vp-text);
}
.landing-research-consent input {
  accent-color: var(--vp-blue);
}
@media (max-width: 760px) {
  .landing-hero,
  .landing-root--light .landing-hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .landing-demo,
  .landing-about,
  .landing-sys,
  .landing-market,
  .landing-skills,
  .landing-teach,
  .landing-cats,
  .landing-trycta,
  .landing-request,
  .landing-faq,
  .landing-trust {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .landing-demo {
    min-height: 0;
  }
  .landing-skill-card {
    min-height: 0;
  }
  .landing-teach {
    margin-inline: 14px;
    padding-inline: 20px;
  }
  .landing-trycta {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "heading" "body" "actions";
    padding: 26px 20px;
  }
  .landing-trycta > p {
    font-size: 16px;
  }
  .landing-request h2,
  .landing-trycta h2 {
    overflow-wrap: normal;
  }
  .landing-nav__tools {
    min-width: 0;
    gap: 4px;
  }
  .landing-lang__btn {
    padding-inline: 6px;
  }
  .landing-lang__caret {
    display: none;
  }
  .landing-testi,
  .landing-cta {
    width: calc(100% - 28px);
  }
  .landing-cta__card,
  .landing-root--light .landing-cta__card {
    padding: 28px 20px;
  }
}
.demo-intro-card {
  max-width: 440px;
  text-align: left;
  padding: 32px 28px;
}
.demo-intro-card h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  text-wrap: balance;
}
.demo-intro-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo-intro-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.demo-intro-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--color-primary, #156082);
}
.demo-intro-start {
  width: 100%;
  padding: 12px 24px;
  font-size: 1rem;
}
.demo-intro-home {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: var(--fs-sm, 0.875rem);
  color: var(--color-text-muted, #64748b);
}
.landing-root {
  --vp-blue: #075985;
  --vp-blue-2: #0c4a6e;
  --vp-navy: #0e2841;
  --vp-navy-2: #156082;
  --vp-text: #f8fafc;
  --vp-muted: #cbd5e1;
  --vp-subtle: #94a3b8;
  --vp-line: #334155;
  --vp-line-strong: #475569;
  --vp-soft: #0f172a;
  --vp-primary-soft: #1e293b;
  --vp-card: #0f172a;
  --vp-canvas: #020617;
  --vp-shadow: 0 10px 24px rgba(2, 6, 23, .22);
  background: var(--vp-canvas);
  color: var(--vp-text);
  transition: background-color 200ms ease, color 200ms ease;
}
.landing-root.landing-root--light {
  --vp-blue: #075985;
  --vp-blue-2: #0c4a6e;
  --vp-navy: #0e2841;
  --vp-navy-2: #156082;
  --vp-text: #0f172a;
  --vp-muted: #475569;
  --vp-subtle: #94a3b8;
  --vp-line: #e2e8f0;
  --vp-line-strong: #cbd5e1;
  --vp-soft: #f8fafc;
  --vp-primary-soft: #f0f9ff;
  --vp-card: #ffffff;
  --vp-canvas: #ffffff;
  --vp-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}
.landing-atmos {
  display: none;
}
.landing-nav,
.landing-root--light .landing-nav {
  background: rgba(14, 40, 65, .82);
  border-bottom-color: rgba(255, 255, 255, .12);
  box-shadow: 0 1px 0 rgba(2, 6, 23, .18);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}
.landing-root--light .landing-nav {
  color: var(--vp-text);
  background: rgba(255, 255, 255, .84);
  border-bottom-color: rgba(148, 163, 184, .28);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .05);
}
.landing-root--light .landing-nav__mark,
.landing-root--light .landing-nav__mark .brand-clin {
  color: var(--vp-text);
}
.landing-root--light .landing-nav__mark .brand-talk,
.landing-root--light .landing-nav__mark sup {
  color: var(--vp-navy-2);
}
.landing-root--light .landing-nav__link {
  color: var(--vp-muted);
}
.landing-root--light .landing-nav__link:hover {
  color: var(--vp-blue);
}
.landing-root--light .landing-lang__btn,
.landing-root--light .landing-theme-toggle {
  color: var(--vp-muted);
}
.landing-theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.landing-theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.landing-root--light .landing-theme-toggle {
  border-color: rgba(148, 163, 184, .42);
  background: rgba(255, 255, 255, .72);
}
.landing-theme-toggle:hover {
  background: rgba(255, 255, 255, .14);
}
.landing-root--light .landing-theme-toggle:hover {
  background: #f0f9ff;
  color: #075985;
}
.landing-root .landing-nav .landing-nav__login,
.landing-root--light .landing-nav .landing-nav__login {
  color: #ffffff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.landing-root--light .landing-nav .landing-nav__login {
  color: var(--vp-text);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(148, 163, 184, .46);
}
.landing-root .landing-nav .landing-nav__login:hover {
  background: rgba(255, 255, 255, .14);
}
.landing-root--light .landing-nav .landing-nav__login:hover {
  color: var(--vp-blue);
  background: var(--vp-primary-soft);
  border-color: #7dd3fc;
}
.landing-root .landing-login--pop,
.landing-root--light .landing-login--pop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  width: min(440px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 84px);
  margin: 0;
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.landing-root--light .landing-login--pop {
  background: var(--vp-card);
  border-color: var(--vp-line);
  box-shadow: var(--vp-shadow);
}
.landing-root .landing-login--pop h2,
.landing-root--light .landing-login--pop h2 {
  margin: 0;
  padding: 0;
  font: 600 20px/1.25 var(--font-sans);
  color: var(--color-text);
}
.landing-root .landing-login--pop .auth-tabs,
.landing-root--light .landing-login--pop .auth-tabs {
  margin: 14px 0 0;
}
.landing-root .landing-login--pop form,
.landing-root--light .landing-login--pop form {
  margin: 0;
  padding: 16px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.landing-root .landing-login--pop .login-error,
.landing-root .landing-login--pop .login-success,
.landing-root--light .landing-login--pop .login-error,
.landing-root--light .landing-login--pop .login-success {
  margin: 16px 0 0;
}
.landing-root .landing-login--pop .login-intro,
.landing-root--light .landing-login--pop .login-intro,
.landing-root .landing-login--pop .login-code-hint,
.landing-root--light .landing-login--pop .login-code-hint {
  color: var(--color-text-muted);
}
.landing-root .landing-login--pop input,
.landing-root--light .landing-login--pop input {
  min-height: 44px;
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border-strong);
  border-radius: var(--radius-md);
}
.landing-root .landing-login--pop input::placeholder,
.landing-root--light .landing-login--pop input::placeholder {
  color: #64748b;
  opacity: 1;
}
.landing-root .landing-login--pop input:focus-visible,
.landing-root--light .landing-login--pop input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-color: var(--color-primary);
  box-shadow: none;
}
.landing-root .landing-login--pop .login-link,
.landing-root--light .landing-login--pop .login-link {
  color: var(--color-link);
}
.landing-root .landing-login--pop .login-success,
.landing-root--light .landing-login--pop .login-success {
  color: #14532d;
}
.landing-root .landing-login--pop .landing-btn--primary,
.landing-root--light .landing-login--pop .landing-btn--primary {
  min-height: 44px;
  background: var(--color-primary);
  box-shadow: none;
}
.landing-root .landing-login--pop .landing-btn--primary::after,
.landing-root--light .landing-login--pop .landing-btn--primary::after {
  display: none;
}
.landing-root .landing-login--pop .login-code-input,
.landing-root--light .landing-login--pop .login-code-input {
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  letter-spacing: .45em;
}
#login-modal,
#login-modal button,
#login-modal input,
#land-login,
#land-login button,
#land-login input {
  font-family:
    "ClinTalk Auth Inter",
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif;
}
#login-modal .login-code-input,
#land-login .login-code-input {
  font-family: var(--font-mono);
}
#login-modal .login-error,
#land-login .login-error {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}
@media (max-width: 480px) {
  .landing-root .landing-login--pop,
  .landing-root--light .landing-login--pop {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    width: calc(100vw - 32px);
    max-height: calc(100dvh - 88px);
    padding: 16px;
  }
}
.landing-hero,
.landing-root--light .landing-hero {
  min-height: 560px;
  background: var(--vp-navy);
  color: #ffffff;
  transition: background-color 200ms ease, color 200ms ease;
}
.landing-root--light .landing-hero {
  background: #f8fafc;
  color: var(--vp-text);
  border-bottom: 1px solid var(--vp-line);
}
.landing-root--light .landing-tagline,
.landing-root--light .landing-tagline::first-line {
  color: var(--vp-text);
}
.landing-root--light .landing-tagline-sub {
  color: var(--vp-muted);
}
.landing-root--light .landing-eyebrow {
  color: var(--vp-muted);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(148, 163, 184, .36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.landing-root--light .landing-hero-proofs b {
  color: var(--vp-text);
}
.landing-root--light .landing-hero-proofs small {
  color: var(--vp-muted);
}
.landing-root--light .landing-hero-proofs svg {
  color: var(--vp-blue);
  stroke: var(--vp-blue);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--vp-line);
}
.landing-root .landing-hero .landing-btn--ghost,
.landing-root--light .landing-hero .landing-btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.landing-root--light .landing-hero .landing-btn--ghost {
  color: var(--vp-text);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(148, 163, 184, .44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 4px 12px rgba(15, 23, 42, .06);
}
.landing-root .landing-hero .landing-btn--ghost:hover {
  background: rgba(255, 255, 255, .14);
}
.landing-root--light .landing-hero .landing-btn--ghost:hover {
  color: var(--vp-blue);
  background: rgba(240, 249, 255, .88);
  border-color: #7dd3fc;
}
.landing-media-rotator {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, .24);
  border-radius: 12px;
  background: #0f172a;
  box-shadow: 0 24px 56px rgba(2, 6, 23, .32);
}
.landing-root--light .landing-media-rotator {
  border-color: var(--vp-line-strong);
  box-shadow: 0 20px 40px rgba(15, 23, 42, .14), 0 8px 16px rgba(15, 23, 42, .06);
}
.landing-media-stage {
  position: absolute;
  inset: 0;
}
.landing-media-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms cubic-bezier(.4, 0, .2, 1);
}
.landing-media-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.landing-media-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 14%;
}
.landing-media-slide--report img {
  object-position: 50% 0;
  filter: saturate(.96) contrast(1.01);
}
.landing-media-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(2, 6, 23, .72));
  pointer-events: none;
}
.landing-media-caption {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  max-width: min(62%, 390px);
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(15, 23, 42, .56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.landing-media-caption span {
  display: block;
  margin-bottom: 3px;
  color: #bae6fd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.landing-media-caption strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
}
.landing-media-controls {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(15, 23, 42, .56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.landing-media-control {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}
.landing-media-control::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
}
.landing-media-control:hover {
  background: rgba(255, 255, 255, .14);
}
.landing-media-control svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.landing-media-control svg[hidden] {
  display: none;
}
.landing-media-dots {
  display: flex;
  align-items: center;
  gap: 0;
  padding-inline: 2px;
}
.landing-media-dots button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.landing-media-dots button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  transition: width 200ms var(--ease-out), background-color 200ms var(--ease-out);
}
.landing-media-dots button.is-active::before {
  width: 18px;
  border-radius: 999px;
  background: #7dd3fc;
}
.landing-demo,
.landing-root--light .landing-demo {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: #0f172a;
}
.landing-demo-frame,
.landing-root--light .landing-demo-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 16 / 7;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.landing-root:not(.landing-root--light) .landing-about,
.landing-root:not(.landing-root--light) .landing-sys,
.landing-root:not(.landing-root--light) .landing-market,
.landing-root:not(.landing-root--light) .landing-skills,
.landing-root:not(.landing-root--light) .landing-teach,
.landing-root:not(.landing-root--light) .landing-cats,
.landing-root:not(.landing-root--light) .landing-trycta,
.landing-root:not(.landing-root--light) .landing-request,
.landing-root:not(.landing-root--light) .landing-faq,
.landing-root:not(.landing-root--light) .landing-trust,
.landing-root:not(.landing-root--light) .landing-learn {
  color: var(--vp-text);
}
.landing-root:not(.landing-root--light) .landing-about h2,
.landing-root:not(.landing-root--light) .landing-sys h2,
.landing-root:not(.landing-root--light) .landing-market h2,
.landing-root:not(.landing-root--light) .landing-skills h2,
.landing-root:not(.landing-root--light) .landing-teach h2,
.landing-root:not(.landing-root--light) .landing-cats h2,
.landing-root:not(.landing-root--light) .landing-trycta h2,
.landing-root:not(.landing-root--light) .landing-request h2,
.landing-root:not(.landing-root--light) .landing-faq h2 {
  color: var(--vp-text);
}
.landing-root:not(.landing-root--light) .landing-about-card,
.landing-root:not(.landing-root--light) .landing-sys-block,
.landing-root:not(.landing-root--light) .landing-skill-card,
.landing-root:not(.landing-root--light) .landing-cat,
.landing-root:not(.landing-root--light) .landing-faq details,
.landing-root:not(.landing-root--light) .landing-teach,
.landing-root:not(.landing-root--light) .landing-trycta,
.landing-root:not(.landing-root--light) .landing-request form {
  color: var(--vp-text);
  background: var(--vp-card);
  border-color: var(--vp-line);
  box-shadow: 0 4px 14px rgba(2, 6, 23, .18);
}
.landing-root:not(.landing-root--light) .landing-cats {
  background: #0b1220;
  box-shadow: 0 0 0 100vmax #0b1220;
}
.landing-root:not(.landing-root--light) .landing-about-card h3,
.landing-root:not(.landing-root--light) .landing-sys-block h3,
.landing-root:not(.landing-root--light) .landing-skill-card__label {
  color: var(--vp-text);
}
.landing-root:not(.landing-root--light) .landing-about-card p,
.landing-root:not(.landing-root--light) .landing-sys-promise,
.landing-root:not(.landing-root--light) .landing-sys-proofs li,
.landing-root:not(.landing-root--light) .landing-skill-card__desc,
.landing-root:not(.landing-root--light) .landing-cat,
.landing-root:not(.landing-root--light) .landing-faq details p,
.landing-root:not(.landing-root--light) .landing-trycta > p,
.landing-root:not(.landing-root--light) .landing-teach-note,
.landing-root:not(.landing-root--light) .landing-trust p,
.landing-root:not(.landing-root--light) .landing-trust-item {
  color: var(--vp-muted);
}
.landing-root:not(.landing-root--light) .landing-faq summary {
  color: var(--vp-text);
}
.landing-root:not(.landing-root--light) .landing-about-card .landing-about-ic,
.landing-root:not(.landing-root--light) .landing-skill-card__ic {
  color: #7dd3fc;
  background: #1e293b;
  border-color: #334155;
}
.landing-root:not(.landing-root--light) .landing-teach-chip {
  color: #bae6fd;
  background: #1e293b;
  border-color: #334155;
}
.landing-root:not(.landing-root--light) .landing-request input {
  color: var(--vp-text);
  background: #1e293b;
  border-color: var(--vp-line-strong);
}
.landing-root:not(.landing-root--light) .landing-request input::placeholder {
  color: var(--vp-subtle);
}
.landing-root:not(.landing-root--light) .landing-learn .landing-btn--ghost,
.landing-root:not(.landing-root--light) .landing-trycta .landing-btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 760px) {
  .landing-media-rotator {
    aspect-ratio: 4 / 3;
  }
  .landing-media-controls {
    top: 12px;
    right: 12px;
    bottom: auto;
  }
  .landing-media-caption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
  .landing-media-caption span {
    font-size: 10px;
  }
  .landing-media-caption strong {
    font-size: 13px;
  }
  .landing-demo,
  .landing-root--light .landing-demo {
    padding: 0;
  }
  .landing-demo-frame,
  .landing-root--light .landing-demo-frame {
    aspect-ratio: 4 / 3;
  }
}
@media (min-width: 1081px) {
  .landing-hero,
  .landing-root--light .landing-hero {
    min-height: calc(100vh - 96px);
    min-height: calc(100svh - 96px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .landing-root,
  .landing-media-slide,
  .landing-media-dots button::before {
    transition: none;
  }
}
.assessment-applicability-card {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin: 10px 0;
  padding: 12px;
}
.assessment-na-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, .7fr);
  gap: 10px;
  margin-top: 8px;
}
.field-error,
.field-warning {
  color: #b42318;
}
.trend-methodology-boundary {
  stroke: #64748b;
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
}
@media (hover: none) {
  .idle-pick-btn:hover .idle-pick-btn__arrow,
  .help-tour-cta:hover,
  .landing-btn:hover,
  .landing-root--light .landing-btn:hover,
  .landing-step:hover,
  .landing-how-card:hover .landing-how-card__arrow,
  .landing-cat:hover,
  .landing-about-card:hover,
  .landing-plan-card:hover,
  .hub-nav__link:hover,
  .hub-btn:hover,
  .hub-how-card:hover .hub-how-card__arrow,
  .hub-cat:hover {
    transform: none;
  }
  .landing-demo-play:hover {
    transform: translate(-50%, -50%);
  }
  .landing-btn--primary:hover::after {
    transform: translateX(-120%);
  }
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/static/fonts/caveat-cyrillic-400.woff2) format("woff2");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/static/fonts/caveat-cyrillic-700.woff2) format("woff2");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/static/fonts/caveat-latin-400.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+2013-2014,
    U+2018-2019,
    U+201C-201D,
    U+2026;
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/static/fonts/caveat-latin-700.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+2013-2014,
    U+2018-2019,
    U+201C-201D,
    U+2026;
}
:root {
  --fc-green: #3B6D11;
  --fc-amber: #854F0B;
  --fc-red: #A32D2D;
  --fc-ink: #0C447C;
  --fc-paper: #FAF6E9;
  --fc-paper-edge: #E4DCC2;
}
.debrief-scene {
  display: flex;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 16px;
}
.debrief-scene-avatar {
  flex: 1 1 62%;
  min-width: 0;
}
.debrief-scene-avatar.is-empty {
  flex: 0 0 0;
}
.debrief-board-sheet {
  flex: 1 1 38%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.flipchart-easel {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.fc-sheet {
  background: var(--fc-paper);
  border: 1px solid var(--fc-paper-edge);
  border-radius: 5px 5px 8px 8px;
  padding: 0 22px 20px;
  font-family:
    "Caveat",
    "Marck Script",
    cursive;
}
.fc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
}
.fc-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--fc-ink);
  border-bottom: 2.5px solid var(--fc-ink);
  padding-bottom: 2px;
}
.fc-phase-track {
  display: flex;
  gap: 8px;
  font-size: 18px;
  color: #8a8576;
}
.fc-phase.is-current {
  color: var(--fc-ink);
  font-weight: 700;
}
.fc-columns {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}
.fc-section {
  flex: 1 1 50%;
  min-width: 0;
}
.fc-delta {
  border-left: 1px solid var(--fc-paper-edge);
  padding-left: 16px;
}
.fc-section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
}
.fc-plus .fc-section-title,
.fc-plus .fc-note {
  color: var(--fc-green);
}
.fc-delta .fc-section-title,
.fc-delta .fc-note {
  color: var(--fc-amber);
}
.fc-note {
  font-size: 19px;
  line-height: 1.45;
  overflow-wrap: break-word;
  animation: fc-fade .4s ease both;
}
.fc-note-progress {
  opacity: .62;
  font-style: italic;
}
.fc-safety {
  margin-top: 14px;
  border: 2px solid var(--fc-red);
  border-radius: 4px;
  padding: 6px 11px;
  background: rgba(163, 45, 45, 0.05);
  animation: fc-fade .4s ease both;
}
.fc-safety-label {
  font-size: 21px;
  font-weight: 700;
  color: var(--fc-red);
}
.fc-safety-note {
  font-size: 20px;
  color: var(--fc-red);
}
.fc-commitment {
  margin-top: 14px;
  border: 1.5px dashed var(--fc-ink);
  border-radius: 5px;
  padding: 8px 12px;
  animation: fc-fade .4s ease both;
}
.fc-commitment-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--fc-ink);
  letter-spacing: .3px;
}
.fc-commitment-text {
  font-size: 21px;
  color: var(--fc-ink);
  margin-top: 1px;
}
@keyframes fc-fade {
  from {
    opacity: 0;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fc-note,
  .fc-safety,
  .fc-commitment {
    animation: none;
  }
}
.debrief-sheet-handle {
  display: none;
}
@media (max-width: 640px) {
  body.debrief-page main.debrief-main {
    padding-bottom: 44px !important;
  }
  .debrief-scene {
    flex-direction: column;
    gap: 0;
    position: relative;
  }
  .debrief-scene-avatar {
    flex: 0 0 auto;
  }
  .debrief-board-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background: var(--color-surface, #fff);
    border-top: 1px solid var(--color-border, #e0e4ea);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 8px rgba(31, 41, 55, .08);
    transition: height 200ms cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .debrief-board-sheet[data-sheet-state=peek] {
    height: 44px;
  }
  .debrief-board-sheet[data-sheet-state=half] {
    height: 55vh;
    height: 55dvh;
  }
  .debrief-board-sheet[data-sheet-state=full] {
    height: 90vh;
    height: 90dvh;
  }
  .debrief-board-sheet .flipchart-easel,
  .debrief-board-sheet .mt-drilldown-chips,
  .debrief-board-sheet .mt-drilldown-panel {
    overflow-y: auto;
    padding: 0 12px;
  }
  .debrief-sheet-handle {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted, #6c7d8e);
    cursor: pointer;
  }
  .debrief-sheet-handle svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 200ms cubic-bezier(.4, 0, .2, 1);
  }
  .debrief-board-sheet[data-sheet-state=full] .debrief-sheet-handle svg,
  .debrief-board-sheet[data-sheet-state=half] .debrief-sheet-handle svg {
    transform: rotate(180deg);
  }
  .fc-title {
    font-size: 22px;
  }
  body.debrief-page--keyboard main.debrief-main .stage.stage--compact {
    height: 44px;
  }
  body.debrief-page--keyboard .dialog-overlay,
  body.debrief-page--keyboard .mentor-splash,
  body.debrief-page--keyboard .patient-mono-footer,
  body.debrief-page--keyboard .mentor-stage-bar {
    display: none;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  .debrief-scene {
    flex-direction: row;
    gap: 8px;
  }
  .debrief-scene-avatar {
    flex: 1 1 55%;
  }
  .debrief-board-sheet {
    position: static;
    flex: 1 1 45%;
    height: auto !important;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 8px;
    border: 1px solid var(--color-border, #e0e4ea);
    box-shadow: none;
  }
  .debrief-board-sheet .debrief-sheet-handle {
    display: none;
  }
  .debrief-board-sheet .flipchart-easel {
    overflow-y: auto;
    max-height: 100%;
  }
  body.debrief-page main.debrief-main {
    padding: 4px;
  }
  .debrief-log {
    max-height: 22vh;
    max-height: 22dvh;
  }
}
.mt-drilldown-chips {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
}
.mt-drilldown-label {
  font-size: 13px;
  opacity: .7;
}
.mt-drilldown-chip {
  border: 1px solid var(--border, #ccd);
  background: transparent;
  border-radius: 14px;
  padding: 4px 10px;
  font-size: 13px;
  cursor: pointer;
}
.mt-drilldown-chip:hover {
  background: rgba(0, 80, 149, .08);
}
.mt-drilldown-panel {
  flex: 0 0 auto;
  margin-top: 8px;
  border: 1px solid var(--border, #ccd);
  border-radius: 10px;
  padding: 10px;
  max-height: 40vh;
  overflow: auto;
}
.mt-drilldown-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 6px;
}
.mt-drilldown-close {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}
.mt-drilldown-section {
  font-weight: 600;
  opacity: .8;
  margin: 8px 0 4px;
  font-size: 13px;
}
.mt-drilldown-item {
  padding: 6px 8px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.mt-drilldown-item.is-gap {
  background: rgba(200, 80, 40, .08);
}
.mt-drilldown-item-title {
  font-size: 13px;
  font-weight: 600;
}
.mt-drilldown-rationale {
  font-size: 13px;
  margin-top: 2px;
}
.mt-drilldown-evidence {
  font-size: 12px;
  opacity: .75;
  font-style: italic;
  margin-top: 2px;
}
