@charset "UTF-8";
/* MM UI public stylesheet entry point */
/* MM UI foundation: tokens, global element styles and typography */
:root {
  --mm-black: #000000;
  --mm-bg: #070808;
  --mm-surface: #101111;
  --mm-surface-2: #171919;
  --mm-surface-3: #202222;
  --mm-border: #303333;
  --mm-border-soft: #242727;
  --mm-text: #F2F2F2;
  --mm-muted: #9EA3A3;
  --mm-muted-2: #6F7474;
  --mm-lime: #D7DF23;
  --mm-lime-dark: #AFAF28;
  --mm-danger: #E55454;
  --mm-warning: #E1AD3B;
  --mm-info: #4BA8D8;
  --mm-radius-xs: .45rem;
  --mm-radius-sm: .6rem;
  --mm-radius: .9rem;
  --mm-radius-lg: 1.25rem;
  --mm-shadow-lime: 0 0 24px rgba(215, 223, 35, .14);
  --mm-content: 1180px;
  --mm-touch: 46px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--mm-black);
}

body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(215, 223, 35, 0.05), transparent 32rem), linear-gradient(180deg, #050606 0%, #090a0a 100%);
  color: var(--mm-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--mm-lime);
}

a:hover {
  color: #edf54a;
}

/* Blazor FocusOnNavigate gives the destination heading tabindex="-1" and focuses it programmatically. */
h1[tabindex="-1"]:focus {
  outline: none;
}

.mm-display {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.mm-eyebrow {
  color: var(--mm-lime);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mm-muted {
  color: var(--mm-muted) !important;
}

.mm-small {
  font-size: 0.875rem;
}

.mm-xs {
  font-size: 0.75rem;
}

.mm-code-token {
  display: inline-flex;
  padding: 0.2rem 0.45rem;
  border-radius: 0.35rem;
  background: #191B1B;
  border: 1px solid #303333;
  color: #E5E8E8;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
}

code {
  color: #cfd66b;
  background: #1b1e17;
  border: 1px solid #323720;
  border-radius: 6px;
  padding: 0.15rem 0.35rem;
  font-size: 0.78rem;
}

@media (max-width: 767.98px) {
  .container {
    --bs-gutter-x: 1.15rem;
  }
  h1,
  .h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  h2,
  .h2 {
    font-size: 1.6rem;
  }
}
/* Generic application and flow layout */
.mm-shell {
  max-width: var(--mm-content);
  margin-inline: auto;
}

.mm-page {
  padding-bottom: 5.5rem;
}

.mm-grid-bg {
  background-image: linear-gradient(rgba(215, 223, 35, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(215, 223, 35, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
}

.mm-sticky-action {
  position: sticky;
  bottom: 4.4rem;
  z-index: 30;
  margin-inline: -0.75rem;
  padding: 0.75rem;
  background: linear-gradient(180deg, rgba(7, 8, 8, 0), rgba(7, 8, 8, 0.98) 30%);
}

.mm-floating-status {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(10rem + env(safe-area-inset-bottom));
  z-index: 40;
  min-width: 5.75rem;
  padding: 0.65rem 1rem;
  display: grid;
  justify-items: center;
  gap: 0.1rem;
  border: 1px solid rgba(215, 223, 35, 0.45);
  border-radius: 0.9rem;
  background: rgba(14, 15, 15, 0.96);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.38), 0 0 18px rgba(215, 223, 35, 0.08);
  pointer-events: none;
}

.mm-floating-status-label {
  color: var(--mm-muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.mm-floating-status-value {
  color: var(--mm-lime);
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
  line-height: 1.1;
}

.mm-mobile-only {
  display: block;
}

.mm-desktop-only {
  display: none;
}

.mm-flow-shell {
  max-width: 980px;
  margin-inline: auto;
}

.mm-flow-header {
  max-width: 720px;
}

.mm-flow-panel {
  min-height: 420px;
}

.mm-process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.mm-process-node {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--mm-border);
  border-radius: 0.85rem;
  background: #111313;
}

.mm-process-node:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.58rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mm-lime);
  font-weight: 950;
  z-index: 2;
}

.mm-process-node-index {
  color: var(--mm-lime);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mm-process-flow--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mm-process-flow--five .mm-process-node {
  min-height: 190px;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(215, 223, 35, 0.035), transparent 45%), #111313;
}

.mm-process-node-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 223, 35, 0.45);
  border-radius: 50%;
  background: #090a0a;
  color: var(--mm-lime);
  font-size: 1.05rem;
  box-shadow: 0 0 18px rgba(215, 223, 35, 0.08);
}

.mm-guide-journey {
  display: grid;
  gap: 2.25rem;
}

.mm-guide-step {
  position: relative;
  border-color: rgba(215, 223, 35, 0.28);
  background: linear-gradient(135deg, rgba(215, 223, 35, 0.025), transparent 45%), #111313;
}

.mm-guide-step::before {
  content: "";
  position: absolute;
  inset: 0.75rem auto 0.75rem 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--mm-lime);
}

.mm-guide-step:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -2rem;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mm-lime);
  color: #070808;
  font-weight: 950;
  z-index: 2;
  box-shadow: 0 0 18px rgba(215, 223, 35, 0.2);
}

.mm-guide-step--final {
  border-color: rgba(215, 223, 35, 0.55);
}

.mm-guide-step__action {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.mm-guide-step__action .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.75rem;
}

.mm-guide-step-layout,
.mm-guide-objective-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.7fr);
  gap: 1.5rem;
  align-items: center;
}

.mm-guide-objective-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.mm-guide-tile-grid {
  display: grid;
  gap: 0.65rem;
}

.mm-guide-tile-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mm-guide-choice,
.mm-guide-info {
  min-height: 88px;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid var(--mm-border);
  border-radius: 0.75rem;
  background: #0d0f0f;
  text-align: center;
}

.mm-guide-choice > i,
.mm-guide-info > i {
  color: var(--mm-lime);
  font-size: 1.35rem;
}

.mm-guide-choice img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.mm-guide-selector-choice {
  min-height: 220px;
  flex-direction: column;
  padding: 1.15rem;
}

.mm-guide-selector-choice img {
  width: 105px;
  height: 105px;
}

.mm-guide-selector-choice > span {
  gap: 0.3rem;
}

