:root {
  --bg: #020617;
  --bg-soft: #0d1626;
  --body-bg:
    radial-gradient(circle at 20% 20%, rgba(15, 23, 42, 0.95), transparent 34%),
    radial-gradient(circle at 80% 80%, #020617, #000000 74%);
  --surface: rgba(15, 23, 42, 0.76);
  --surface-strong: rgba(15, 23, 42, 0.94);
  --card: rgba(255, 255, 255, 0.05);
  --text: #e5e7eb;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.22);
  --green: #10b981;
  --cyan: #0ea5e9;
  --purple: #533afd;
  --violet-soft: rgba(83, 58, 253, 0.22);
  --amber-soft: rgba(245, 158, 11, 0.14);
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 45px rgba(2, 6, 23, 0.22);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--body-bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  transition: all 0.3s ease;
}

body::before {
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.05), transparent 420px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.035), transparent 58%);
  content: "";
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

body::after {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15), transparent 68%);
  content: "";
  height: 300px;
  left: var(--cursor-x, 50vw);
  pointer-events: none;
  position: fixed;
  top: var(--cursor-y, 50vh);
  transform: translate(-50%, -50%);
  width: 300px;
  z-index: 0;
}

body.light {
  --bg: #f8fafc;
  --bg-soft: #eef2f7;
  --body-bg:
    radial-gradient(circle at 20% 20%, rgba(219, 234, 254, 0.9), transparent 32%),
    radial-gradient(circle at 80% 80%, #ffffff, #f8fafc 72%);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --card: rgba(15, 23, 42, 0.05);
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.14);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}

main,
.mmbs-nav,
.mmbs-footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

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

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

