:root {
  --bg: #fcf7fb;
  --bg-mist: #f5eef8;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: rgba(255, 255, 255, 0.95);
  --panel-peach: rgba(255, 248, 253, 0.9);
  --line: rgba(84, 45, 109, 0.1);
  --text: #2f1f3a;
  --muted: #6b5a76;
  --brand: #7f4dc5;
  --brand-deep: #4f2b71;
  --brand-soft: #efe4fb;
  --peach: #f7efff;
  --critical: #c35555;
  --high: #dc7f3d;
  --elevated: #e0af42;
  --timely: #56a884;
  --low: #86b6a5;
  --supportive: #7b8ed1;
  --success: #2c836c;
  --success-soft: #e5f5ef;
  --danger-soft: #fde7ec;
  --warning-soft: #fff1dc;
  --mint: #7bd8c9;
  --shadow: 0 22px 56px rgba(83, 45, 108, 0.12);
  --shadow-soft: 0 12px 28px rgba(83, 45, 108, 0.08);
  --radius-hero: 34px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-sans: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(208, 175, 255, 0.26), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(145, 219, 204, 0.2), transparent 22%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-mist) 55%, #f2e7fa 100%);
}

body {
  min-height: 100vh;
}

a,
button,
textarea,
input {
  font: inherit;
}

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

.shell {
  min-height: 100vh;
  padding: 24px;
}

.frame {
  max-width: 1180px;
  margin: 0 auto;
}

.stack,
.stack-lg,
.hero-grid,
.content-grid,
.rationale-grid,
.button-row,
.call-meta-row,
.call-grid,
.meta-grid,
.choice-summary,
.trend-grid,
.value-list,
.disposition-grid {
  display: grid;
}

.stack {
  gap: 16px;
}

.stack-lg {
  gap: 26px;
}

.hero-grid {
  grid-template-columns: 1.35fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.content-grid {
  grid-template-columns: 1.2fr 0.88fr;
  gap: 22px;
  align-items: start;
}

.rationale-grid {
  grid-template-columns: 1.1fr 0.82fr;
  gap: 22px;
  align-items: start;
}

.button-row {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.disposition-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.call-grid,
.trend-grid,
.meta-grid,
.choice-summary {
  gap: 12px;
}

.call-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

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

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

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

.topbar,
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar {
  padding: 10px 2px 4px;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand-link {
  display: block;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-lockup-text-only {
  gap: 0;
}

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

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-mark {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.topnav {
  display: flex;
  gap: 0;
  color: var(--muted);
  align-items: center;
  flex-wrap: wrap;
}

.topnav > * {
  position: relative;
  padding: 0 14px;
}

.topnav > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(84, 45, 109, 0.14);
  transform: translateY(-50%);
}

.nav-signout {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0 14px;
  cursor: pointer;
}

.hero,
.card,
.modal-card,
.bar {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-hero);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 234, 255, 0.88));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  inset: auto auto -160px -120px;
  background: radial-gradient(circle, rgba(127, 77, 197, 0.2), transparent 68%);
}

.hero::after {
  width: 340px;
  height: 340px;
  inset: -110px -120px auto auto;
  background: radial-gradient(circle, rgba(123, 216, 201, 0.28), transparent 66%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 52px;
}

.compact-hero .hero-content {
  max-width: 760px;
}

.hero-rn {
  min-height: 70vh;
}

.card {
  padding: 28px;
}

.soft-peach,
.soft-plum {
  background: var(--panel-peach);
}

.soft-panel {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 70, 75, 0.05);
}

.eyebrow,
.meta-label,
.mini-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--muted);
}

.eyebrow {
  color: var(--brand);
}

.title,
.card h2,
.card h3,
.modal-card h2 {
  margin: 0;
  font-weight: 450;
  letter-spacing: -0.01em;
}

.title {
  max-width: 12ch;
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  line-height: 1.08;
}

.title-compact {
  max-width: none;
}

.lede,
.story-copy,
.value-list,
.muted {
  color: var(--muted);
}

.lede,
.story-copy {
  margin: 0;
  max-width: 60ch;
  line-height: 1.82;
  font-size: 1.02rem;
}