.mm-guide-selector-choice small {
  max-width: 15rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.mm-guide-why {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(215, 223, 35, 0.2);
  border-radius: 0.75rem;
  background: rgba(215, 223, 35, 0.035);
}

.mm-guide-why > i {
  color: var(--mm-lime);
  font-size: 1.1rem;
}

.mm-guide-why p {
  margin-top: 0.25rem;
  color: var(--mm-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.mm-guide-choice span,
.mm-guide-info span {
  display: grid;
  gap: 0.15rem;
}

.mm-guide-choice small,
.mm-guide-info small,
.mm-guide-log small {
  display: block;
  color: var(--mm-muted);
  font-size: 0.67rem;
}

.mm-guide-choice.is-highlighted,
.mm-guide-cycle span.is-highlighted {
  border-color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.06);
}

.mm-guide-info {
  justify-content: flex-start;
  text-align: left;
}

.mm-guide-note {
  color: var(--mm-muted);
  font-size: 0.75rem;
  text-align: right;
}

.mm-guide-note i {
  margin-right: 0.4rem;
  color: var(--mm-lime);
}

.mm-guide-log {
  min-height: 78px;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 1.25rem;
  align-items: center;
  border: 1px solid var(--mm-border);
  border-radius: 0.75rem;
  background: #0d0f0f;
}

.mm-guide-log > i {
  color: var(--mm-lime);
  font-size: 1.35rem;
}

.mm-guide-cycle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.mm-guide-cycle span {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--mm-border);
  border-radius: 999px;
  color: var(--mm-text);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mm-guide-cycle i {
  color: var(--mm-lime);
}

.mm-process-flow--five .mm-process-node--complete {
  border-color: rgba(215, 223, 35, 0.55);
  background: radial-gradient(circle at 50% 0, rgba(215, 223, 35, 0.1), transparent 55%), #111313;
}

.mm-sticky-summary {
  position: sticky;
  top: 86px;
}

@media (min-width: 768px) {
  .mm-mobile-only {
    display: none !important;
  }
  .mm-desktop-only {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .mm-page {
    padding-bottom: 2rem;
  }
  .mm-sticky-action {
    bottom: 0;
  }
  .mm-floating-status {
    bottom: 5.75rem;
  }
}
@media (max-width: 991.98px) {
  .mm-sticky-summary {
    position: static;
  }
  .mm-process-flow--five {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.4rem;
  }
  .mm-guide-step-layout,
  .mm-guide-objective-grid {
    grid-template-columns: 1fr;
  }
  .mm-guide-note {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .mm-flow-panel {
    min-height: auto;
  }
  .mm-process-flow {
    grid-template-columns: 1fr;
  }
  .mm-process-flow--five {
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .mm-process-flow--five .mm-process-node {
    min-height: 0;
    padding-left: 4.5rem;
  }
  .mm-process-flow--five .mm-process-node-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    margin: 0;
  }
  .mm-guide-tile-grid--three,
  .mm-guide-log {
    grid-template-columns: 1fr;
  }
  .mm-guide-log {
    gap: 0.75rem;
    text-align: center;
  }
  .mm-guide-log > i {
    margin-inline: auto;
  }
  .mm-process-node:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -0.72rem;
    transform: translateX(-50%);
  }
}
/* Brand, primary navigation, bottom navigation and docs navigation */
.mm-navbar {
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--mm-border-soft);
  backdrop-filter: blur(12px);
}

.mm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--mm-text);
  text-decoration: none;
}

.mm-brand-mark {
  width: 48px;
  height: 48px;
  display: inline-block;
  box-shadow: var(--mm-shadow-lime);
  background: #0c0d0d url("../assets/mm-logo-reference.webp") center/82% no-repeat;
  overflow: hidden;
}

.mm-brand-mark > * {
  display: none;
}

.mm-brand-title {
  color: var(--mm-lime);
  font-weight: 950;
  letter-spacing: 0.06em;
  font-size: 1rem;
}

.mm-brand-subtitle {
  color: var(--mm-text);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mm-nav-link {
  color: #D9DDDD;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.mm-nav-link:hover,
.mm-nav-link.active {
  color: var(--mm-lime);
}

.mm-doc-nav {
  position: sticky;
  top: 86px;
}

.mm-doc-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.8rem;
  border-radius: 0.7rem;
  color: #C9CECE;
  text-decoration: none;
  font-weight: 750;
}

.mm-doc-nav a:hover,
.mm-doc-nav a.active {
  color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.06);
}

.mm-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: rgba(8, 9, 9, 0.96);
  border-top: 1px solid var(--mm-border);
  backdrop-filter: blur(14px);
}

.mm-bottom-nav a {
  flex: 1;
  color: var(--mm-muted);
  text-decoration: none;
  text-align: center;
  padding: 0.65rem 0.25rem 0.55rem;
  font-size: 0.67rem;
  font-weight: 750;
}

.mm-bottom-nav a i {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 0.15rem;
}

.mm-bottom-nav a.active {
  color: var(--mm-lime);
}

.mm-bottom-nav a.disabled,
.mm-bottom-nav a.disabled:hover {
  color: var(--mm-muted-2);
  opacity: 0.65;
  pointer-events: none;
  cursor: default;
}

/* Card, stat and reusable panel components */
.mm-card {
  background: linear-gradient(180deg, rgba(23, 25, 25, 0.98), rgba(14, 15, 15, 0.98));
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.mm-card-accent {
  position: relative;
  overflow: hidden;
}

.mm-card-accent::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  bottom: 0.65rem;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--mm-lime);
  box-shadow: 0 0 18px rgba(215, 223, 35, 0.28);
}

.mm-action-hero {
  position: relative;
  min-height: 22rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(215, 223, 35, 0.28);
  border-radius: var(--mm-radius-lg);
  background: radial-gradient(circle at 82% 45%, rgba(215, 223, 35, 0.12), transparent 28rem), linear-gradient(145deg, rgba(24, 27, 26, 0.99), rgba(10, 11, 11, 0.99));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34), 0 0 30px rgba(215, 223, 35, 0.05);
}

.mm-action-hero::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 1rem;
  bottom: 1rem;
  left: 0;
  width: 5px;
  border-radius: 0 5px 5px 0;
  background: var(--mm-lime);
  box-shadow: 0 0 24px rgba(215, 223, 35, 0.42);
}

.mm-action-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 11, 11, 0.99) 0%, rgba(10, 11, 11, 0.94) 42%, rgba(10, 11, 11, 0.68) 62%, rgba(10, 11, 11, 0.16) 100%);
}

.mm-action-hero-art {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  opacity: 0.64;
  filter: saturate(0.82) contrast(1.08) brightness(0.72);
  pointer-events: none;
  user-select: none;
}

.mm-action-hero-content {
  position: relative;
  z-index: 2;
  width: min(68%, 52rem);
}

