:root {
  color-scheme: light;
  --ink: #151513;
  --muted: #60645e;
  --paper: #fbfaf5;
  --white: #ffffff;
  --line: #ddd9ce;
  --navy: #061626;
  --navy-2: #09243b;
  --green: #2f7f62;
  --green-dark: #174f3b;
  --coral: #d76550;
  --blue: #326fa8;
  --gold: #bd8b22;
  --danger: #a43e35;
  --shadow: 0 26px 80px rgba(20, 22, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.app-active .site-header,
body.app-active .site-footer,
body.app-active #main > section:not(#app) {
  display: none;
}

body.app-active {
  background: #f2f4ee;
}

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

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

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.hidden {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(221, 217, 206, 0.68);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  color: var(--paper);
  font-size: 0.82rem;
}

.site-nav {
  gap: clamp(10px, 2vw, 22px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  color: var(--ink);
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-align: center;
}

.button.small {
  min-height: 38px;
  padding: 8px 13px;
}

.button.primary {
  background: linear-gradient(135deg, var(--green-dark), #0f7e89);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(23, 79, 59, 0.22);
}

.button.secondary,
.button.glass {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button.glass {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  backdrop-filter: blur(10px);
}

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

.button.is-toggled {
  border-color: rgba(50, 111, 168, 0.35);
  background: #eaf1f8;
  color: var(--blue);
}

.button.full {
  width: 100%;
}

.hero-splash {
  position: relative;
  display: grid;
  min-height: 96vh;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(18px, 4vw, 56px) 58px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 14, 24, 0.94) 0%, rgba(4, 14, 24, 0.72) 44%, rgba(4, 14, 24, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 14, 24, 0.72) 0%, rgba(4, 14, 24, 0.02) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-splash .eyebrow,
.questions .eyebrow {
  color: #a8dfc7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  max-width: 980px;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-line {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.3rem, 2.4vw, 2.15rem);
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.promise-strip {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.promise-strip span {
  padding: 15px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  text-align: center;
}

.section-wrap,
.section-band {
  padding: clamp(62px, 8vw, 116px) clamp(18px, 4vw, 56px);
}

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.feature-copy > p,
.section-heading p,
.path-cards p,
.role-grid p,
.workspace-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.step-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.step-grid article,
.tier-card,
.path-cards article,
.question-grid details,
.tool-panel,
.role-grid article,
.room-side article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 16px;
  padding: 18px;
}

.step-grid strong {
  grid-row: span 2;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #e5f1ea;
  color: var(--green-dark);
}

.step-grid p,
.tier-card p,
.question-grid p,
.tool-panel p,
.room-side p,
.assignment-list span,
.muse-row small {
  color: var(--muted);
}

.image-frame,
.wide-image,
.room-stage {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(21, 21, 19, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-frame img,
.wide-image img,
.room-stage img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.image-frame figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-band {
  background: #eef3f6;
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 32px;
}

.tier-grid,
.path-cards,
.question-grid,
.role-grid {
  display: grid;
  gap: 16px;
}

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

.tier-card {
  padding: 24px;
}

.tier-card.featured {
  border-color: rgba(47, 127, 98, 0.56);
  box-shadow: 0 18px 48px rgba(47, 127, 98, 0.13);
}

.tier-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tier-card strong {
  display: block;
  margin-top: 22px;
  font-size: 2.2rem;
}

.dashboard-pitch {
  display: grid;
  gap: 22px;
}

.wide-image img {
  aspect-ratio: 21 / 9;
}

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

.path-cards article {
  padding: 26px;
}

.questions {
  background: var(--navy);
  color: var(--white);
}

.questions .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

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

.question-grid details {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

.question-grid summary {
  font-weight: 900;
}

.question-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.app-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 0;
  min-height: 100vh;
  padding-top: 0;
  background: #f4f7fb;
}

.app-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 116, 184, 0.28), transparent 34%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  color: var(--white);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 6px 8px 18px;
  font-weight: 900;
}

.account-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.app-sidebar h2 {
  margin-bottom: 2px;
  font-size: 1.6rem;
}

.app-sidebar p {
  color: rgba(255, 255, 255, 0.68);
}

.app-nav {
  display: grid;
  gap: 8px;
}

#sign-out {
  margin-top: auto;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.app-nav button {
  width: 100%;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  text-align: left;
}

.app-nav button span,
.app-nav button small {
  display: block;
}

.app-nav button small {
  margin-top: 1px;
  color: inherit;
  font-weight: 650;
  opacity: 0.72;
}

.app-nav button.is-active,
.app-nav button:hover {
  background: rgba(23, 100, 166, 0.38);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.app-main {
  padding: clamp(22px, 3vw, 36px);
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
  margin: calc(clamp(22px, 4vw, 42px) * -1) calc(clamp(22px, 4vw, 42px) * -1) 28px;
  padding: 16px clamp(22px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 247, 251, 0.94);
  backdrop-filter: blur(14px);
}

.app-topbar strong {
  display: block;
  font-size: 1.42rem;
  line-height: 1.1;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-actions span,
#status-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(47, 127, 98, 0.25);
  border-radius: 999px;
  background: #edf5ef;
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.app-view {
  display: none;
}

.app-view.is-active {
  display: block;
  animation: view-in 180ms ease-out;
}

@keyframes view-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.workspace-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.hero-panel {
  align-items: stretch;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 127, 98, 0.13), rgba(32, 111, 190, 0.13)),
    var(--white);
}

.workspace-heading h2 {
  max-width: 850px;
}

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

.role-grid article {
  min-height: 300px;
  padding: 28px;
}

.role-grid h3 {
  font-size: 2rem;
}

.role-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 950;
}

.role-icon.muse {
  background: var(--blue);
}

.launch-card {
  width: min(280px, 100%);
  padding: 20px;
  border: 1px solid rgba(21, 21, 19, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.launch-card span,
.metric-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 4.3rem;
  line-height: 1;
}

.activity-strip,
.metric-grid,
.workflow-rail {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.activity-strip {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.activity-strip article,
.metric-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 20, 35, 0.05);
}

.activity-strip strong,
.activity-strip span {
  display: block;
}

.activity-strip span {
  color: var(--muted);
}

.workflow-rail {
  grid-template-columns: repeat(5, 1fr);
}

.workflow-rail span {
  min-height: 40px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  text-align: center;
}

.workflow-rail span.is-done {
  border-color: rgba(47, 127, 98, 0.22);
  background: #edf5ef;
  color: var(--green-dark);
}

.workflow-rail span.is-active {
  border-color: rgba(50, 111, 168, 0.38);
  background: #eaf1f8;
  color: var(--blue);
}

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

.metric-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 2.3rem;
  line-height: 1;
}

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

.tool-panel {
  padding: 20px;
  box-shadow: 0 12px 40px rgba(7, 20, 35, 0.05);
}

.tool-panel h3,
.metric-grid strong,
.activity-strip strong {
  color: #061626;
}

.tool-panel.wide {
  grid-column: 1 / -1;
}

.mini-dl {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.mini-dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.mini-dl dt {
  color: var(--muted);
  font-weight: 850;
}

.mini-dl dd {
  margin: 0;
  font-weight: 850;
}

.panel-heading,
.room-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-heading span,
.session-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf5ef;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 780;
}

label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9c5b8;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

input,
select {
  min-height: 44px;
  padding: 9px 11px;
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
}

.session-meta,
.listing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.message-thread {
  display: grid;
  gap: 10px;
}

.message-thread p {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #f7f6ef;
}

.message-thread strong {
  display: block;
  color: var(--ink);
}

.muse-list,
.assignment-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.muse-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.muse-row.is-selected {
  border-color: rgba(47, 127, 98, 0.6);
  background: #fbfff9;
}

.muse-row small,
.muse-row strong {
  display: block;
}

.muse-row em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 900;
}

.avatar {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b69d1, var(--green-dark));
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.avatar.coral {
  background: var(--coral);
}

.avatar.gold {
  background: var(--gold);
}

.metric-panel strong {
  display: block;
  color: var(--green-dark);
  font-size: 4.2rem;
  line-height: 1;
}

.assignment-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.assignment-list span {
  grid-column: 1;
}

.assignment-list button,
.listing-grid button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 850;
}

.assignment-list button {
  grid-row: 1 / span 2;
  grid-column: 2;
  min-height: 38px;
  padding: 8px 12px;
}

.assignment-list li.is-accepted {
  border-color: rgba(47, 127, 98, 0.45);
  background: #fbfff9;
}

.listing-grid button {
  min-height: 42px;
  padding: 9px 12px;
}

.room-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}

.room-stage {
  display: grid;
  gap: 12px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.screen-share {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #0e1210;
}

.screen-share img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.screen-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(21, 21, 19, 0.78);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

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

.video-dock article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 10px;
  align-items: center;
  min-height: 84px;
  padding: 14px;
  border-radius: 8px;
  background: #f4f5ef;
}

.video-dock small {
  color: var(--muted);
}

.call-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.call-controls button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
}