.value-list {
  margin: 0;
  padding-left: 18px;
  gap: 8px;
  line-height: 1.85;
}

.instruction-bar {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(239, 228, 251, 0.96), rgba(255, 247, 252, 0.92));
  color: var(--brand-deep);
}

.progress-badge,
.pill,
.mini-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.pill,
.progress-badge {
  background: rgba(127, 77, 197, 0.12);
  color: var(--brand-deep);
}

.live-pill,
.timestamp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.timestamp-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 70, 75, 0.07);
  color: var(--muted);
  font-size: 0.82rem;
}

.ring-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #28b981;
  box-shadow: 0 0 0 0 rgba(40, 185, 129, 0.45);
  animation: pulse-ring 1.8s ease-out infinite;
}

.mini-status.editable {
  background: rgba(246, 236, 255, 0.88);
  color: #7a529c;
}

.mini-status.locked {
  background: rgba(239, 228, 251, 0.95);
  color: var(--brand-deep);
}

.input-label {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.text-input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(127, 77, 197, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 255, 0.98);
  color: var(--text);
  outline: none;
}

.text-input:focus {
  border-color: rgba(127, 77, 197, 0.38);
  box-shadow: 0 0 0 4px rgba(127, 77, 197, 0.08);
}

.policy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.policy-check input {
  margin-top: 3px;
}

.lead-intel-check {
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(127, 77, 197, 0.1);
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

textarea {
  width: 100%;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(127, 77, 197, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 255, 0.98);
  color: var(--text);
  resize: vertical;
  outline: none;
  line-height: 1.7;
}

textarea:focus {
  border-color: rgba(127, 77, 197, 0.38);
  box-shadow: 0 0 0 4px rgba(127, 77, 197, 0.08);
}

textarea[readonly] {
  background: linear-gradient(160deg, rgba(252, 247, 255, 0.98), rgba(246, 238, 252, 0.98));
  color: var(--muted);
  border-color: rgba(127, 77, 197, 0.22);
  box-shadow: inset 0 0 0 1px rgba(127, 77, 197, 0.04);
}

.btn,
.btn-link,
.disposition-btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn,
.btn-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 18px;
  font-weight: 500;
}

.btn-primary,
.btn-link {
  color: #fff;
  background: linear-gradient(135deg, #7f4dc5 0%, #9b63dc 100%);
  box-shadow: 0 14px 30px rgba(127, 77, 197, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(20, 70, 75, 0.08);
  box-shadow: var(--shadow-soft);
}

.btn-mint {
  color: #173c39;
  background: linear-gradient(135deg, #9be8dc 0%, var(--mint) 100%);
  box-shadow: 0 14px 30px rgba(123, 216, 201, 0.28);
}

.btn-link-muted {
  color: var(--text);
}

.btn-demo {
  border-color: rgba(127, 77, 197, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.contact-mode-toggle {
  display: inline-flex;
  gap: 10px;
  width: fit-content;
  padding: 6px;
  border-radius: 999px;
  background: rgba(245, 237, 252, 0.92);
  border: 1px solid rgba(127, 77, 197, 0.12);
}

.contact-mode-pill {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
}

.contact-mode-pill.active {
  color: #fff;
  background: linear-gradient(135deg, #7f4dc5 0%, #9b63dc 100%);
  box-shadow: 0 10px 24px rgba(127, 77, 197, 0.22);
}

.lead-results-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(244, 236, 255, 0.94));
  border: 1px solid rgba(127, 77, 197, 0.12);
}

.lead-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.lead-result-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 70, 75, 0.06);
}

.lead-result-item p {
  margin: 4px 0 0;
}

.lead-result-links {
  align-self: center;
}

.lead-result-item a {
  align-self: center;
  white-space: nowrap;
}

.btn-checkpoint {
  background: linear-gradient(135deg, rgba(255, 241, 232, 0.96), rgba(223, 241, 238, 0.96));
  color: var(--brand-deep);
  border: 1px solid rgba(22, 127, 123, 0.12);
  box-shadow: var(--shadow-soft);
}

.btn-checkpoint:disabled {
  background: linear-gradient(135deg, rgba(244, 247, 247, 0.96), rgba(239, 243, 242, 0.96));
  color: #8aa0a4;
  border-color: rgba(20, 70, 75, 0.08);
  opacity: 1;
}

.btn:hover,
.btn-link:hover,
.disposition-btn:hover {
  transform: translateY(-1px);
}

.btn:disabled,
.disposition-btn:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.disposition-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 18px;
  background: var(--panel-strong);
  color: var(--text);
  border: 1px solid rgba(20, 70, 75, 0.08);
  box-shadow: var(--shadow-soft);
  text-align: left;
  font-weight: 500;
}

.disposition-btn.selected {
  border-width: 1px;
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px rgba(20, 63, 69, 0.09),
    0 0 0 6px rgba(22, 127, 123, 0.05);
}

.disposition-btn[data-tone="critical"].selected {
  background: linear-gradient(135deg, rgba(255, 238, 239, 0.98), rgba(255, 248, 248, 0.98));
  border-color: rgba(195, 85, 85, 0.4);
}

.disposition-btn[data-tone="high"].selected {
  background: linear-gradient(135deg, rgba(255, 243, 233, 0.98), rgba(255, 250, 246, 0.98));
  border-color: rgba(220, 127, 61, 0.42);
}

.disposition-btn[data-tone="elevated"].selected {
  background: linear-gradient(135deg, rgba(255, 248, 228, 0.98), rgba(255, 252, 245, 0.98));
  border-color: rgba(224, 175, 66, 0.42);
}

.disposition-btn[data-tone="timely"].selected {
  background: linear-gradient(135deg, rgba(235, 248, 242, 0.98), rgba(251, 255, 253, 0.98));
  border-color: rgba(86, 168, 132, 0.42);
}

.disposition-btn[data-tone="low"].selected,
.disposition-btn[data-tone="supportive"].selected {
  background: linear-gradient(135deg, rgba(236, 247, 244, 0.98), rgba(249, 253, 252, 0.98));
  border-color: rgba(118, 169, 181, 0.36);
}

.meta-item,
.call-grid > div,
.trend-grid > div {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 70, 75, 0.06);
}