.mm-action-hero-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mm-action-hero-title {
  margin: 0.75rem 0 0.7rem;
  font-size: clamp(2.65rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.mm-action-hero-meta {
  max-width: 44rem;
  color: var(--mm-muted);
  font-size: 0.95rem;
}

.mm-action-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.mm-action-hero-stat {
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--mm-radius);
  background: rgba(5, 6, 6, 0.5);
  backdrop-filter: blur(5px);
}

.mm-action-hero-stat-value {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1;
  font-weight: 950;
}

.mm-action-hero-stat-label {
  margin-top: 0.35rem;
  color: var(--mm-muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mm-action-hero-actions {
  margin-top: 1.5rem;
}

.mm-action-hero-cta {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mm-action-hero--phase-complete {
  min-height: 20rem;
  background: linear-gradient(145deg, rgba(24, 27, 26, 0.99), rgba(8, 9, 9, 0.99));
}

.mm-action-hero--phase-complete::after {
  background: linear-gradient(90deg, rgb(10, 11, 11) 0%, rgba(10, 11, 11, 0.96) 38%, rgba(10, 11, 11, 0.56) 58%, rgba(10, 11, 11, 0.08) 100%);
}

.mm-phase-complete-hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("/assets/dashboard-phase-complete-gorilla.png") center right/cover no-repeat;
  pointer-events: none;
  user-select: none;
}

.mm-phase-complete-hero-content {
  width: min(62%, 45rem);
}

.mm-phase-complete-hero-title {
  margin: 0.8rem 0 0.65rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.mm-phase-complete-hero-description {
  max-width: 42rem;
  margin: 0;
  color: var(--mm-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.65;
}

.mm-phase-complete-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.mm-phase-complete-hero-actions .btn {
  min-height: 3.35rem;
  padding-inline: 1.35rem;
  gap: 0.6rem;
}

.mm-phase-complete-hero-primary-action {
  min-width: 12rem;
}

.mm-card-header {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--mm-border-soft);
}

.mm-card-body {
  padding: 1.15rem;
}

.mm-card-footer {
  padding: 0.85rem 1.15rem;
  border-top: 1px solid var(--mm-border-soft);
}

.mm-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mm-card-logo {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.mm-card-logo--large {
  width: 120px;
  height: 120px;
}

.mm-card-logo--xl {
  width: 140px;
  height: 140px;
}

.mm-feature-card {
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  background: var(--mm-surface);
}

.mm-feature-card .mm-card-media {
  margin-bottom: 1.25rem;
}

.mm-feature-card .mm-eyebrow {
  margin-bottom: 0.35rem;
}

.mm-feature-card-title {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.mm-feature-card-copy {
  max-width: 28rem;
  margin: 0;
  color: var(--mm-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.mm-stat {
  padding: 1rem;
  border: 1px solid var(--mm-border-soft);
  border-radius: var(--mm-radius);
  background: rgba(255, 255, 255, 0.015);
}

.mm-stat-value {
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 950;
}

.mm-stat-label {
  color: var(--mm-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mm-kpi-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--mm-lime);
  color: var(--mm-lime);
}

.mm-avatar-xl {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--mm-lime);
  background: #161818;
  color: var(--mm-lime);
  font-size: 1.8rem;
  font-weight: 950;
  box-shadow: var(--mm-shadow-lime);
}

.mm-record-card,
.mm-expandable-card {
  overflow: hidden;
}

.mm-record-header {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 0;
  background: linear-gradient(180deg, #1A1C1C, #151717);
  color: var(--mm-text);
  text-align: left;
}

.mm-record-title {
  font-weight: 900;
  text-transform: uppercase;
}

.mm-record-subtitle {
  color: var(--mm-muted);
  font-size: 0.78rem;
}

.mm-record-context {
  padding: 0.5rem 1rem 0.7rem;
  color: var(--mm-muted);
  font-size: 0.75rem;
  border-bottom: 1px solid #2A2D2D;
}

.mm-record-context strong {
  color: var(--mm-lime);
}

.mm-record-footer {
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #292C2C;
  background: #181A1A;
}

.mm-metric-card {
  padding: 1rem;
  border: 1px solid #2B2E2E;
  border-radius: 0.85rem;
  background: #111313;
}

.mm-metric-value {
  font-size: 1.85rem;
  font-weight: 950;
  line-height: 1;
}

.mm-metric-label {
  margin-top: 0.4rem;
  color: var(--mm-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 800;
}

.mm-metric-card.is-positive .mm-metric-value {
  color: var(--mm-lime);
}

.mm-metric-card.is-warning .mm-metric-value {
  color: var(--mm-warning);
}

.mm-recommendation-card {
  border: 1px solid rgba(215, 223, 35, 0.28);
  border-radius: 0.95rem;
  background: radial-gradient(circle at 95% 10%, rgba(215, 223, 35, 0.08), transparent 12rem), #111313;
  padding: 1rem;
}

.mm-recommendation-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mm-lime);
  color: #050606;
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.mm-expandable-card-header {
  padding: 1rem;
  background: linear-gradient(180deg, #191B1B, #141616);
  border-bottom: 1px solid #292C2C;
}

@media (max-width: 991.98px) {
  .mm-action-hero-content {
    width: min(82%, 46rem);
  }
  .mm-action-hero-art {
    width: 100%;
    opacity: 0.52;
  }
  .mm-phase-complete-hero-content {
    width: min(72%, 42rem);
  }
}
@media (max-width: 767.98px) {
  .mm-card,
  .mm-action-hero {
    border-radius: 1rem;
  }
  .mm-action-hero {
    min-height: 22rem;
    padding: 1.35rem;
  }
  .mm-action-hero::after {
    background: linear-gradient(90deg, rgba(10, 11, 11, 0.99) 0%, rgba(10, 11, 11, 0.94) 62%, rgba(10, 11, 11, 0.5) 100%);
  }
  .mm-action-hero-content {
    width: 100%;
  }
  .mm-action-hero-art {
    right: -18%;
    width: 100%;
    opacity: 0.34;
  }
  .mm-action-hero-title {
    font-size: clamp(2.35rem, 14vw, 4.25rem);
  }
  .mm-action-hero-stat {
    padding: 0.75rem;
  }
  .mm-action-hero-stat-label {
    font-size: 0.62rem;
  }
  .mm-action-hero--phase-complete {
    min-height: 25rem;
  }
  .mm-action-hero--phase-complete::after {
    background: linear-gradient(90deg, rgba(10, 11, 11, 0.99) 0%, rgba(10, 11, 11, 0.92) 72%, rgba(10, 11, 11, 0.58) 100%);
  }
  .mm-phase-complete-hero-art {
    background-position: 66% center;
    opacity: 0.45;
  }
  .mm-phase-complete-hero-content {
    width: 100%;
  }
  .mm-phase-complete-hero-title {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }
  .mm-phase-complete-hero-actions {
    flex-direction: column;
  }
  .mm-phase-complete-hero-actions .btn {
    width: 100%;
  }
}
/* Buttons and reusable action controls */
.btn-mm-primary,
.btn-mm-outline,
.btn-mm-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1.15;
}

.btn-mm-primary.text-start,
.btn-mm-outline.text-start,
.btn-mm-ghost.text-start {
  justify-content: flex-start;
}

.btn-mm-primary {
  --bs-btn-color: #080909;
  --bs-btn-bg: var(--mm-lime);
  --bs-btn-border-color: var(--mm-lime);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #E5EC32;
  --bs-btn-hover-border-color: #E5EC32;
  --bs-btn-active-bg: var(--mm-lime-dark);
  --bs-btn-active-border-color: var(--mm-lime-dark);
  min-height: var(--mm-touch);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.btn-mm-outline {
  --bs-btn-color: var(--mm-text);
  --bs-btn-border-color: #6E7373;
  --bs-btn-hover-color: #050606;
  --bs-btn-hover-bg: var(--mm-lime);
  --bs-btn-hover-border-color: var(--mm-lime);
  min-height: var(--mm-touch);
  font-weight: 750;
}

.btn-mm-ghost {
  min-height: 44px;
  color: var(--mm-muted);
  border: 0;
}

.btn-mm-ghost:hover {
  color: var(--mm-text);
  background: var(--mm-surface-3);
}

.mm-icon-btn {
  width: var(--mm-touch);
  height: var(--mm-touch);
  display: inline-grid;
  place-items: center;
  border-radius: 0.75rem;
  border: 1px solid var(--mm-border);
  background: var(--mm-surface-2);
  color: var(--mm-text);
}

.mm-icon-btn:hover {
  color: #000;
  background: var(--mm-lime);
  border-color: var(--mm-lime);
}

.mm-social-button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid #464A4A;
  border-radius: 0.7rem;
  background: #121414;
  color: var(--mm-text);
  font-weight: 800;
}

.mm-social-button:hover {
  border-color: var(--mm-lime);
  color: var(--mm-text);
  background: rgba(215, 223, 35, 0.035);
}

.mm-inline-action {
  border: 0;
  background: transparent;
  color: var(--mm-lime);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mm-square-action {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 0.62rem;
  border: 1px solid #373b3b;
  background: #121414;
  color: #d7dada;
  text-decoration: none;
}

.mm-square-action:hover {
  border-color: var(--mm-lime);
  color: var(--mm-lime);
}

.mm-remove-action {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #747979;
}

.mm-remove-action:hover {
  color: #ff8585;
  background: rgba(229, 84, 84, 0.08);
}

.mm-action-compact {
  min-height: 36px !important;
  height: 36px;
  padding: 0.35rem 0.7rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #515656;
  border-radius: 0.55rem;
  background: #141616;
  color: #E8EBEB;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.mm-action-compact:hover {
  border-color: var(--mm-lime);
  color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.035);
}

.mm-action-wide {
  min-width: 230px;
}

/* Text inputs, selects, ranges and form-specific presentation */
.form-label {
  color: #D9DDDD;
  font-weight: 750;
  font-size: 0.82rem;
}

.form-text {
  color: var(--mm-muted-2);
}

.form-control,
.form-select,
.input-group-text {
  min-height: 46px;
  background-color: #111313;
  border-color: #373A3A;
  color: var(--mm-text);
}

.form-control::placeholder {
  color: #676C6C;
}

.form-control:focus,
.form-select:focus {
  background-color: #131515;
  color: var(--mm-text);
  border-color: var(--mm-lime);
  box-shadow: 0 0 0 0.2rem rgba(215, 223, 35, 0.11);
}

.form-select option {
  color: var(--mm-text);
}

.input-group-text {
  color: var(--mm-muted);
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid var(--mm-lime);
}

.invalid {
  outline: 1px solid var(--mm-danger);
}

.validation-message {
  color: #ff8a8a;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.form-range {
  --range-progress: 50%;
  height: 1.3rem;
  padding: 0;
  background: transparent;
}

.form-range::-webkit-slider-runnable-track {
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(to right, var(--mm-lime) 0, var(--mm-lime) var(--range-progress), #262929 var(--range-progress), #262929 100%);
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.275rem;
  border: 2px solid #080909;
  border-radius: 50%;
  background: var(--mm-lime);
  box-shadow: 0 0 0 2px rgba(215, 223, 35, 0.16), 0 0 10px rgba(215, 223, 35, 0.22);
  cursor: pointer;
}

.form-range::-moz-range-track {
  height: 0.45rem;
  border-radius: 999px;
  background: #262929;
}

.form-range::-moz-range-progress {
  height: 0.45rem;
  border-radius: 999px;
  background: var(--mm-lime);
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  border: 2px solid #080909;
  border-radius: 50%;
  background: var(--mm-lime);
}

.mm-scale-row {
  padding: 1rem 0;
  border-bottom: 1px solid #282B2B;
}

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

.mm-scale-title {
  font-weight: 800;
}

.mm-scale-labels {
  color: var(--mm-muted);
  font-size: 0.7rem;
}

.mm-scale-help {
  color: var(--mm-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .form-control,
  .form-select {
    font-size: 16px;
  }
}
/* Radios, checkboxes and selectable controls */
.form-check-input {
  background-color: #101212;
  border-color: #5D6262;
}

.form-check-input:checked {
  background-color: var(--mm-lime);
  border-color: var(--mm-lime);
}

.form-check-input:focus {
  border-color: var(--mm-lime);
  box-shadow: 0 0 0 0.2rem rgba(215, 223, 35, 0.11);
}

.mm-option {
  display: block;
  cursor: pointer;
}

.mm-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mm-option-body {
  height: 100%;
  border: 1px solid var(--mm-border);
  background: var(--mm-surface);
  border-radius: var(--mm-radius);
  padding: 1rem;
  transition: 0.15s ease;
}

.mm-option:hover .mm-option-body {
  border-color: #555A5A;
}

.mm-option input:checked + .mm-option-body {
  border-color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.06);
  box-shadow: 0 0 0 1px rgba(215, 223, 35, 0.08), var(--mm-shadow-lime);
}

.mm-option input:focus-visible + .mm-option-body {
  outline: 2px solid var(--mm-lime);
  outline-offset: 2px;
}

.mm-option-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: #1E2020;
  color: var(--mm-lime);
}

.mm-option-centered .mm-option-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.mm-option-centered .mm-card-media {
  width: 100%;
  display: flex;
  justify-content: center;
}

.mm-option-centered .mm-muted {
  text-align: center;
}

.mm-option-footer {
  margin-top: auto !important;
  padding-top: 1rem;
}

.mm-selection-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.mm-selection-tile {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 1px solid var(--mm-border);
  border-radius: 0.8rem;
  background: var(--mm-surface);
  color: var(--mm-muted);
  cursor: pointer;
  transition: 0.15s ease;
}

.mm-selection-tile:hover {
  border-color: #565A5A;
  color: var(--mm-text);
}

.mm-selection-indicator {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #4B5050;
  border-radius: 50%;
  font-size: 0.7rem;
  color: transparent;
}

.mm-selection-label {
  font-size: 0.77rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-check:checked + .mm-selection-tile {
  border-color: var(--mm-lime);
  background: linear-gradient(180deg, rgba(215, 223, 35, 0.1), rgba(215, 223, 35, 0.035));
  color: var(--mm-text);
  box-shadow: 0 0 14px rgba(215, 223, 35, 0.09);
}

.btn-check:checked + .mm-selection-tile .mm-selection-indicator {
  background: var(--mm-lime);
  border-color: var(--mm-lime);
  color: #050606;
}

.mm-unit-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.mm-unit-toggle label {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mm-border);
  border-radius: 0.7rem;
  background: #111313;
  color: var(--mm-muted);
  cursor: pointer;
  font-weight: 800;
}

.mm-unit-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mm-unit-toggle input:checked + label {
  border-color: var(--mm-lime);
  color: #050606;
  background: var(--mm-lime);
}

.mm-select-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--mm-border);
  border-radius: 999px;
  background: transparent;
  color: var(--mm-text);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.mm-select-chip:hover {
  border-color: #666;
}

.mm-select-chip.is-selected {
  border-color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.1);
  color: var(--mm-lime);
}

.mm-select-chip:focus-visible {
  outline: 2px solid var(--mm-lime);
  outline-offset: 2px;
}

.mm-select-chip:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mm-select-chip-check {
  display: none;
}

.mm-select-chip.is-selected .mm-select-chip-check {
  display: inline-block;
}

.mm-confirm-check {
  padding: 0.85rem;
  border: 1px solid #2B2E2E;
  border-radius: 0.75rem;
  background: #111313;
}

@media (max-width: 767.98px) {
  .mm-selection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* Search results, summary rows, status rows and comparison lists */
.mm-search-card {
  padding: 1rem;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  background: #101212;
}

.mm-result-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--mm-border-soft);
  border-radius: 0.8rem;
  background: #121414;
  color: var(--mm-text);
  text-decoration: none;
}

a.mm-result-item:hover {
  border-color: #4A4F4F;
  color: var(--mm-text);
}

.mm-result-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  background: #1C1F1F;
  color: var(--mm-lime);
  font-size: 1.3rem;
}

.mm-key-value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid #282B2B;
}

.mm-key-value-row:last-child {
  border-bottom: 0;
}

.mm-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #292c2c;
}

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

.mm-result-row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid #2e3232;
  border-radius: 0.8rem;
  background: #111313;
}

.mm-result-row + .mm-result-row {
  margin-top: 0.55rem;
}

.mm-result-row.is-recommended {
  border-color: rgba(215, 223, 35, 0.32);
  background: rgba(215, 223, 35, 0.035);
}

.mm-result-row-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 0.7rem;
  background: #1b1e1e;
  color: var(--mm-lime);
}