.room-side {
  display: grid;
  gap: 14px;
}

.room-side article {
  padding: 18px;
}

.timer {
  display: block;
  color: var(--blue);
  font-size: 3.8rem;
  line-height: 1;
}

.outcome-card textarea {
  min-height: 110px;
  margin-bottom: 12px;
  padding: 10px;
  resize: vertical;
}

.auth-dialog {
  width: min(520px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.auth-dialog::backdrop {
  background: rgba(4, 8, 7, 0.62);
  backdrop-filter: blur(5px);
}

.auth-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.settings-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mode-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f7fb;
}

.mode-switch button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.mode-switch button.is-active {
  border-color: rgba(15, 105, 209, 0.28);
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(7, 20, 35, 0.08);
}

.auth-card h2 {
  font-size: 2.2rem;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 900;
}

.fine-print {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 980px) {
  .split-feature,
  .app-shell,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: static;
    height: auto;
  }

  .tier-grid,
  .question-grid,
  .metric-grid,
  .settings-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-splash {
    min-height: 88vh;
    padding-top: 48px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(7, 13, 11, 0.92) 0%, rgba(7, 13, 11, 0.4) 100%);
  }

  .promise-strip,
  .tier-grid,
  .path-cards,
  .question-grid,
  .role-grid,
  .workspace-grid,
  .workflow-rail,
  .activity-strip,
  .metric-grid,
  .settings-layout,
  .video-dock,
  .call-controls {
    grid-template-columns: 1fr;
  }

  .workspace-heading,
  .panel-heading,
  .room-actions,
  .app-topbar,
  .topbar-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tool-panel.wide {
    grid-column: auto;
  }

  .muse-row {
    grid-template-columns: 44px 1fr;
  }

  .muse-row em {
    grid-column: 2;
  }

  .site-footer {
    flex-direction: column;
  }
}