.meta-support {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.checkpoint-card {
  background: linear-gradient(160deg, rgba(255, 251, 248, 0.92), rgba(255, 255, 255, 0.82));
}

.lock-note {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(223, 241, 238, 0.95);
  color: var(--brand-deep);
  border: 1px solid rgba(22, 127, 123, 0.1);
}

.caller-teaser {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(255, 242, 234, 0.82));
  border: 1px solid rgba(20, 70, 75, 0.07);
}

.caller-teaser p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.protocol-list,
.feedback-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.compare-card,
.impact {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.compare-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(20, 70, 75, 0.07);
}

.compare-card.correct {
  background: var(--success-soft);
  color: var(--success);
}

.compare-card.incorrect {
  background: var(--danger-soft);
  color: #9a5557;
}

.decision-banner {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 70, 75, 0.07);
  background: rgba(255, 255, 255, 0.88);
}

.decision-banner.aligned {
  background: linear-gradient(160deg, rgba(223, 240, 229, 0.9), rgba(255, 255, 255, 0.92));
}

.decision-banner.needs-review {
  background: linear-gradient(160deg, rgba(255, 244, 235, 0.95), rgba(255, 255, 255, 0.92));
}

.decision-banner p {
  margin: 6px 0 0;
}

.impact {
  background: var(--warning-soft);
  color: #7b5321;
}

.nurse-brain-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(243, 234, 252, 0.9));
}

.empty-state-card {
  text-align: left;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 31, 36, 0.48);
  backdrop-filter: blur(8px);
}

.incoming-call {
  position: relative;
  overflow: hidden;
  width: min(100%, 680px);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 236, 255, 0.96));
  animation: modal-settle 220ms ease-out;
}

.paywall-modal {
  position: relative;
  overflow: hidden;
  width: min(100%, 620px);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.985), rgba(246, 238, 255, 0.965));
  animation: modal-settle 220ms ease-out;
}

.paywall-price {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(127, 77, 197, 0.12);
}

.lab-subscription-footer {
  display: flex;
  justify-content: center;
  padding: 2px 0 12px;
}

.subscription-manage-link {
  border: none;
  background: transparent;
  color: rgba(20, 70, 75, 0.72);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 6px 10px;
}