.mm-result-row-meta {
  color: var(--mm-muted);
  font-size: 0.7rem;
}

.mm-status-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #282B2B;
}

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

.mm-status-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(215, 223, 35, 0.08);
  color: var(--mm-lime);
  border: 1px solid rgba(215, 223, 35, 0.25);
}

.mm-status-icon.is-muted {
  color: #9DA2A2;
  border-color: #454949;
  background: #181A1A;
}

.mm-change-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.25fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #282B2B;
}

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

.mm-change-title {
  font-weight: 800;
}

.mm-change-label {
  color: var(--mm-muted);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.mm-change-value {
  margin-top: 0.1rem;
  font-size: 0.83rem;
  font-weight: 800;
}

.mm-change-value.is-highlighted {
  color: var(--mm-lime);
}

.mm-summary-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.35rem 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--mm-border);
}

.mm-summary-line > :first-child {
  min-width: 0;
}

.mm-summary-line code {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--mm-text);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.mm-summary-line code:last-child {
  color: var(--mm-muted);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .mm-change-row {
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
  }
  .mm-change-row > :nth-child(2),
  .mm-change-row > :nth-child(3) {
    grid-column: span 1;
  }
  .mm-change-row > :nth-child(4) {
    grid-row: 1;
    grid-column: 2;
  }
}
@media (max-width: 575.98px) {
  .mm-summary-line {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .mm-summary-line > :first-child {
    grid-column: 1/-1;
  }
  .mm-summary-line code {
    text-align: left;
  }
}
/* Tables and compact tabular data-entry controls */
.table {
  --bs-table-color: #E9EDED;
  --bs-table-bg: transparent;
  --bs-table-border-color: #2D3030;
  --bs-table-striped-color: #E9EDED;
  --bs-table-striped-bg: rgba(255, 255, 255, .02);
  margin-bottom: 0;
}

.table thead th {
  color: var(--mm-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 850;
  border-bottom-color: #3D4040;
}

.table td,
.table th {
  vertical-align: middle;
  padding: 0.78rem 0.72rem;
}

.mm-data-entry-table {
  width: 100%;
  table-layout: fixed;
}

.mm-data-entry-table col:nth-child(1),
.mm-data-entry-table th:nth-child(1),
.mm-data-entry-table td:nth-child(1) {
  width: 10%;
}

.mm-data-entry-table col:nth-child(2),
.mm-data-entry-table th:nth-child(2),
.mm-data-entry-table td:nth-child(2) {
  width: 17%;
}

.mm-data-entry-table col:nth-child(3),
.mm-data-entry-table th:nth-child(3),
.mm-data-entry-table td:nth-child(3) {
  width: 29%;
}

.mm-data-entry-table col:nth-child(4),
.mm-data-entry-table th:nth-child(4),
.mm-data-entry-table td:nth-child(4) {
  width: 24%;
}

.mm-data-entry-table col:nth-child(5),
.mm-data-entry-table th:nth-child(5),
.mm-data-entry-table td:nth-child(5) {
  width: 20%;
}

.mm-data-entry-table thead th {
  text-align: center;
  padding-inline: 0.15rem;
  font-size: 0.58rem;
}

.mm-data-entry-table tbody td {
  text-align: center;
  padding: 0.25rem 0.12rem;
  border-bottom: 1px solid #292C2C;
}

.mm-cell-input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0.2rem;
  border: 1px solid #303434;
  border-radius: 0.42rem;
  background: #0f1111;
  color: var(--mm-text);
  font-size: 1rem;
  font-weight: 850;
  text-align: center;
}

.mm-cell-input:hover {
  border-color: #4a5050;
  background: #141717;
}

.mm-cell-input:focus {
  outline: none;
  border-color: var(--mm-lime);
  background: #111313;
  box-shadow: 0 0 0 0.16rem rgba(215, 223, 35, 0.1);
}

.mm-cell-input::-webkit-inner-spin-button,
.mm-cell-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mm-completion-toggle {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #565B5B;
  background: transparent;
  color: transparent;
}

.mm-completion-toggle:hover {
  border-color: var(--mm-lime);
  color: var(--mm-lime);
}

.mm-completion-toggle.is-complete {
  border-color: var(--mm-lime);
  background: var(--mm-lime);
  color: #050606;
  box-shadow: 0 0 10px rgba(215, 223, 35, 0.2);
}

.mm-row-complete {
  background: rgba(215, 223, 35, 0.015);
}

.mm-table-surface {
  padding-inline: 0.55rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #171919;
}

.mm-table-panel {
  padding: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #111313;
}

.mm-inline-edit-table {
  width: 100%;
  table-layout: fixed;
}

.mm-inline-edit-table col:nth-child(1) {
  width: 9%;
}

.mm-inline-edit-table col:nth-child(2) {
  width: 22%;
}

.mm-inline-edit-table col:nth-child(3) {
  width: 15%;
}

.mm-inline-edit-table col:nth-child(4) {
  width: 15%;
}

.mm-inline-edit-table col:nth-child(5) {
  width: 14%;
}

.mm-inline-edit-table col:nth-child(6) {
  width: 17%;
}

.mm-inline-edit-table col:nth-child(7) {
  width: 8%;
}

.mm-inline-edit-table th {
  color: var(--mm-muted);
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 850;
  text-align: center;
  padding: 0.4rem 0.1rem;
  border-bottom: 1px solid #2e3232;
}

.mm-inline-edit-table th > span:not(.visually-hidden) {
  display: block;
  margin-top: 0.08rem;
  color: var(--mm-muted-2);
  font-size: 0.48rem;
  letter-spacing: 0.03em;
}

.mm-inline-edit-table td {
  text-align: center;
  padding: 0.27rem 0.1rem;
  border-bottom: 1px solid #272a2a;
}

.mm-inline-edit-table tr:last-child td {
  border-bottom: 0;
}

.mm-row-index {
  font-weight: 900;
}

.mm-cell-input-compact {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0.2rem 0.15rem;
  border: 1px solid #303434;
  border-radius: 0.42rem;
  background: #0f1111;
  color: var(--mm-text);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.mm-cell-input-compact:hover {
  background: #141717;
  border-color: #4a5050;
}

.mm-cell-input-compact:focus {
  outline: none;
  border-color: var(--mm-lime);
  background: #0e1010;
  box-shadow: 0 0 0 0.15rem rgba(215, 223, 35, 0.09);
}

.mm-cell-input-compact::-webkit-inner-spin-button,
.mm-cell-input-compact::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 767.98px) {
  .mm-data-entry-table thead th {
    font-size: 0.52rem;
    letter-spacing: 0.03em;
  }
  .mm-table-panel {
    padding: 0.4rem;
  }
  .mm-inline-edit-table col:nth-child(1) {
    width: 9%;
  }
  .mm-inline-edit-table col:nth-child(2) {
    width: 24%;
  }
  .mm-inline-edit-table col:nth-child(3) {
    width: 16%;
  }
  .mm-inline-edit-table col:nth-child(4) {
    width: 16%;
  }
  .mm-inline-edit-table col:nth-child(5) {
    width: 13%;
  }
  .mm-inline-edit-table col:nth-child(6) {
    width: 15%;
  }
  .mm-inline-edit-table col:nth-child(7) {
    width: 7%;
  }
  .mm-inline-edit-table th {
    font-size: 0.47rem;
    letter-spacing: 0.01em;
  }
  .mm-cell-input-compact {
    font-size: 16px;
    padding-inline: 0.02rem;
  }
}
@media (max-width: 575.98px) {
  .mm-table-surface {
    padding-inline: 0.3rem;
  }
  .mm-table-surface,
  .mm-table-panel {
    scrollbar-width: thin;
  }
  .mm-inline-edit-table {
    min-width: 520px;
  }
}
/* Pills, alerts, callouts, badges and application states */
.mm-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--mm-border);
  background: var(--mm-surface-2);
  color: var(--mm-text);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.75rem;
  font-weight: 750;
}