section {
  padding: 80px 0;
  scroll-margin-top: 88px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1 {
  font-size: 52px;
  line-height: 1.1;
}

h1,
h2 {
  margin-bottom: 20px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.mmbs-nav {
  backdrop-filter: blur(20px);
  background: rgba(9, 15, 26, 0.78);
  border-bottom: 1px solid var(--line);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}

body.light .mmbs-nav {
  background: rgba(255, 255, 255, 0.86);
}

.mmbs-nav-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
}

.mmbs-brand,
.mmbs-navlinks,
.nav-actions,
.mmbs-actions,
.mmbs-proof,
.mmbs-toolbar,
.mmbs-footer {
  align-items: center;
  display: flex;
}

.mmbs-brand {
  color: var(--text);
  flex: 0 0 auto;
  font-weight: 850;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-left {
  align-items: center;
  display: flex;
  gap: 10px;
}

.logo-img {
  display: block;
  flex: 0 0 auto;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  width: auto;
}

.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

.mmbs-logo {
  align-items: center;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.mmbs-navlinks {
  flex: 1 1 auto;
  gap: 6px;
  justify-content: center;
  min-width: 0;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.mmbs-navlinks > a,
.mmbs-footer a {
  color: var(--muted);
  display: inline-flex;
  font-weight: 750;
  padding: 10px 12px;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-item:hover > a,
.mmbs-navlinks > a:hover,
.mmbs-footer a:hover {
  color: var(--green);
}

.mega-menu {
  backdrop-filter: blur(20px);
  background: rgba(10, 15, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0 30px 45px -30px,
    rgba(0, 0, 0, 0.1) 0 18px 36px -18px;
  left: 50%;
  min-width: min(920px, calc(100vw - 48px));
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
  z-index: 50;
}

body.light .mega-menu {
  background: rgba(10, 15, 30, 0.86);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

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

.mega-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  min-height: 138px;
  padding: 16px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.mega-kicker {
  color: rgba(134, 239, 172, 0.82);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.mega-card h4 {
  color: #f8fafc;
  font-size: 15px;
  margin: 0 0 8px;
}

.mega-card p {
  color: rgba(226, 232, 240, 0.78);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.nav-actions {
  flex: 0 0 auto;
  gap: 10px;
  justify-content: flex-end;
  position: relative;
  z-index: 60;
}

.auth-profile {
  align-items: center;
  color: var(--text);
  display: none;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
  max-width: 190px;
  min-width: 0;
}

.auth-profile.is-visible {
  display: inline-flex;
}

.auth-profile img {
  border: 1px solid var(--line);
  border-radius: 999px;
  display: block;
  flex: 0 0 auto;
  height: 30px;
  object-fit: cover;
  width: 30px;
}

.auth-profile img[hidden] {
  display: none;
}

.auth-profile span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-toggle,
.login-btn,
.mmbs-nav-cta,
.btn-primary,
.mmbs-primary,
.mmbs-secondary {
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  padding: 12px 18px;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.login-btn {
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.theme-toggle,
.login-btn,
.mmbs-secondary {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
}

.mmbs-primary,
.btn-primary,
.login-btn {
  background: var(--purple);
  border: 0;
  color: #fff;
  box-shadow: 0 18px 45px rgba(83, 58, 253, 0.28);
}

.theme-toggle:hover,
.login-btn:hover,
.btn-primary:hover,
.mmbs-primary:hover,
.mmbs-secondary:hover {
  transform: translateY(-2px);
}

.mmbs-hero,
.hero {
  background: transparent;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.2fr 1fr;
  min-height: min(760px, calc(100vh - 72px));
}

.mmbs-hero::before,
.hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 78%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 88px 88px, 88px 88px;
  border-radius: 24px;
  content: "";
  inset: 28px 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.mmbs-hero::after,
.hero::after {
  background: linear-gradient(135deg, rgba(83, 58, 253, 0.5), rgba(16, 185, 129, 0.16));
  content: "";
  filter: blur(120px);
  height: 560px;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
  right: -160px;
  top: -140px;
  transform: rotate(-18deg);
  width: 720px;
  z-index: -1;
}

.overlay,
.glass,
.blur,
.mmbs-hero::before,
.mmbs-hero::after,
.hero::before,
.hero::after {
  pointer-events: none;
}

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

.hero-preview {
  position: relative;
  z-index: 1;
}

.hero h1,
.hero p {
  text-align: left;
}

.hero-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 28px;
  max-width: 650px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
}

.stat span,
.stat small {
  display: block;
}

.stat span {
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.stat small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.mmbs-pill {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 999px;
  color: #86efac;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  padding: 8px 14px;
}

body.light .mmbs-pill {
  color: #047857;
}

.mmbs-hero-copy h1,
.mmbs-section-head h2,
.mmbs-demo h2,
.workflow-copy h2,
.contact-clean h2,
.dashboard-hero h1 {
  color: var(--text);
  letter-spacing: 0;
}

.mmbs-hero-copy h1 {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin: 20px 0;
  max-width: 700px;
}

.mmbs-hero-copy p,
.mmbs-demo p,
.workflow-copy p,
.mmbs-section-head p {
  font-size: 18px;
  max-width: 560px;
}

.mmbs-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mmbs-proof {
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mmbs-proof span {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}

.mmbs-mockup {
  min-height: 430px;
  position: relative;
}

.preview-card {
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.mmbs-gmail-window,
.mmbs-price-card,
.mmbs-video,
.card,
.feature-category,
.performance-grid article,
.workflow-steps > div,
.dashboard-card,
.dashboard-panel,
.contact-clean {
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
}

.card:hover {
  transform: translateY(-4px);
  transition: 0.25s;
}

body.light .mmbs-gmail-window,
body.light .mmbs-price-card,
body.light .mmbs-video,
body.light .card,
body.light .feature-category,
body.light .performance-grid article,
body.light .workflow-steps > div,
body.light .dashboard-card,
body.light .dashboard-panel,
body.light .contact-clean {
  background: rgba(255, 255, 255, 0.84);
}

.mmbs-gmail-window {
  border-radius: var(--radius);
  overflow: hidden;
  padding-bottom: 18px;
}

.mmbs-window-bar {
  align-items: center;
  background: var(--card);
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
}

.mmbs-compose-lines {
  color: var(--text);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.mmbs-compose-lines span,
.mmbs-compose-body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
}

.mmbs-compose-body {
  color: var(--muted);
  margin: 0 18px 18px;
  min-height: 180px;
}

.mmbs-toolbar {
  gap: 10px;
  padding: 0 18px;
}

.mmbs-toolbar button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 850;
  padding: 12px 18px;
}

.mmbs-toolbar button {
  background: #2563eb;
}

.mmbs-toolbar .mmbs-send-btn {
  background: var(--green);
}

.mmbs-section {
  padding: 80px 0;
}

.mmbs-section-head {
  margin: 0 0 36px;
  max-width: 760px;
  text-align: left;
}

.mmbs-section-head p {
  margin-left: 0;
  margin-right: 0;
}

.mmbs-section-head h2,
.mmbs-demo h2,
.workflow-copy h2,
.contact-clean h2 {
  font-size: clamp(32px, 4.3vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  margin: 18px 0 0;
}

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

.feature-category {
  border-radius: var(--radius);
  padding: 24px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-category:hover,
.mmbs-price-card:hover,
.mmbs-video:hover,
.performance-grid article:hover,
.workflow-steps > div:hover,
.dashboard-card:hover,
.dashboard-panel:hover {
  border-color: rgba(16, 185, 129, 0.62);
  transform: translateY(-4px);
}

.category-head span,
.workflow-steps span {
  align-items: center;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  color: var(--green);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.category-head h3 {
  color: var(--text);
  font-size: 24px;
  margin: 18px 0 8px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.feature-list > .feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 148px;
  overflow: hidden;
  padding: 14px 14px 74px;
  position: relative;
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-list > .feature-card:hover {
  transform: translateY(-6px);
}

.feature-top {
  align-items: center;
  display: flex;
  gap: 10px;
  min-height: 34px;
}

.feature-icon {
  align-items: center;
  background: rgba(83, 58, 253, 0.16);
  border: 1px solid rgba(83, 58, 253, 0.35);
  border-radius: 8px;
  color: #c4b5fd;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  margin-top: 0;
  width: 40px;
}

.feature-list strong,
.feature-list > .feature-card > span {
  display: block;
}

.feature-list strong {
  color: var(--text);
}

.feature-list > .feature-card > span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

.hover-info {
  background: rgba(10, 15, 30, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  bottom: 14px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 13px;
  left: 14px;
  line-height: 1.45;
  opacity: 0;
  padding: 10px 12px;
  position: absolute;
  right: 14px;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-card:hover .hover-info,
.feature-card:focus-within .hover-info {
  opacity: 1;
  transform: translateY(0);
}

.performance-section {
  padding-top: 64px;
}

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

.performance-grid article,
.dashboard-card {
  border-radius: var(--radius);
  padding: 22px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.performance-grid strong,
.dashboard-card strong {
  color: var(--text);
  display: block;
  font-size: 34px;
  line-height: 1;
}

.performance-grid span,
.dashboard-card span {
  color: var(--muted);
  display: block;
  margin-top: 10px;
}

.workflow-section {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.install-section {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.install-copy h2 {
  color: var(--text);
  font-size: clamp(32px, 4.3vw, 48px);
  line-height: 1.12;
  margin: 18px 0 0;
}

.install-copy p {
  max-width: 520px;
}

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

.step {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 850;
  min-height: 78px;
  padding: 22px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.step:hover {
  border-color: rgba(16, 185, 129, 0.62);
  transform: translateY(-4px);
}

body.light .step {
  background: rgba(255, 255, 255, 0.84);
}

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

.workflow-steps > div {
  border-radius: var(--radius);
  padding: 20px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.workflow-steps strong {
  color: var(--text);
  display: block;
  font-size: 18px;
  margin-top: 16px;
}

.mmbs-pricing {
  display: grid;
  justify-content: center;
}

.mmbs-pricing-single {
  grid-template-columns: minmax(0, 560px);
}

.mmbs-price-card {
  border-radius: var(--radius);
  padding: 28px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mmbs-price-card.is-featured {
  background: var(--surface);
}

.mmbs-price-card h3 {
  color: var(--text);
  font-size: 24px;
  margin: 0 0 10px;
}

.mmbs-price-card strong {
  color: var(--text);
  display: block;
  font-size: 34px;
  margin-bottom: 10px;
}

.mmbs-price-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.mmbs-price-card li {
  color: var(--muted);
}

.mmbs-price-card li::before {
  color: #86efac;
  content: "OK ";
  font-weight: 900;
}

.mmbs-demo {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.82fr);
}

.mmbs-video {
  align-items: center;
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  min-height: 300px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mmbs-video span {
  align-items: center;
  background: var(--purple);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 24px;
  font-weight: 900;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.mmbs-video.is-playing span {
  background: var(--green);
}

.mmbs-video small {
  color: var(--muted);
  font-weight: 750;
}

.contact-clean {
  border-radius: var(--radius);
  padding: 100px 20px;
  text-align: center;
}

.contact-clean h2 {
  font-size: clamp(34px, 5vw, 40px);
  letter-spacing: 3px;
  margin-top: 0;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 30px 0;
}

.social-icons a {
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 54px;
}

.social-icons a:hover {
  border-color: rgba(16, 185, 129, 0.62);
  transform: translateY(-3px);
}

.social-icons img {
  height: 28px;
  margin: 10px;
  width: 28px;
}

body:not(.light) .social-icons img[src*="github"],
body:not(.light) .social-icons img[src*="instagram"] {
  filter: invert(1);
}

.contact-clean .email {
  color: var(--text);
  font-weight: 850;
}

.mmbs-reveal,
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.mmbs-reveal.is-visible,
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.mmbs-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  justify-content: space-between;
  padding: 28px max(24px, 3vw);
}

.dashboard-hero {
  padding: 72px 0 28px;
}

.dashboard-hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  margin: 18px 0;
  max-width: 720px;
}

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

.dashboard-section {
  padding: 24px 0;
}

.dashboard-panels-section {
  padding: 24px 0 88px;
}

.dashboard-panels {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.dashboard-panel {
  border-radius: var(--radius);
  padding: 24px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.dashboard-panel h2 {
  color: var(--text);
  margin-top: 0;
}

.status-list {
  display: grid;
  gap: 12px;
}

.status-list div,
.campaign-logs li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
}

.status-list span,
.campaign-logs span {
  color: var(--muted);
}

.status-list strong,
.campaign-logs strong {
  color: var(--text);
  text-align: right;
}

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

@media (max-width: 1080px) {
  .mmbs-nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mmbs-navlinks {
    flex-wrap: wrap;
  }

  .mega-menu {
    left: 0;
    min-width: min(88vw, 720px);
    transform: translate(0, 8px);
  }

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

  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    transform: translate(0, 0);
  }

  .hero-layout,
  .workflow-section,
  .install-section,
  .mmbs-demo,
  .dashboard-panels {
    grid-template-columns: 1fr;
  }

  .mmbs-hero {
    min-height: auto;
  }

  .mmbs-mockup {
    min-height: 430px;
  }

  .hero-stats,
  .install-steps,
  .performance-grid,
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mmbs-nav-inner,
  .nav-actions,
  .mmbs-actions,
  .mmbs-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-actions {
    width: 100%;
  }

  .auth-profile {
    justify-content: center;
    max-width: none;
    width: 100%;
  }

  .mmbs-navlinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .nav-item > a {
    width: 100%;
  }

  .mega-menu {
    display: none;
  }

  .mmbs-hero {
    padding-top: 42px;
    text-align: left;
  }

  .hero-stats,
  .feature-category-grid,
  .performance-grid,
  .workflow-steps,
  .install-steps,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .mmbs-actions,
  .mmbs-proof {
    justify-content: flex-start;
  }

  .mmbs-hero-copy h1 {
    font-size: clamp(34px, 12vw, 46px);
    margin-left: 0;
    margin-right: 0;
  }

  .mmbs-hero-copy p,
  .mmbs-demo p,
  .workflow-copy p,
  .mmbs-section-head p {
    font-size: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .mmbs-mockup {
    min-height: auto;
  }

  .status-list div,
  .campaign-logs li {
    align-items: stretch;
    flex-direction: column;
  }

  .status-list strong,
  .campaign-logs strong {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .mmbs-reveal,
  .fade-in {
    opacity: 1;
    transform: none;
  }
}