.subscription-manage-link:hover,
.subscription-manage-link:focus-visible {
  color: var(--ink);
}

.modal-glow {
  position: absolute;
  inset: auto -80px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(127, 77, 197, 0.26), transparent 70%);
}

.marketing-shell,
.auth-shell {
  padding-top: 28px;
}

.marketing-topbar {
  padding-top: 0;
}

.marketing-hero,
.auth-hero,
.thinkrn-lab-hero {
  overflow: hidden;
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(123, 216, 201, 0.12), transparent 28%),
    radial-gradient(circle at 78% 30%, rgba(155, 99, 220, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(250, 245, 255, 0.88), rgba(242, 233, 252, 0.82));
  filter: blur(1px);
  transform: scale(1.02);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.42));
}

.marketing-grid,
.marketing-panel-grid,
.auth-grid,
.outcomes-grid {
  display: grid;
  gap: 22px;
}

.marketing-grid,
.auth-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
}

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

.hero-actions {
  max-width: 430px;
}

.marketing-grid > .stack-lg:first-child {
  align-items: center;
  justify-items: center;
  text-align: center;
}

.marketing-grid > .stack-lg:first-child .title {
  letter-spacing: 0.005em;
}

.marketing-grid > .stack-lg:first-child .lede {
  max-width: 34ch;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.hero-orb-left {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(155, 99, 220, 0.22), transparent 70%);
}

.hero-orb-right {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -60px;
  background: radial-gradient(circle, rgba(123, 216, 201, 0.22), transparent 70%);
}

.preview-card,
.auth-card {
  border-radius: 30px;
  border: 1px solid rgba(84, 45, 109, 0.08);
  background: rgba(255, 251, 255, 0.8);
  box-shadow: var(--shadow);
  padding: 28px;
  backdrop-filter: blur(20px);
}

.auth-card {
  width: min(100%, 640px);
  max-width: 640px;
  min-height: 420px;
  justify-self: stretch;
  padding: 46px 42px;
}

.auth-card .stack {
  gap: 22px;
}

.auth-card .text-input {
  min-height: 60px;
  padding: 0 20px;
}

.activity-strip {
  position: relative;
}

.product-overview-section {
  display: grid;
  gap: 24px;
  justify-items: center;
  padding: 10px 0 8px;
  text-align: center;
}

.product-overview-copy {
  max-width: 680px;
  display: grid;
  gap: 10px;
}

.product-overview-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--brand-deep);
}

.product-overview-copy p {
  margin: 0;
}

.product-overview-showcase {
  position: relative;
  width: min(100%, 920px);
}

.product-overview-glow {
  position: absolute;
  inset: auto 7% -18px;
  height: 80%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 22%, rgba(123, 216, 201, 0.18), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(155, 99, 220, 0.22), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(127, 77, 197, 0.1), transparent 46%);
  filter: blur(20px);
  pointer-events: none;
}

.product-overview-frame {
  position: relative;
  padding: 16px;
  border-radius: 34px;
  border: 1px solid rgba(84, 45, 109, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 243, 253, 0.98));
  box-shadow: 0 24px 54px rgba(83, 45, 108, 0.12);
  backdrop-filter: blur(20px);
}

.product-overview-video {
  display: block;
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8f1fc, #f2e8fa);
  box-shadow: 0 14px 28px rgba(83, 45, 108, 0.1);
  overflow: hidden;
}

.mental-dashboard-shell {
  position: relative;
  overflow: visible;
  width: 100%;
  margin: 0 auto;
  padding: 34px 24px 18px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(155, 99, 220, 0.14), transparent 26%),
    radial-gradient(circle at 78% 80%, rgba(123, 216, 201, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(252, 247, 255, 0.92), rgba(243, 234, 250, 0.92));
  border: 1px solid rgba(84, 45, 109, 0.08);
  box-shadow: 0 26px 56px rgba(83, 45, 108, 0.1);
}

.mental-dashboard-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.mental-dashboard-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.mental-dashboard-orb-left {
  width: 280px;
  height: 280px;
  left: -100px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(127, 77, 197, 0.14), transparent 68%);
}