.mm-pill-lime {
  color: #050505;
  background: var(--mm-lime);
  border-color: var(--mm-lime);
}

.mm-pill-success {
  color: var(--mm-lime);
  border-color: rgba(215, 223, 35, 0.35);
  background: rgba(215, 223, 35, 0.08);
}

.mm-pill-danger {
  color: #ff8a8a;
  border-color: rgba(229, 84, 84, 0.4);
  background: rgba(229, 84, 84, 0.07);
}

.mm-pill-warning {
  color: #f4c863;
  border-color: rgba(225, 173, 59, 0.42);
  background: rgba(225, 173, 59, 0.08);
}

.mm-pill-info {
  color: #86c8ea;
  border-color: rgba(75, 168, 216, 0.42);
  background: rgba(75, 168, 216, 0.08);
}

.mm-pill-muted {
  color: var(--mm-muted);
  border-color: var(--mm-border);
  background: rgba(255, 255, 255, 0.02);
}

.mm-alert {
  border: 1px solid var(--mm-border);
  border-left: 4px solid var(--mm-info);
  border-radius: var(--mm-radius);
  background: #121414;
  padding: 0.9rem 1rem;
}

.mm-alert-success {
  border-left-color: var(--mm-lime);
}

.mm-alert-warning {
  border-left-color: var(--mm-warning);
}

.mm-alert-danger {
  border-left-color: var(--mm-danger);
}

.blazor-error-boundary {
  border-left: 4px solid var(--mm-danger);
  background: rgba(229, 84, 84, 0.12);
  padding: 1rem;
  color: var(--mm-text);
}

.blazor-error-boundary::after {
  content: "An error has occurred.";
}

.mm-help-panel {
  padding: 0.8rem 0.9rem;
  border: 1px solid #2B2E2E;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.018);
}

.mm-callout-accent {
  border: 1px solid rgba(215, 223, 35, 0.25);
  background: rgba(215, 223, 35, 0.045);
  border-radius: 0.9rem;
  padding: 1rem;
}

.mm-change-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.32rem 0.52rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
}

.mm-change-badge.is-primary {
  color: #050606;
  background: var(--mm-lime);
}

.mm-change-badge.is-accent {
  color: var(--mm-lime);
  border: 1px solid rgba(215, 223, 35, 0.32);
  background: rgba(215, 223, 35, 0.07);
}

.mm-change-badge.is-neutral {
  color: #D0D4D4;
  border: 1px solid #414646;
  background: #181A1A;
}

.mm-change-badge.is-warning {
  color: #FFB36A;
  border: 1px solid rgba(225, 173, 59, 0.35);
  background: rgba(225, 173, 59, 0.07);
}

.mm-context-box {
  margin: 0.75rem 1rem 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.7rem;
  background: #0E1010;
  border: 1px solid #292D2D;
  color: var(--mm-muted);
  font-size: 0.73rem;
}

.mm-success-hero {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.mm-success-icon {
  width: 88px;
  height: 88px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--mm-lime);
  color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.06);
  box-shadow: 0 0 28px rgba(215, 223, 35, 0.13);
  font-size: 2rem;
}

.mm-state-card {
  min-height: 230px;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  background: var(--mm-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.mm-state-card p {
  color: var(--mm-muted);
  max-width: 16rem;
  margin: 0.35rem auto 0.8rem;
  font-size: 0.82rem;
}

.mm-state-icon {
  width: 46px;
  height: 46px;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: var(--mm-surface-3);
  color: var(--mm-muted);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.mm-state-card.is-error .mm-state-icon {
  color: #ff8a8a;
  background: rgba(229, 84, 84, 0.09);
}

.mm-state-card.is-success .mm-state-icon {
  color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.08);
}

.mm-state-icon.is-loading {
  border: 3px solid #333838;
  border-top-color: var(--mm-lime);
  border-radius: 50%;
  background: transparent;
  animation: mm-spin 1s linear infinite;
}

.mm-skeleton-lines {
  display: grid;
  gap: 0.4rem;
  width: 100%;
  max-width: 11rem;
  margin-top: 0.35rem;
}

.mm-skeleton-lines i {
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #222626, #303434, #222626);
  background-size: 180% 100%;
  animation: mm-shimmer 1.4s linear infinite;
}

.mm-skeleton-lines i:nth-child(2) {
  width: 80%;
}

.mm-skeleton-lines i:nth-child(3) {
  width: 62%;
}

@keyframes mm-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes mm-shimmer {
  to {
    background-position: -180% 0;
  }
}
/* Progress bars and multi-step navigation */
.progress {
  height: 0.45rem;
  background: #262929;
  border-radius: 999px;
}

.progress-bar {
  background: var(--mm-lime);
}

/*
 * Keep native <progress> elements visually consistent across Chromium,
 * Safari and Firefox. `accent-color` provides a browser-native fallback,
 * while the engine-specific pseudo elements retain the Muscle Monkeys
 * track/fill styling when appearance customisation is supported.
 */
.mm-progress {
  display: block;
  width: 100%;
  height: 0.625rem;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background-color: var(--mm-surface-3);
  color: var(--mm-lime);
  accent-color: var(--mm-lime);
  appearance: none;
  -webkit-appearance: none;
}

.mm-progress::-webkit-progress-inner-element {
  border-radius: 999px;
}

.mm-progress::-webkit-progress-bar {
  background-color: var(--mm-surface-3);
  border-radius: 999px;
}

.mm-progress::-webkit-progress-value {
  background-color: var(--mm-lime);
  border-radius: 999px;
}

.mm-progress::-moz-progress-bar {
  background-color: var(--mm-lime);
  border-radius: 999px;
}

.mm-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.mm-step {
  position: relative;
  min-height: 72px;
  padding: 0.75rem;
  border: 1px solid var(--mm-border-soft);
  border-radius: 0.8rem;
  background: #101212;
}

.mm-step.is-current {
  border-color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.055);
  box-shadow: 0 0 14px rgba(215, 223, 35, 0.08);
}

.mm-step.is-complete {
  border-color: rgba(215, 223, 35, 0.28);
}

.mm-step-index {
  width: 27px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #454A4A;
  color: var(--mm-muted);
  font-size: 0.7rem;
  font-weight: 900;
}

.mm-step.is-current .mm-step-index,
.mm-step.is-complete .mm-step-index {
  border-color: var(--mm-lime);
  background: var(--mm-lime);
  color: #050606;
}

.mm-step-label {
  display: block;
  margin-top: 0.4rem;
  color: #D8DCDC;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mm-stepper-mobile {
  display: none;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .mm-stepper {
    display: none;
  }
  .mm-stepper-mobile {
    display: block;
  }
}
/* Calendar grid and event indicators */
.mm-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.mm-calendar-weekday {
  padding: 0.4rem 0.2rem;
  color: var(--mm-muted);
  font-size: 0.64rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 850;
}

.mm-calendar-day {
  min-height: 86px;
  min-width: 0;
  padding: 0.55rem;
  border: 1px solid #282B2B;
  border-radius: 0.65rem;
  background: #101212;
}

.mm-calendar-day.is-today {
  border-color: var(--mm-lime);
  box-shadow: 0 0 10px rgba(215, 223, 35, 0.08);
}

.mm-calendar-day.is-complete {
  background: rgba(215, 223, 35, 0.035);
}

.mm-calendar-day.is-outside-month {
  opacity: 0.42;
  background: #0C0E0E;
}

.mm-calendar-number {
  font-weight: 850;
}

.mm-calendar-events {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-top: 0.45rem;
}

.mm-calendar-event {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 0.3rem;
  padding: 0.28rem 0.45rem;
  border-radius: 0.45rem;
  background: #1E2020;
  color: #C9CDCD;
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mm-calendar-event-button {
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.mm-calendar-event-button:hover {
  color: var(--mm-lime);
  box-shadow: inset 0 0 0 1px rgba(215, 223, 35, 0.35);
}

.mm-calendar-event-button:focus-visible {
  outline: 2px solid var(--mm-lime);
  outline-offset: 2px;
}

.mm-calendar-event-button:disabled {
  cursor: default;
  opacity: 0.65;
}

.mm-calendar-event.is-progress {
  color: var(--mm-info);
  background: rgba(75, 168, 216, 0.1);
}

.mm-calendar-event.is-complete {
  color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.08);
}

.mm-calendar-event.is-skipped {
  color: var(--mm-muted-2);
  background: rgba(111, 116, 116, 0.08);
  text-decoration: line-through;
}

.mm-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
}

.mm-calendar-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--mm-muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.mm-calendar-legend-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 1px solid #6E7373;
  border-radius: 50%;
  background: #363A3A;
}