.mental-dashboard-orb-right {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -70px;
  background: radial-gradient(circle, rgba(123, 216, 201, 0.18), transparent 68%);
}

.mental-dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(0, 520px) minmax(200px, 1fr);
  gap: 28px;
  align-items: center;
  margin: 0 auto;
}

.mental-dashboard-rail {
  display: grid;
  gap: 22px;
  align-content: center;
}

.mental-dashboard-rail-left {
  padding-right: 4px;
}

.mental-dashboard-rail-right {
  padding-left: 4px;
}

.mental-dashboard-center {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  padding: 46px 36px;
  min-width: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  align-self: center;
  border-radius: 30px;
  background: rgba(255, 252, 255, 0.76);
  border: 1px solid rgba(84, 45, 109, 0.08);
  box-shadow: 0 20px 44px rgba(83, 45, 108, 0.08);
}

.mental-dashboard-center .title {
  max-width: none;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  line-height: 0.98;
}

.mental-dashboard-center .lede {
  max-width: 36ch;
}

.mental-activity-card {
  display: grid;
  gap: 10px;
  width: min(100%, 360px);
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(241, 230, 252, 0.78), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(127, 77, 197, 0.1);
  box-shadow: 0 16px 32px rgba(83, 45, 108, 0.08);
}

.mental-activity-card strong {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--brand-deep);
}

.mental-activity-card p {
  margin: 0;
}

.mental-quote-card {
  display: grid;
  align-content: center;
  min-height: 170px;
  width: 100%;
  padding: 24px 22px;
  border-radius: 28px;
  color: var(--brand-deep);
  line-height: 1.7;
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(83, 45, 108, 0.07);
}

.mental-quote-card p {
  margin: 0;
}

.mental-quote-card-soft {
  background: rgba(255, 252, 255, 0.72);
  border: 1px solid rgba(84, 45, 109, 0.07);
}

.mental-quote-card-plum {
  background: linear-gradient(145deg, rgba(244, 233, 255, 0.92), rgba(255, 250, 255, 0.8));
  border: 1px solid rgba(127, 77, 197, 0.08);
}

.mental-quote-card-mist {
  background: linear-gradient(145deg, rgba(245, 250, 251, 0.78), rgba(255, 252, 255, 0.82));
  border: 1px solid rgba(123, 216, 201, 0.12);
}

.triage-status-panel {
  position: fixed;
  top: 112px;
  right: 24px;
  z-index: 20;
  width: min(100%, 240px);
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(84, 45, 109, 0.08);
  background: rgba(255, 251, 255, 0.88);
  box-shadow: 0 18px 38px rgba(83, 45, 108, 0.1);
  backdrop-filter: blur(18px);
}

.triage-status-options {
  display: grid;
  gap: 10px;
}

.triage-status-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(84, 45, 109, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand-deep);
}

.triage-status-option.active {
  background: linear-gradient(145deg, rgba(244, 233, 255, 0.9), rgba(255, 255, 255, 0.82));
  border-color: rgba(127, 77, 197, 0.18);
}

.triage-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.triage-status-dot-available {
  background: #28b981;
}

.triage-status-dot-documenting {
  background: #dc556e;
}

.triage-status-queue,
.triage-status-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.triage-status-warning {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 245, 230, 0.9);
  color: #8b5a2b;
  line-height: 1.6;
  font-size: 0.92rem;
}

.nurse-brain-card-expanded {
  min-height: 100%;
}

.nurse-brain-card-expanded .trend-grid > div {
  min-height: 88px;
}

.activity-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 28px;
  border: 1px solid rgba(84, 45, 109, 0.08);
  background: rgba(255, 251, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  flex-wrap: wrap;
}

.activity-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-deep);
  font-weight: 600;
}

.activity-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(123, 216, 201, 0.42);
  animation: pulse-ring 1.8s ease-out infinite;
}