.mm-calendar-legend-dot.is-progress {
  border-color: var(--mm-info);
  background: var(--mm-info);
}

.mm-calendar-legend-dot.is-complete {
  border-color: var(--mm-lime);
  background: var(--mm-lime);
}

.mm-calendar-legend-dot.is-skipped {
  border-color: var(--mm-muted-2);
  background: var(--mm-muted-2);
}

.mm-calendar-nav .mm-icon-btn:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.mm-calendar-mobile-list {
  border-top: 1px solid var(--mm-border-soft);
  padding-top: 1rem;
}

.mm-calendar-mobile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--mm-border-soft);
}

.mm-calendar-mobile-row:last-child {
  border-bottom: 0;
}

.mm-calendar-mobile-status {
  flex: 0 0 auto;
  color: #C9CDCD;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mm-calendar-mobile-status.is-progress {
  color: var(--mm-info);
}

.mm-calendar-mobile-status.is-complete {
  color: var(--mm-lime);
}

.mm-calendar-mobile-status.is-skipped {
  color: var(--mm-muted-2);
}

.mm-calendar-reschedule {
  border-color: rgba(215, 223, 35, 0.22);
}

@media (max-width: 767.98px) {
  .mm-calendar-day {
    min-height: 50px;
    padding: 0.35rem;
  }
  .mm-calendar-events {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.2rem;
    margin-top: 0.3rem;
  }
  .mm-calendar-event {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid #6E7373;
    border-radius: 50%;
    background: #363A3A;
    font-size: 0;
  }
  .mm-calendar-event-button:hover {
    box-shadow: none;
  }
  .mm-calendar-event.is-progress {
    border-color: var(--mm-info);
    background: var(--mm-info);
  }
  .mm-calendar-event.is-complete {
    border-color: var(--mm-lime);
    background: var(--mm-lime);
  }
  .mm-calendar-event.is-skipped {
    border-color: var(--mm-muted-2);
    background: var(--mm-muted-2);
  }
}
/* Report and trend chart presentation */
.mm-chart {
  height: 220px;
  position: relative;
  border-left: 1px solid #343737;
  border-bottom: 1px solid #343737;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 25%;
}

.mm-chart-line {
  position: absolute;
  inset: 0;
}

.mm-chart-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mm-chart-line polyline {
  fill: none;
  stroke: var(--mm-lime);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(215, 223, 35, 0.2));
}

.mm-chart-line circle {
  fill: var(--mm-lime);
}

/* Generic inline editor layout and item presentation */
.mm-editor-shell {
  max-width: 1120px;
  margin-inline: auto;
}

.mm-editor-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mm-tab-strip {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.mm-tab-tile {
  flex: 0 0 auto;
  min-width: 82px;
  padding: 0.62rem 0.75rem;
  border: 1px solid var(--mm-border);
  border-radius: 0.72rem;
  background: #101212;
  color: var(--mm-muted);
  text-decoration: none;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 850;
}

.mm-tab-tile:hover {
  color: var(--mm-lime);
  border-color: #555;
}

.mm-tab-tile.active {
  border-color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.06);
  color: var(--mm-lime);
  box-shadow: 0 0 14px rgba(215, 223, 35, 0.08);
}

.mm-editor-card {
  overflow: hidden;
}

.mm-editor-card-header {
  padding: 1rem;
  background: linear-gradient(180deg, #191b1b, #141616);
  border-bottom: 1px solid #292c2c;
}

.mm-order-marker {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 0.65rem;
  border: 1px solid #3c4141;
  background: #111313;
  color: var(--mm-lime);
  font-weight: 900;
}

.mm-item-eyebrow {
  color: var(--mm-lime);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 850;
}

.mm-item-title {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mm-item-meta {
  color: var(--mm-muted);
  font-size: 0.74rem;
}

.mm-item-actions {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.mm-editor-card-footer {
  padding: 0.65rem 0.9rem;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  background: #171919;
  border-top: 1px solid #292c2c;
}

.mm-add-panel {
  border: 1px dashed #454a4a;
  border-radius: 0.95rem;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--mm-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.012);
}

.mm-add-panel:hover {
  border-color: var(--mm-lime);
  color: var(--mm-lime);
  background: rgba(215, 223, 35, 0.035);
}

.mm-editor-toolbar-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.5rem;
}

.mm-editor-card-header .mm-item-actions {
  margin-left: auto;
}

.mm-editor-card-footer > .d-flex {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mm-add-panel {
  width: 100%;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .mm-editor-toolbar {
    flex-direction: column;
  }
  .mm-editor-toolbar-actions {
    width: 100%;
  }
  .mm-editor-toolbar-actions > * {
    flex: 1 1 0;
  }
  .mm-editor-card-footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .mm-item-actions .mm-square-action {
    width: 35px;
    height: 35px;
  }
  .mm-editor-card-header {
    padding: 0.8rem;
  }
}
/* Public-site hero, feature and showcase patterns */
.mm-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mm-border-soft);
  border-radius: 1.45rem;
  background: radial-gradient(circle at 78% 28%, rgba(215, 223, 35, 0.13), transparent 18rem), linear-gradient(135deg, #090a0a, #020303);
}

.mm-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -170px;
  top: -200px;
  transform: rotate(20deg);
  border: 1px solid rgba(215, 223, 35, 0.08);
}

.mm-hero-figure {
  min-height: 320px;
  position: relative;
  display: grid;
  place-items: center;
}

.mm-hero-figure::before {
  content: "";
  width: 210px;
  height: 300px;
  border-radius: 45% 45% 20% 20%;
  background: radial-gradient(circle at 50% 20%, #555 0 15%, transparent 16%), linear-gradient(180deg, #2e3030, #0a0b0b 70%);
  filter: grayscale(1);
  opacity: 0.8;
}

.mm-hero-figure::after {
  content: "MM";
  position: absolute;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mm-lime);
  color: #050606;
  font-weight: 950;
  box-shadow: 0 0 20px rgba(215, 223, 35, 0.25);
}

.mm-bg-black {
  background: #000;
}

.mm-nav-overlay {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  border: 0;
}

.mm-nav-overlay .container {
  max-width: 1440px;
}

.mm-logo-lg {
  width: 88px;
  height: auto;
  object-fit: contain;
}

/* These later declarations preserve the existing public-site cascade. */
.mm-brand-title {
  color: var(--mm-lime);
  font-weight: 950;
  letter-spacing: 0.055em;
  font-size: 1.08rem;
}

.mm-brand-subtitle {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.045em;
}

.mm-nav-link {
  color: #f2f2f2;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.mm-nav-link:hover {
  color: var(--mm-lime);
}

.mm-nav-link.disabled,
.mm-nav-link.disabled:hover {
  color: var(--mm-muted-2);
  opacity: 0.75;
  pointer-events: none;
  cursor: default;
}

.mm-hero-cover {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid #242727;
}

.mm-hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, #000 34%, rgba(0, 0, 0, 0.78) 49%, rgba(0, 0, 0, 0.15) 68%, rgba(0, 0, 0, 0) 100%), repeating-linear-gradient(60deg, rgba(215, 223, 35, 0.018) 0 1px, transparent 1px 18px), repeating-linear-gradient(-60deg, rgba(215, 223, 35, 0.018) 0 1px, transparent 1px 18px);
  z-index: 2;
  pointer-events: none;
}

.mm-hero-media {
  position: absolute;
  inset: 0 0 0 42%;
  background: url("../assets/hero-athlete.webp") center/cover no-repeat;
  z-index: 1;
}

.mm-hero-accent {
  position: absolute;
  left: -12px;
  bottom: -10px;
  width: 61%;
  height: 66%;
  opacity: 0.88;
  mix-blend-mode: screen;
  z-index: 1;
}

.mm-hero-content {
  position: relative;
  z-index: 5;
  padding-top: 138px;
}

.mm-hero-title {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.25rem);
  line-height: 0.82;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.06);
}

.mm-hero-title .text-mm-lime {
  color: var(--mm-lime);
}

.mm-hero-lead {
  color: #f2f2f2;
  font-size: 1.04rem;
  max-width: 520px;
}

.mm-supporting-text {
  font-size: 0.78rem;
  color: #e2e5e5;
}

.mm-feature-strip {
  background: linear-gradient(180deg, #171919, #111313);
  border-bottom: 1px solid #242727;
}

.mm-feature-row {
  min-height: 78px;
  padding: 16px 18px;
  display: flex;
  gap: 15px;
  align-items: center;
  border-right: 1px solid #303333;
}

.mm-feature-row:last-child {
  border-right: 0;
}

.mm-feature-icon {
  color: var(--mm-lime);
  font-size: 2rem;
  flex: 0 0 auto;
}

.mm-feature-title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.mm-feature-copy {
  color: #c0c4c4;
  font-size: 0.72rem;
  margin-top: 0.25rem;
}

.mm-showcase {
  position: relative;
  overflow: hidden;
  background: #020303;
}

.mm-showcase::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -15px;
  width: 420px;
  height: 250px;
  opacity: 0.7;
}

.mm-showcase-media {
  width: min(100%, 420px);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.7));
  position: relative;
  z-index: 2;
}

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

.mm-showcase-title {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.92;
}

.mm-showcase-title .text-mm-lime {
  color: var(--mm-lime);
}

.mm-icon-circle {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid var(--mm-lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--mm-lime);
  font-size: 1.25rem;
}

.mm-mobile-actions {
  display: none;
}

.mm-auth-page {
  max-width: 620px;
}

.mm-auth-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(215, 223, 35, 0.3);
  background: radial-gradient(circle at 50% 0, rgba(215, 223, 35, 0.08), transparent 42%), linear-gradient(180deg, #171919 0%, #101212 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.mm-auth-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--mm-lime);
}

.mm-auth-mark {
  width: 68px;
  height: 68px;
  margin: -1rem auto 1.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 223, 35, 0.45);
  border-radius: 50%;
  background: #080909;
  box-shadow: 0 0 30px rgba(215, 223, 35, 0.12);
}

.mm-auth-mark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.mm-auth-google {
  position: relative;
  min-height: 58px;
  border-color: rgba(215, 223, 35, 0.55);
  font-size: 1rem;
}

.mm-auth-google__arrow {
  position: absolute;
  right: 1.25rem;
  color: var(--mm-lime);
}

.mm-auth-assurance {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid #303434;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
}

.mm-auth-assurance > i {
  color: var(--mm-lime);
  font-size: 1.35rem;
}

.mm-auth-links {
  border-top: 1px solid #303434;
}

@media (max-width: 991.98px) {
  .mm-nav-overlay {
    position: relative;
    background: #000;
    border-bottom: 1px solid #242727;
  }
  .mm-nav-links {
    display: none !important;
  }
  .mm-logo-lg {
    width: 68px;
  }
  .mm-hero-cover {
    min-height: auto;
  }
  .mm-hero-media {
    inset: 0;
    opacity: 0.38;
    background-position: 58% center;
  }
  .mm-hero-cover::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.66));
  }
  .mm-hero-accent {
    width: 100%;
    opacity: 0.4;
  }
  .mm-hero-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .mm-hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .mm-feature-row {
    border-right: 0;
    border-bottom: 1px solid #303333;
  }
}
@media (max-width: 767.98px) {
  .mm-hero {
    border-radius: 1rem;
  }
}
@media (max-width: 575.98px) {
  .mm-brand-subtitle {
    display: none !important;
  }
  .mm-nav-overlay .btn {
    display: none;
  }
  .mm-mobile-actions {
    display: flex;
    gap: 0.5rem;
  }
  .mm-hero-title {
    line-height: 0.88;
  }
  .mm-action-wide {
    width: 100%;
  }
}
/* Interaction-state presentation for transient UI mutations */
/*
 * Workout set saves intentionally keep their controls disabled while the
 * persistence command is in flight. Keep that lock semantic without exposing
 * Bootstrap's alternate disabled presentation, which otherwise produces a
 * visible flash before the completed/pending state is rendered.
 */
.mm-cell-input:disabled {
  background: #0f1111;
  color: var(--mm-text);
  opacity: 1;
  -webkit-text-fill-color: var(--mm-text);
}

.mm-completion-toggle:disabled {
  opacity: 1;
}

.mm-record-footer .mm-inline-action:disabled {
  color: var(--mm-lime);
  opacity: 1;
}

.mm-record-footer .btn-mm-ghost:disabled {
  color: var(--mm-muted);
  background: transparent;
  border-color: transparent;
  opacity: 1;
}

/* ==========================================================================\n   MM UI Guidance v1 — shared layout/state utilities\n   These classes are part of the design system and are intentionally consumed\n   by mm-ui-workflows. Workflow pages must not define their own CSS.\n   ========================================================================== */
/* Standard content widths. Choose the nearest shared width rather than one-off max-widths. */
.mm-container-sm {
  max-width: 35rem !important;
}

.mm-container-md {
  max-width: 51.25rem !important;
}

.mm-container-lg {
  max-width: 61.25rem !important;
}

.mm-container-xl {
  max-width: 65rem !important;
}

.mm-container-2xl {
  max-width: 70rem !important;
}

.mm-container-wide {
  max-width: 80rem !important;
}

.mm-control-compact {
  max-width: 11.25rem !important;
}

.mm-sticky-panel {
  top: 5.625rem;
}

.mm-sticky-progress {
  position: sticky;
  top: 5rem;
  z-index: 1000;
  background: rgba(7, 8, 8, 0.96);
  border-bottom: 1px solid var(--mm-border-soft);
  backdrop-filter: blur(12px);
}

.mm-offcanvas-wide {
  --bs-offcanvas-width: min(28.75rem, 100vw);
}

.mm-offcanvas-surface {
  background: #0e1010 !important;
}

.mm-border-subtle {
  border-color: #2a2d2d !important;
}

.mm-border-danger-soft {
  border-color: rgba(229, 84, 84, 0.35) !important;
}

.mm-footer-dark {
  background: #090a0a;
  border-top: 1px solid var(--mm-border-soft);
}

.text-mm-lime {
  color: var(--mm-lime) !important;
}

.text-mm-danger {
  color: var(--mm-danger) !important;
}

.mm-accent-icon {
  color: var(--mm-lime);
  font-size: 1.15rem;
  letter-spacing: 0.12rem;
}

.mm-mark-xl {
  width: 82px;
  height: 82px;
  font-size: 2rem;
}

.mm-accent-icon-lg {
  color: var(--mm-lime);
  font-size: 1.35rem;
}

/*# sourceMappingURL=mm-ui.css.map */