.trust-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-chip,
.compact-info-card {
  border: 1px solid rgba(84, 45, 109, 0.08);
  background: rgba(255, 251, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--brand-deep);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.strategy-card {
  background:
    radial-gradient(circle at top right, rgba(127, 77, 197, 0.1), transparent 28%),
    rgba(255, 251, 255, 0.84);
}

.strategy-card-outcomes {
  background:
    radial-gradient(circle at top right, rgba(123, 216, 201, 0.14), transparent 30%),
    rgba(255, 251, 255, 0.84);
}

.compact-info-grid {
  align-items: start;
}

.logo-lockup-text-only {
  gap: 0;
}

.compact-info-card,
.request-demo-card {
  position: relative;
}

.compact-list {
  margin-top: 0;
}

.request-demo-card {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.request-demo-toggle-row {
  display: flex;
  justify-content: flex-start;
}

.demo-form-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    grid-template-rows 220ms ease,
    opacity 220ms ease,
    transform 220ms ease,
    margin-top 220ms ease;
  margin-top: -6px;
}

.demo-form-panel[aria-hidden="true"] {
  pointer-events: none;
}

.demo-form-panel-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
  margin-top: 4px;
}

.demo-form-panel-inner {
  overflow: hidden;
  min-height: 0;
}

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

.request-demo-actions {
  max-width: 280px;
}

.marketing-footer {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 40px 28px 44px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(246, 239, 251, 0.9), rgba(252, 248, 255, 0.98));
  border: 1px solid rgba(127, 77, 197, 0.08);
  box-shadow: 0 18px 40px rgba(77, 45, 105, 0.06);
  color: var(--muted);
  justify-items: center;
  text-align: center;
}

.legal-shell {
  padding-top: 32px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
}

.legal-copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-copy p {
  margin: 0;
}

.legal-copy a {
  color: var(--brand-deep);
}

.marketing-footer p {
  margin: 0;
}

.marketing-footer-title {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.marketing-footer-tagline,
.marketing-footer-company,
.marketing-footer-trust,
.marketing-footer-links,
.marketing-footer-contact {
  font-size: 0.95rem;
  line-height: 1.65;
}

.marketing-footer-contact a,
.marketing-footer-links a {
  color: var(--brand-deep);
  text-decoration: none;
}

.footer-link-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-deep);
  font: inherit;
  line-height: inherit;
  cursor: pointer;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  text-decoration: underline;
}

.marketing-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.call-preview-card,
.scenario-preview-card,
.feedback-preview-card,
.auth-card {
  position: relative;
}

.call-preview-bubble,
.chat-bubble,
.feedback-preview-section {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(84, 45, 109, 0.08);
}

.corporate-list {
  margin-top: 4px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(127, 77, 197, 0.12), rgba(123, 216, 201, 0.16));
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call-preview-bubble p,
.chat-bubble,
.feedback-preview-section p {
  margin: 0;
  line-height: 1.7;
}

.select-shell {
  border: 1px solid rgba(127, 77, 197, 0.14);
  background: rgba(255, 252, 255, 0.98);
  border-radius: 18px;
  padding: 0 14px;
}

.select-shell select {
  width: 100%;
  height: 52px;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.auth-note {
  margin: 0;
}

.auth-notice,
.auth-error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.94rem;
}

.auth-notice {
  background: rgba(239, 228, 251, 0.72);
  color: var(--brand-deep);
}

.auth-error {
  background: rgba(253, 231, 236, 0.96);
  color: #9a4053;
}

.demo-modal {
  width: min(100%, 560px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 235, 255, 0.96));
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 185, 129, 0.45);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(40, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(40, 185, 129, 0);
  }
}

@keyframes modal-settle {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .content-grid,
  .rationale-grid,
  .meta-grid,
  .marketing-grid,
  .marketing-panel-grid,
  .auth-grid,
  .outcomes-grid,
  .demo-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 38px 24px;
  }

  .section-header,
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-card {
    justify-self: stretch;
    max-width: none;
  }

  .mental-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .mental-dashboard-rail-left,
  .mental-dashboard-rail-right {
    padding: 0;
  }

  .lead-feed-summary {
    justify-items: start;
    text-align: left;
  }

  .triage-status-panel {
    position: static;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .shell {
    padding: 16px;
  }

  .title {
    font-size: 2.55rem;
  }

  .hero,
  .card,
  .modal-card,
  .bar {
    border-radius: 24px;
  }

  .trend-grid,
  .admin-trend-grid,
  .disposition-grid,
  .button-row {
    grid-template-columns: 1fr;
  }

}
