:root {
  --mc-bg: #08080c;
  --mc-bg-2: #0e0e15;
  --mc-bg-3: #151523;
  --mc-surface: rgba(255, 255, 255, 0.035);
  --mc-surface-2: rgba(255, 255, 255, 0.06);
  --mc-border: rgba(255, 255, 255, 0.1);
  --mc-border-warm: rgba(243, 182, 100, 0.24);
  --mc-text: #f6f1e8;
  --mc-muted: #c7c1b5;
  --mc-muted-2: #938d81;
  --mc-amber: #f3b664;
  --mc-amber-bright: #ffd7a3;
  --mc-cyan: #63e6d2;
  --mc-grad: linear-gradient(104deg, #f3b664 0%, #f0d6a8 36%, #7fe6d8 100%);
}

[hidden] { display: none !important; }

body.mc-page {
  background: var(--mc-bg);
  color: var(--mc-text);
  font-family: "Manrope", Roboto, Arial, sans-serif;
}

body.mc-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 15% -2%, rgba(243, 182, 100, 0.2), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(99, 230, 210, 0.14), transparent 45%),
    var(--mc-bg);
}

.mc-shared-header {
  background: rgba(8, 8, 12, 0.86);
  border-bottom: 1px solid var(--mc-border);
  backdrop-filter: blur(14px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
}

.mc-shared-header .header-container {
  max-width: 1510px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.mc-shared-header .logo .sitename {
  color: var(--mc-text);
  font-family: "Sora", "Raleway", sans-serif;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin: 0;
}

.mc-shared-header .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 280px;
}

.mc-shared-header .logo:hover { text-decoration: none; }

.mc-shared-header .logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--mc-border);
  background: rgba(255, 255, 255, 0.03);
}

.mc-shared-header .navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.1vw, 18px);
  flex-wrap: nowrap;
  justify-content: center;
}

.mc-shared-header .navmenu li {
  margin: 0;
}

.mc-shared-header .navmenu a {
  color: var(--mc-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  padding: 6px 8px;
  border-radius: 10px;
}

.mc-shared-header .navmenu a:hover,
.mc-shared-header .navmenu a.active {
  color: var(--mc-text);
  background: rgba(255, 255, 255, 0.05);
}

.mc-header-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.btn-getstarted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: var(--mc-grad);
}

.mc-header-actions .btn-getstarted {
  margin-left: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mc-header-actions .mc-btn-download { background: #1d4ed8; }
.mc-header-actions .mc-btn-register { background: #0ea5e9; }
.mc-header-actions .mc-btn-profile { background: #0b4f8c; }
.mc-header-actions .mc-btn-login,
.mc-header-actions .mc-btn-logout,
.mc-header-actions .mc-btn-admin { background: rgba(255, 255, 255, 0.08); }

.mc-header-actions .mc-page-active {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

.mobile-nav-toggle {
  display: none;
  border: 1px solid var(--mc-border);
  background: var(--mc-surface);
  color: var(--mc-text);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.mc-main {
  padding: 110px 16px 56px;
  overflow-x: hidden;
}

.mc-container {
  max-width: 1280px;
  margin: 0 auto;
}

.mc-card {
  background: var(--mc-bg-2);
  border: 1px solid var(--mc-border);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 28px 80px -35px rgba(0, 0, 0, 0.86);
  overflow: visible;
}

.mc-card h1,
.mc-card h2,
.mc-card h3,
.mc-card h4 {
  font-family: "Sora", "Raleway", sans-serif;
  color: var(--mc-text);
  letter-spacing: -0.02em;
  margin-top: 0;
}

.mc-muted { color: var(--mc-muted); }

.mc-alert {
  border-radius: 12px;
  padding: 13px 15px;
  margin-bottom: 14px;
  border: 1px solid transparent;
}

.mc-alert-ok {
  background: rgba(110, 231, 183, 0.1);
  border-color: rgba(110, 231, 183, 0.3);
  color: #bbf7d0;
}

.mc-alert-err {
  background: rgba(255, 139, 139, 0.1);
  border-color: rgba(255, 139, 139, 0.3);
  color: #fecaca;
}

.mc-btn {
  background: var(--mc-grad);
  color: #1a1206;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.mc-btn:hover { filter: brightness(1.05); color: #1a1206; }

.mc-btn-ghost {
  background: var(--mc-surface);
  border: 1px solid var(--mc-border);
  color: var(--mc-text);
}

.mc-btn-ghost:hover { color: var(--mc-text); }

.mc-btn-full { width: 100%; }

.mc-input,
.mc-select,
.mc-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid var(--mc-border);
  background: var(--mc-bg);
  color: var(--mc-text);
  padding: 10px 11px;
}

.mc-input:focus,
.mc-select:focus,
.mc-textarea:focus {
  outline: none;
  border-color: var(--mc-amber);
  box-shadow: 0 0 0 3px rgba(243, 182, 100, 0.16);
}

.mc-form-row { margin-bottom: 12px; }
.mc-form-help { color: var(--mc-muted); font-size: 0.88rem; margin-top: 6px; display: block; }
.mc-break { overflow-wrap: anywhere; word-break: break-word; }
.mc-code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.84rem; }
.mc-code {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mc-form-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.mc-col-6 { grid-column: span 6; }
.mc-col-4 { grid-column: span 4; }
.mc-col-3 { grid-column: span 3; }

.mc-table-wrap { overflow-x: auto; }
.mc-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.mc-table th,
.mc-table td { border-bottom: 1px solid var(--mc-border); text-align: left; padding: 10px 8px; vertical-align: top; }
.mc-table td { overflow-wrap: anywhere; word-break: break-word; }
.mc-table th { color: var(--mc-muted); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.03em; }

.mc-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mc-auth-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.mc-remember-row {
  display: inline-flex;
  gap: 8px;
  color: var(--mc-muted);
  align-items: center;
}

.mc-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.mc-stat {
  border: 1px solid var(--mc-border);
  background: var(--mc-surface);
  border-radius: 14px;
  padding: 12px;
  min-width: 0;
}

.mc-stat .k {
  color: var(--mc-muted);
  font-size: 0.86rem;
}

.mc-stat .v {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--mc-text);
  line-height: 1.2;
  min-width: 0;
}

.mc-stat .v.mc-break {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.35;
}

.mc-kv {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 9px 14px;
}

.mc-kv strong { color: var(--mc-text); }

.mc-profile-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.mc-profile-sidebar {
  position: sticky;
  top: 96px;
}

.mc-tab-btn {
  width: 100%;
  text-align: left;
  border: 1px solid var(--mc-border);
  background: var(--mc-bg);
  color: var(--mc-muted);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-weight: 700;
  cursor: pointer;
}

.mc-tab-btn.active {
  border-color: var(--mc-border-warm);
  color: var(--mc-text);
  background: linear-gradient(120deg, rgba(243, 182, 100, 0.2), rgba(99, 230, 210, 0.12));
}

.mc-tab-pane { display: none; }
.mc-tab-pane.active { display: block; }

.mc-settings-stack {
  display: grid;
  gap: 16px;
}

.mc-settings-stack > form.mc-card {
  margin: 0;
  background: var(--mc-bg-3);
}

.mc-subscription-item {
  border: 1px solid var(--mc-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--mc-surface);
}

.mc-subscription-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}

.mc-subscription-item summary::-webkit-details-marker { display: none; }

.mc-sub-title { font-weight: 700; color: var(--mc-text); }
.mc-sub-meta { color: var(--mc-muted); font-size: 0.9rem; }
.mc-sub-meta {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mc-sub-body {
  border-top: 1px solid var(--mc-border);
  padding: 12px;
}

.mc-pricing-hero { text-align: left; }

.mc-billing-mode-wrap {
  display: flex;
  justify-content: center;
}

.mc-billing-mode {
  border: 1px solid var(--mc-border);
  border-radius: 999px;
  padding: 6px;
  background: var(--mc-surface);
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mc-billing-mode button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--mc-muted);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.mc-billing-mode button.active {
  background: var(--mc-grad);
  border-color: transparent;
  color: #1a1206;
}

.mc-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(286px, 360px));
  justify-content: center;
  gap: 20px;
  align-items: stretch;
}

.mc-price-card-laa {
  border: 1px solid var(--mc-border);
  border-radius: 20px;
  background: var(--mc-bg-2);
  padding: 22px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.mc-price-card-head h3 {
  margin: 0 0 10px;
  min-height: 0;
  overflow-wrap: anywhere;
  line-height: 1.15;
}

.mc-price-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mc-price-chip {
  border: 1px solid var(--mc-border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.82rem;
  color: var(--mc-muted);
  background: var(--mc-surface);
}

.mc-price-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--mc-muted);
  line-height: 1.65;
  flex: 1;
}

.mc-price-list strong { color: var(--mc-text); }

.mc-price-card-foot {
  margin-top: 22px;
  padding-top: 0;
}

.mc-download-page { display: flex; flex-direction: column; gap: 18px; }

.mc-download-hero {
  background: linear-gradient(160deg, rgba(243, 182, 100, 0.14), rgba(99, 230, 210, 0.08)), var(--mc-bg-2);
  border: 1px solid var(--mc-border-warm);
  border-radius: 24px;
  padding: 46px 34px;
  text-align: center;
}

.mc-download-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--mc-amber-bright);
  margin-bottom: 10px;
}

.mc-download-hero h1 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.mc-download-sub {
  color: var(--mc-muted);
  max-width: 760px;
  margin: 0 auto 18px;
}

.mc-download-points {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--mc-muted);
  margin-bottom: 16px;
}

.mc-download-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.mc-download-primary,
.mc-download-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
}

.mc-download-primary { background: #1f52da; color: #fff; }
.mc-download-secondary { background: var(--mc-grad); color: #1a1206; }

.mc-download-meta {
  margin-top: 10px;
  color: var(--mc-muted);
}

.mc-download-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mc-download-strip-item {
  background: var(--mc-surface);
  border: 1px solid var(--mc-border);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.mc-download-strip-item strong {
  display: block;
  color: var(--mc-text);
}

.mc-download-strip-item small { color: var(--mc-muted); }

.mc-download-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.mc-download-why-grid article {
  border: 1px solid var(--mc-border);
  background: var(--mc-surface);
  border-radius: 14px;
  padding: 14px;
}

.mc-download-why-grid article h3 { margin: 0 0 6px; font-size: 1.03rem; }
.mc-download-why-grid article p { margin: 0; color: var(--mc-muted); }

.mc-download-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mc-download-step-grid article {
  background: var(--mc-surface);
  border: 1px solid var(--mc-border);
  border-radius: 14px;
  padding: 16px;
}

.mc-download-step-grid article span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mc-grad);
  color: #1a1206;
  font-weight: 800;
  margin-bottom: 8px;
}

.mc-download-step-grid article p { color: var(--mc-muted); margin: 0; }
.mc-download-step-grid article h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.mc-download-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.mc-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--mc-border);
  background: var(--mc-surface);
  color: var(--mc-muted);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
}

.mc-trust-card { text-align: center; }

@media (max-width: 1399px) {
  .mc-shared-header .navmenu ul { gap: 10px; }
  .mc-shared-header .navmenu a { font-size: 13px; padding: 6px 7px; }
  .mc-header-actions .btn-getstarted { font-size: 13px; padding: 7px 10px; }
}

@media (max-width: 1199px) {
  .mc-main { padding-top: 96px; }
  .mc-kv { grid-template-columns: 1fr; }
  .mc-form-grid { grid-template-columns: 1fr; }
  .mc-col-6,
  .mc-col-4,
  .mc-col-3 { grid-column: span 1; }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .mc-shared-header .header-container {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .mc-shared-header .navmenu {
    order: 3;
    width: 100%;
    display: none;
    padding-top: 10px;
  }

  .mc-shared-header .navmenu.open {
    display: block;
  }

  .mc-shared-header .navmenu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .mc-header-actions {
    margin-left: auto;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 1080px) {
  .mc-profile-layout { grid-template-columns: 1fr; }
  .mc-profile-sidebar { position: static; }
}

@media (max-width: 900px) {
  .mc-billing-mode { border-radius: 16px; }
  .mc-billing-mode button { flex: 1 1 120px; }
  .mc-price-grid,
  .mc-download-strip,
  .mc-download-step-grid { grid-template-columns: 1fr; }
}

/* Product polish pass - shared PHP pages */
.mc-shared-header .header-container {
  max-width: 1320px;
  min-height: 68px;
  padding: 0 20px;
}

.mc-shared-header .logo {
  min-width: 210px;
  gap: 9px;
}

.mc-shared-header .logo img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.mc-shared-header .logo .sitename {
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.mc-shared-header .navmenu a {
  font-size: 13px;
  padding: 7px 8px;
}

.mc-main {
  padding-top: 92px;
}

.mc-card {
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025)), #0b0b12;
}

.mc-card h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
  line-height: .95;
}

.mc-card h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.mc-eyebrow {
  margin: 0 0 10px;
  color: var(--mc-amber-bright);
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
}

.mc-section-head-inline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.mc-section-head-inline h2,
.mc-section-head-inline p { margin-bottom: 0; }

.mc-payment-icons-large,
.mc-card-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mc-payment-icons-large img {
  max-height: 42px;
  max-width: 126px;
  object-fit: contain;
}

.mc-card-payment-icons {
  margin-top: 18px;
  gap: 10px;
}

.mc-card-payment-icons img {
  max-height: 20px;
  max-width: 58px;
  object-fit: contain;
}

.mc-purchase-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--mc-muted-2);
  font-size: .84rem;
}

.mc-purchase-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0;
  color: var(--mc-muted-2);
  font-size: .78rem;
  line-height: 1.35;
  text-align: left;
}

.mc-purchase-consent input {
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  accent-color: #2f82ff;
  flex: 0 0 auto;
}

/* Pricing */
.mc-pricing-page {
  display: grid;
  gap: 18px;
}

.mc-pricing-hero-pro {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 92% 15%, rgba(99,230,210,.16), transparent 32%),
    radial-gradient(circle at 12% 5%, rgba(243,182,100,.18), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.022)), #0b0b12;
}

.mc-pricing-hero-pro h1 {
  max-width: 780px;
  margin: 0 0 16px;
}

.mc-pricing-hero-pro .mc-muted {
  max-width: 760px;
  font-size: 1.06rem;
}

.mc-pricing-filter-card {
  padding: 18px;
}

.mc-billing-mode {
  margin: 0 auto;
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.mc-pricing-section {
  overflow: hidden;
}

.mc-price-grid-laa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.mc-price-card-pro {
  min-height: 445px;
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 24px 70px -52px rgba(0,0,0,.9);
}

.mc-price-card-pro h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
  line-height: 1.08;
  min-height: 76px;
}

.mc-price-card-pro .mc-price-list {
  margin-top: 22px;
  font-size: 1rem;
}

.mc-price-card-pro .mc-price-card-foot {
  margin-top: auto;
}

.mc-pricing-secure {
  background: linear-gradient(135deg, rgba(243,182,100,.08), rgba(99,230,210,.08)), #0b0b12;
}

/* Download */
.mc-download-shell {
  display: grid;
  gap: 18px;
}

.mc-download-hero-pro {
  min-height: calc(100vh - 132px);
  max-height: 760px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  background: radial-gradient(circle at 72% 18%, rgba(99,230,210,.2), transparent 32%),
    radial-gradient(circle at 12% 28%, rgba(243,182,100,.18), transparent 38%),
    linear-gradient(160deg, rgba(31,78,216,.16), transparent 50%), #101426;
  overflow: hidden;
}

.mc-download-hero-copy h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 5vw, 5.6rem);
  line-height: .95;
  letter-spacing: -.06em;
  margin: 0 0 18px;
}

.mc-download-sub {
  color: var(--mc-muted);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  max-width: 700px;
  line-height: 1.7;
}

.mc-download-points-pro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.mc-download-points-pro span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--mc-muted);
  background: rgba(255,255,255,.045);
  padding: 8px 12px;
  font-weight: 700;
}

.mc-download-primary,
.mc-download-secondary {
  min-height: 50px;
  padding: 0 22px;
}

.mc-download-device {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(8,8,12,.78);
  box-shadow: 0 40px 120px -55px rgba(0,0,0,.95);
  overflow: hidden;
  transform: rotate(-1deg);
}

.mc-device-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: var(--mc-muted);
}

.mc-device-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fb7185;
}
.mc-device-top span:nth-child(2) { background: #facc15; }
.mc-device-top span:nth-child(3) { background: #22c55e; }
.mc-device-top strong { margin-left: auto; font-size: .85rem; }

.mc-device-body {
  min-height: 360px;
  display: grid;
  grid-template-columns: 165px 1fr;
}

.mc-device-body aside {
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 20px;
  color: var(--mc-muted);
}

.mc-device-body main {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.mc-device-chat {
  border-radius: 20px;
  padding: 14px 16px;
  max-width: 88%;
  color: var(--mc-text);
}

.mc-device-chat.user { margin-left: auto; background: rgba(31,78,216,.38); }
.mc-device-chat.clone { background: rgba(255,255,255,.07); }

.mc-device-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.mc-device-tags span { color: var(--mc-muted); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 6px 10px; font-size: .82rem; }

.mc-download-strip-pro,
.mc-download-privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mc-download-strip-pro article {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  padding: 20px;
}

.mc-download-strip-pro strong { display: block; font-family: "Sora", sans-serif; font-size: 1.1rem; }
.mc-download-strip-pro small { color: var(--mc-muted); }

.mc-download-steps-pro h2 { margin-bottom: 22px; }

/* Dashboard */
.mc-dashboard-hero {
  background: radial-gradient(circle at 88% 10%, rgba(99,230,210,.14), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.022)), #0b0b12;
}

.mc-dashboard-hero h1 { margin: 0 0 10px; }

.mc-profile-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
}

.mc-profile-sidebar {
  top: 92px;
  padding: 22px;
}

.mc-profile-sidebar h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.mc-tab-btn {
  min-height: 52px;
  border-radius: 14px;
  margin-bottom: 10px;
  background: rgba(255,255,255,.025);
}

.mc-sidebar-rule {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 18px 0;
}

.mc-dashboard-pane {
  min-height: 420px;
}

.mc-settings-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.mc-settings-stack > form.mc-card {
  border-radius: 22px;
}

.mc-stat .v {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .mc-download-hero-pro { grid-template-columns: 1fr; max-height: none; }
  .mc-download-device { transform: none; }
}

@media (max-width: 900px) {
  .mc-main { padding-top: 86px; }
  .mc-section-head-inline { flex-direction: column; }
  .mc-download-hero-pro { min-height: auto; }
  .mc-device-body { grid-template-columns: 1fr; }
  .mc-device-body aside { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .mc-download-strip-pro,
  .mc-download-privacy-grid,
  .mc-settings-stack { grid-template-columns: 1fr; }
  .mc-price-card-pro h3 { min-height: 0; }
}

@media (max-width: 720px) {
  .mc-shared-header .logo { min-width: 0; }
  .mc-shared-header .logo .sitename { font-size: 1.05rem; }
  .mc-header-actions .btn-getstarted { padding: 8px 10px; }
}

/* 2026-05-31 shared product-site polish */
.mc-shared-header { background: rgba(7,8,12,.88); border-bottom:1px solid rgba(255,255,255,.1); backdrop-filter: blur(18px); }
.mc-shared-header .header-container { width:min(1510px, calc(100vw - 72px)); min-height:76px; gap:22px; }
.mc-shared-header .logo { min-width:280px; gap:12px; }
.mc-shared-header .logo img { width:42px; height:42px; border-radius:13px; }
.mc-shared-header .logo .sitename { font-family:"Manrope",sans-serif; font-size:clamp(1rem,1.25vw,1.38rem); font-weight:850; letter-spacing:-.045em; }
.mc-shared-header .navmenu ul { gap:clamp(8px,1.25vw,22px); }
.mc-shared-header .navmenu a { font-size:clamp(.78rem,.76vw,.92rem); border-radius:12px; padding:7px 10px; min-height:38px; }
.mc-header-actions { display:inline-flex; align-items:center; gap:10px; }
.mc-header-actions .btn-getstarted { border-radius:999px; min-height:42px; padding:0 16px; font-weight:850; transition:transform .2s ease,filter .2s ease; }
.mc-header-actions .btn-getstarted:hover { transform:translateY(-1px); filter:brightness(1.05); }
.mc-btn-download { background:linear-gradient(135deg,#1d4ed8,#2d67ff)!important; }
.mc-btn-profile,.mc-btn-admin { background:linear-gradient(135deg,#075985,#0b70bc)!important; }
.mc-btn-register { background:linear-gradient(135deg,#0284c7,#22b7ea)!important; }
.mc-btn-login,.mc-btn-logout { background:rgba(255,255,255,.08)!important; }
.mc-main { min-height:calc(100vh - 76px); padding-top:110px; background:radial-gradient(circle at 0 20%,rgba(243,182,100,.12),transparent 26%),radial-gradient(circle at 100% 10%,rgba(99,230,210,.12),transparent 30%),#07080c; }
.mc-container { width:min(1510px, calc(100vw - 72px)); }
.mc-site-footer { border-top:1px solid rgba(255,255,255,.1); background:#07080c; padding:46px 0; color:var(--mc-muted); }
.mc-footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,minmax(160px,.7fr)); gap:28px; }
.mc-site-footer nav { display:grid; gap:8px; align-content:start; }
.mc-site-footer h3 { color:var(--mc-text); font-family:"Manrope",sans-serif; margin:0 0 8px; }
.mc-site-footer a { color:var(--mc-muted); text-decoration:none; }
.mc-site-footer a:hover { color:var(--mc-text); }
.mc-footer-logo { display:inline-flex; align-items:center; gap:10px; color:var(--mc-text)!important; font-weight:900; font-size:1.2rem; }
.mc-footer-logo img { width:38px; height:38px; }
.mc-pricing-page,.mc-download-shell { display:grid; gap:18px; }
.mc-pricing-hero-pro h1 { font-family:"Manrope",sans-serif; font-size:clamp(2.6rem,5vw,5.6rem); line-height:.95; letter-spacing:-.06em; }
.mc-pricing-storefront { padding:26px; }
.mc-price-grid-three { grid-template-columns:repeat(3,minmax(0,1fr)); align-items:stretch; margin-top:28px; }
.mc-price-card-pro { min-height:560px; display:flex; flex-direction:column; }
.mc-price-card-pro[hidden] { display:none!important; }
.mc-price-card-pro h3 { min-height:auto; font-family:"Manrope",sans-serif; font-size:clamp(1.65rem,2vw,2.25rem); }
.mc-price-amount { font-family:"Manrope",sans-serif; font-size:clamp(1.65rem,2.1vw,2.35rem); font-weight:900; letter-spacing:-.045em; color:var(--mc-text); margin:6px 0 14px; }
.mc-product-copy { color:var(--mc-muted); min-height:58px; margin:14px 0; }
.mc-plan-label { display:inline-flex; width:max-content; margin-bottom:16px; border-radius:999px; padding:7px 12px; background:rgba(243,182,100,.14); color:#ffd79d; font-weight:900; font-size:.8rem; }
.mc-card-payment-icons img[src*="mastercard"] { background:#fff; padding:3px 5px; border-radius:7px; }
.mc-payment-icons-large img[src*="mastercard"] { background:#fff; padding:4px 7px; border-radius:8px; }
.mc-download-account { display:none; }
.mc-download-hero-pro { min-height:min(720px, calc(100vh - 132px)); }
.mc-download-hero-copy h1 { font-size:clamp(2.25rem,4.5vw,4.9rem); }
.mc-download-strip-pro article,.mc-download-privacy-grid .mc-card,.mc-download-step-grid article { transition:transform .22s ease,border-color .22s ease,background .22s ease; }
.mc-download-strip-pro article:hover,.mc-download-privacy-grid .mc-card:hover,.mc-download-step-grid article:hover { transform:translateY(-4px); border-color:rgba(243,182,100,.35); background:rgba(255,255,255,.065); }
.mc-download-device .mc-device-top strong { font-family:"Manrope",sans-serif; }
.mc-dashboard-hero .mc-stat-grid { grid-template-columns:repeat(6,minmax(0,1fr)); }
.mc-dashboard-hero .mc-stat .v { font-size:clamp(1.25rem,1.65vw,2rem); overflow-wrap:anywhere; line-height:1.15; }
.mc-dashboard-pane[data-pane="overview"] { min-height:0; max-width:980px; }
.mc-settings-stack > form.mc-card { min-height:100%; }
.mc-pagination { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:18px; }
.mc-pagination a,.mc-pagination span,.mc-pagination button { min-height:42px; border:1px solid rgba(255,255,255,.12); border-radius:999px; padding:9px 14px; background:rgba(255,255,255,.055); color:var(--mc-text); text-decoration:none; font-weight:800; }
.mc-pagination .active { background:linear-gradient(135deg,#f3b664,#7fe6d8); color:#17120a; }
.mc-auth-wrap .mc-card { max-width:560px; margin:0 auto; }
.mc-legal-check { display:flex; gap:10px; align-items:flex-start; color:var(--mc-muted); font-size:.92rem; }
@media (max-width:1180px){ .mc-price-grid-three,.mc-dashboard-hero .mc-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.mc-download-hero-pro{grid-template-columns:1fr}.mc-footer-grid{grid-template-columns:1fr 1fr} }
@media (max-width:760px){ .mc-shared-header .header-container{flex-wrap:wrap}.mc-shared-header .mobile-nav-toggle{display:grid}.mc-shared-header .navmenu{display:none;order:4;flex-basis:100%}.mc-shared-header .navmenu.open{display:block}.mc-shared-header .navmenu ul{display:grid;justify-content:stretch}.mc-header-actions{display:none}.mc-menu-open .mc-header-actions{display:grid;grid-template-columns:1fr;width:100%;order:5}.mc-main{padding-top:96px}.mc-container{width:min(100% - 30px,1510px)}.mc-price-grid-three,.mc-dashboard-hero .mc-stat-grid,.mc-footer-grid{grid-template-columns:1fr}.mc-shared-header .logo{min-width:0}.mc-download-device{display:none} }

/* final compact sales tuning */
.mc-pricing-hero-pro {
  min-height: 160px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.mc-pricing-hero-pro h1 {
  font-size: clamp(2.15rem, 3.7vw, 4.25rem);
  margin-bottom: 10px;
}
.mc-pricing-hero-pro .mc-muted { font-size: 1rem; }
.mc-pricing-storefront { padding: 22px; }
.mc-price-grid-three {
  gap: 18px;
  margin-top: 22px;
}
.mc-price-card-pro {
  min-height: 438px;
  padding: 20px;
}
.mc-price-card-pro h3 {
  font-size: clamp(1.35rem, 1.7vw, 1.78rem);
  min-height: 48px;
}
.mc-price-card-pro .mc-price-list {
  margin-top: 12px;
  font-size: .96rem;
  line-height: 1.45;
}
.mc-price-card-pro .mc-price-card-foot { margin-top: 14px; }
.mc-product-copy {
  min-height: 38px;
  margin: 8px 0 10px;
}
.mc-price-amount {
  font-size: clamp(1.5rem, 1.9vw, 2rem);
  margin: 4px 0 10px;
}
.mc-plan-label {
  margin-bottom: 10px;
  padding: 6px 11px;
}
.mc-card-payment-icons {
  margin-top: 10px;
  gap: 8px;
}
.mc-purchase-note { margin-top: 8px; }
.mc-stat-card strong,
.mc-kpi-card strong {
  overflow-wrap: anywhere;
  word-break: normal;
}

.mc-admin-analytics {
  margin-top: 18px;
}

.mc-admin-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mc-admin-kpis article {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 20px 60px -46px rgba(0,0,0,.9);
}

.mc-admin-kpis span {
  display: block;
  color: var(--mc-muted);
  font-size: .86rem;
  font-weight: 800;
}

.mc-admin-kpis strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.mc-pagination .disabled {
  opacity: .45;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .mc-price-grid-three { grid-template-columns: 1fr; }
  .mc-price-card-pro { min-height: 0; }
  .mc-admin-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .mc-admin-kpis { grid-template-columns: 1fr; }
}


/* 2026-05-31 final account/admin closeout pass */
.mc-shared-header { position:sticky; top:0; z-index:1000; }
.mc-dashboard-hero { position:relative; }
.mc-dashboard-account-corner { position:absolute; top:30px; right:32px; text-align:right; max-width:min(460px,42vw); color:var(--mc-muted); font-weight:800; }
.mc-dashboard-account-corner strong { display:block; color:var(--mc-text); overflow-wrap:anywhere; font-size:.96rem; }
.mc-dashboard-layout { align-items:stretch; }
.mc-dashboard-sidebar,.mc-dashboard-pane { min-height:405px; }
.mc-btn,.mc-dashboard-sidebar .mc-btn,.mc-dashboard-pane .mc-btn { background:linear-gradient(135deg,#f3b664,#7fe6d8); color:#17120a!important; border:0; font-weight:950; }
.mc-btn-ghost,.mc-dashboard-pane .mc-btn-ghost { background:rgba(255,255,255,.07)!important; color:var(--mc-text)!important; border:1px solid rgba(255,255,255,.14)!important; }
.mc-pagination { gap:7px; margin-top:12px; }
.mc-pagination a,.mc-pagination span,.mc-pagination button { min-height:34px; padding:6px 11px; font-size:.86rem; }
.mc-subscription-details summary { cursor:pointer; font-weight:900; color:var(--mc-text); }
.mc-subscription-details summary::before { content:'See details ? '; color:#7fe6d8; }
.mc-settings-stack { align-items:start; }
.mc-settings-stack > form.mc-card { background:transparent; box-shadow:none; border-color:rgba(255,255,255,.1); min-height:0; }
.mc-admin-kpis article:hover { transform:translateY(-2px); border-color:rgba(243,182,100,.35); }
.mc-admin-tools-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin-top:18px; }
.mc-admin-tools-grid article { border:1px solid rgba(255,255,255,.12); border-radius:20px; padding:16px; background:rgba(255,255,255,.045); }
.mc-admin-tools-grid strong { display:block; margin-bottom:6px; }
.mc-admin-tools-grid span { color:var(--mc-muted); font-size:.9rem; }
@media (max-width:900px){
  .mc-dashboard-account-corner{position:static;text-align:left;max-width:none;margin-top:12px}.mc-dashboard-hero .mc-stat-grid{grid-template-columns:1fr 1fr}.mc-dashboard-layout,.mc-settings-stack,.mc-admin-tools-grid{grid-template-columns:1fr!important}.mc-dashboard-sidebar,.mc-dashboard-pane{min-height:0}.mc-main{overflow-x:hidden}.mc-container{width:min(100% - 24px,1510px)}
}
@media (max-width:560px){.mc-dashboard-hero .mc-stat-grid{grid-template-columns:1fr}.mc-pagination{justify-content:flex-start}.mc-pagination a,.mc-pagination span{font-size:.78rem;padding:6px 9px}.mc-shared-header .header-container{width:min(100% - 20px,1510px)}}

/* 2026-05-31 shared header compatibility + dashboard finish */
body.mc-page #header {
  background: rgba(7,8,12,.88);
  border-bottom:1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 1000;
}
body.mc-page #header .header-container {
  width:min(1510px, calc(100vw - 72px));
  min-height:76px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
body.mc-page #header .logo {
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:280px;
  color:var(--mc-text);
  text-decoration:none;
}
body.mc-page #header .logo img { width:42px; height:42px; border-radius:13px; }
body.mc-page #header .logo .sitename { font-family:"Manrope",sans-serif; font-size:clamp(1rem,1.25vw,1.38rem); font-weight:850; letter-spacing:-.045em; margin:0; }
body.mc-page #header .navmenu ul { display:flex; align-items:center; gap:clamp(8px,1.25vw,22px); margin:0; padding:0; list-style:none; }
body.mc-page #header .navmenu a { color:var(--mc-muted); text-decoration:none; font-size:clamp(.78rem,.76vw,.92rem); border-radius:12px; padding:7px 10px; min-height:38px; display:inline-flex; align-items:center; font-weight:850; transition:.2s ease; }
body.mc-page #header .navmenu a:hover, body.mc-page #header .navmenu a.active { color:var(--mc-text); background:rgba(255,255,255,.07); transform:translateY(-1px); }
body.mc-page #header .header-actions { display:inline-flex; align-items:center; gap:10px; }
body.mc-page #header .btn { border-radius:999px; min-height:42px; padding:0 16px; display:inline-flex; align-items:center; justify-content:center; text-decoration:none; font-weight:850; transition:.2s ease; }
body.mc-page #header .btn:hover { transform:translateY(-2px) scale(1.02); }
body.mc-page #header .btn-warm { background:linear-gradient(135deg,#ff9d00,#ffc26f 48%,#7fe6d8); color:#111; }
body.mc-page #header .btn-blue { background:linear-gradient(135deg,#1957f5,#2f7dff 55%,#74d4ff); color:#fff; }
body.mc-page #header .btn-cyan { background:linear-gradient(135deg,#0284c7,#22b7ea); color:#fff; }
body.mc-page #header .btn-profile { background:linear-gradient(135deg,#075985,#0ea5e9); color:#fff; }
body.mc-page #header .btn-ghost { background:rgba(255,255,255,.075); color:#fff; border:1px solid rgba(255,255,255,.14); }
body.mc-page #header .mobile-nav-toggle { display:none; border:0; background:rgba(255,255,255,.08); color:#fff; border-radius:12px; width:42px; height:42px; place-items:center; }
.mc-main { padding-top: 34px; }
.mc-dashboard-hero .mc-stat-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.mc-dashboard-account-corner strong { word-break: normal; overflow-wrap: anywhere; }
.mc-profile-layout { align-items: stretch; }
.mc-profile-sidebar,
.mc-dashboard-pane { min-height: 420px; }
.mc-dashboard-pane[data-pane="security"] { min-height: 420px; }
.mc-settings-form { border:1px solid rgba(255,255,255,.1); border-radius:22px; padding:20px; background:transparent; box-shadow:none; }
.mc-see-details { display:inline-flex; align-items:center; gap:6px; margin-right:12px; border-radius:999px; padding:6px 10px; background:rgba(127,230,216,.12); color:#7fe6d8; font-size:.8rem; }
.mc-subscription-details summary::before { content:""; }
.mc-admin-growth-tools { margin-top:18px; }
.mc-promo-form { margin-top:18px; }
@media (max-width: 900px) {
  body.mc-page #header .header-container { width:min(100% - 24px,1510px); flex-wrap:wrap; }
  body.mc-page #header .logo { min-width:0; }
  body.mc-page #header .mobile-nav-toggle { display:grid; margin-left:auto; }
  body.mc-page #header .navmenu { display:none; order:4; flex-basis:100%; }
  body.mc-page #header .navmenu.open { display:block; }
  body.mc-page #header .navmenu ul { display:grid; justify-content:stretch; }
  body.mc-page #header .header-actions { display:none; }
  body.mc-page.mc-menu-open #header .header-actions { display:grid; grid-template-columns:1fr; width:100%; order:5; }
  .mc-dashboard-hero .mc-stat-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 560px) {
  body.mc-page #header .header-actions .btn { width:100%; }
  .mc-dashboard-hero .mc-stat-grid { grid-template-columns:1fr; }
}

/* 2026-05-31 pricing/download rendered page fixes */
.mc-billing-mode { flex-wrap: nowrap !important; justify-content:center; max-width:100%; }
.mc-billing-mode button { white-space: nowrap; flex: 0 1 auto; }
.mc-old-price { display:block; color:rgba(246,241,232,.48); text-decoration:line-through; font-size:.88rem; font-weight:800; margin-bottom:4px; }
.mc-credit-amount { margin:6px 0 14px; }
.mc-credit-amount strong { display:block; font-family:"Manrope",sans-serif; font-size:clamp(1.35rem,1.8vw,2rem); line-height:1.05; letter-spacing:-.045em; color:var(--mc-text); white-space:nowrap; }
.mc-credit-amount span { display:block; margin-top:4px; color:#ffd79d; font-weight:900; }
.mc-price-card-pro h3 { white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mc-card-payment-icons { margin-top:auto; margin-bottom:18px; }
.mc-price-card-foot { padding-top:10px; }
.mc-purchase-note a { color:#7fe6d8; text-decoration:underline; text-underline-offset:3px; }
.mc-download-shell { position:relative; overflow:hidden; }
.mc-download-shell::before,.mc-download-shell::after { content:""; position:fixed; width:8px; height:8px; border-radius:999px; background:#f3b664; opacity:.55; box-shadow:140px 80px 0 #7fe6d8,420px 120px 0 rgba(243,182,100,.7),780px 60px 0 rgba(127,230,216,.55),1050px 190px 0 rgba(243,182,100,.4); animation:mcParticles 11s ease-in-out infinite alternate; pointer-events:none; z-index:0; }
.mc-download-shell::after { right:8%; top:24%; transform:scale(.8); animation-duration:14s; animation-direction:alternate-reverse; }
@keyframes mcParticles { from{ transform:translateY(0) translateX(0);} to{ transform:translateY(-26px) translateX(18px);} }
.mc-download-shell > * { position:relative; z-index:1; }
.mc-download-hero-copy h1 { max-width:820px; line-height:1.02; }
.mc-download-privacy-grid h3 { white-space:nowrap; font-size:clamp(1.05rem,1.45vw,1.35rem); }
.mc-download-step-grid article { min-height:230px; }
@media (max-width:760px){ .mc-billing-mode{gap:4px;padding:5px}.mc-billing-mode button{font-size:.74rem;padding:8px 9px}.mc-price-card-pro h3,.mc-credit-amount strong{white-space:normal}.mc-download-privacy-grid h3{white-space:normal}.mc-download-hero-copy h1{font-size:clamp(2rem,10vw,3rem)} }
/* Memory Clone final account/admin polish pass 2026-06-01 */
html, body { max-width: 100%; overflow-x: hidden; }
.mc-page main.mc-main { padding-top: 32px !important; }
.mc-shared-header { min-height: 66px !important; height: 66px !important; padding: 0 !important; background: rgba(7, 8, 11, .94) !important; border-bottom: 1px solid rgba(255,255,255,.08) !important; backdrop-filter: blur(18px) !important; }
.mc-shared-header .mc-header-inner { height: 66px !important; max-width: 1280px !important; margin: 0 auto !important; padding: 0 18px !important; display: flex !important; align-items: center !important; gap: 18px !important; }
.mc-shared-header .mc-brand { gap: 10px !important; min-width: max-content !important; }
.mc-shared-header .mc-brand img { width: 34px !important; height: 34px !important; border-radius: 11px !important; }
.mc-shared-header .mc-brand span { font-size: 1.28rem !important; line-height: 1 !important; letter-spacing: -.04em !important; }
.mc-shared-header .mc-nav { flex: 1 1 auto !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 12px !important; }
.mc-shared-header .mc-nav a { padding: 9px 12px !important; font-size: .9rem !important; border-radius: 12px !important; color: rgba(255,250,240,.78) !important; }
.mc-shared-header .mc-nav a:hover, .mc-shared-header .mc-nav a.active { background: rgba(255,255,255,.08) !important; color: #fffaf0 !important; }
.mc-shared-header .mc-header-actions { display: flex !important; align-items: center !important; gap: 8px !important; margin-left: auto !important; }
.mc-btn, button, input[type="submit"] { background-clip: padding-box !important; overflow: hidden; }
.mc-shared-header .mc-header-actions .mc-btn { min-height: 36px !important; padding: 9px 16px !important; border-radius: 999px !important; font-size: .88rem !important; font-weight: 900 !important; line-height: 1 !important; }
.mc-btn.mc-primary, .mc-btn.mc-gradient, .mc-form button, .mc-admin-sidebar a:hover, .mc-admin-sidebar a.active { color: #061015 !important; background: linear-gradient(135deg,#ffc15b 0%,#ff9b00 42%,#8ef1dd 100%) !important; border: 0 !important; box-shadow: 0 12px 28px rgba(255,155,0,.18) !important; }
.mc-btn.mc-blue { color: #fff !important; background: linear-gradient(135deg,#2458ff 0%,#24a8ff 100%) !important; border: 0 !important; }
.mc-btn.mc-secondary { color: #fff !important; background: rgba(255,255,255,.08) !important; border: 1px solid rgba(255,255,255,.14) !important; }
.mc-profile-layout { align-items: start !important; }
.mc-profile-sidebar { min-height: 0 !important; padding: 20px !important; }
.mc-dashboard-pane[data-pane="overview"], .mc-dashboard-pane[data-pane="security"] { min-height: 300px !important; }
.mc-dashboard-pane[data-pane="billing"] { min-height: auto !important; }
.mc-dashboard-sidebar, .mc-dashboard-pane { min-height: 0 !important; }
.mc-subscription-item summary { justify-content: flex-start !important; text-align: left !important; gap: 14px !important; }
.mc-subscription-item .mc-sub-title { text-align: left !important; margin: 0 !important; }
.mc-subscription-item .mc-sub-meta { margin-left: auto !important; text-align: right !important; }
.mc-pagination { gap: 7px !important; margin: 16px 0 !important; }
.mc-pagination a, .mc-pagination span { min-height: 28px !important; padding: 4px 10px !important; border-radius: 999px !important; font-size: .78rem !important; line-height: 1.1 !important; }
.mc-settings-form { border: 0 !important; background: transparent !important; box-shadow: none !important; padding: 0 !important; }
.mc-settings-form input, .mc-settings-form .mc-input { min-height: 42px !important; max-width: 460px !important; }
.mc-settings-grid { align-items: start !important; gap: 28px !important; }
.mc-admin-layout { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: 22px; align-items: start; }
.mc-admin-sidebar { position: sticky; top: 88px; padding: 18px; }
.mc-admin-sidebar h2 { margin: 0 0 12px; font-size: 1.25rem; }
.mc-admin-sidebar a { display: block; padding: 11px 12px; margin: 7px 0; border-radius: 12px; color: rgba(255,250,240,.78); border: 1px solid rgba(255,255,255,.1); text-decoration: none; }
.mc-admin-content { display: grid; gap: 22px; min-width: 0; }
.mc-table-wrap { overflow-x: auto; }
.mc-table th, .mc-table td { vertical-align: top !important; }
.mc-table input, .mc-table select, .mc-table textarea, .mc-input, .mc-select { max-width: 100% !important; min-width: 0 !important; box-sizing: border-box !important; }
.mc-admin-products-table { min-width: 1120px; }
.mc-admin-products-table input, .mc-admin-products-table select { width: 100% !important; margin-bottom: 8px !important; }
.mc-form .mc-field, .mc-field { display: grid; gap: 6px; margin-bottom: 10px; }
.mc-field span, .mc-field label { color: rgba(255,250,240,.65); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
@media (max-width: 980px) { .mc-shared-header .mc-nav { display: none !important; } .mc-admin-layout, .mc-profile-layout { grid-template-columns: 1fr !important; } .mc-admin-sidebar { position: static; } }
@media (max-width: 640px) { .mc-shared-header .mc-header-inner { padding: 0 10px !important; gap: 8px !important; } .mc-shared-header .mc-brand span { font-size: 1rem !important; } .mc-shared-header .mc-header-actions .mc-btn { padding: 8px 10px !important; font-size: .75rem !important; } }
/* Shared PHP header exact-index sizing override */
.mc-shared-header .header-container { height: 66px !important; min-height: 66px !important; max-width: 1280px !important; width: min(1280px, calc(100vw - 36px)) !important; margin: 0 auto !important; padding: 0 18px !important; display: flex !important; align-items: center !important; gap: 18px !important; flex-wrap: nowrap !important; }
.mc-shared-header .logo { gap: 10px !important; min-width: max-content !important; }
.mc-shared-header .logo img { width: 34px !important; height: 34px !important; border-radius: 11px !important; }
.mc-shared-header .logo .sitename { font-size: 1.28rem !important; line-height: 1 !important; letter-spacing: -.04em !important; margin: 0 !important; }
.mc-shared-header .navmenu { flex: 1 1 auto !important; }
.mc-shared-header .navmenu ul { display: flex !important; align-items: center !important; justify-content: center !important; gap: 12px !important; padding: 0 !important; margin: 0 !important; }
.mc-shared-header .navmenu a { padding: 9px 12px !important; min-height: 0 !important; font-size: .9rem !important; border-radius: 12px !important; color: rgba(255,250,240,.78) !important; }
.mc-header-actions { display: flex !important; align-items: center !important; gap: 8px !important; margin-left: auto !important; }
.mc-header-actions .btn-getstarted { min-height: 36px !important; height: 36px !important; padding: 0 16px !important; border-radius: 999px !important; font-size: .88rem !important; font-weight: 900 !important; line-height: 36px !important; }
@media (max-width:760px){ .mc-shared-header .header-container{width:calc(100vw - 20px) !important; flex-wrap:nowrap !important}.mc-shared-header .navmenu{display:none !important}.mc-shared-header .mobile-nav-toggle{display:grid !important}.mc-header-actions{display:flex !important; gap:6px !important}.mc-header-actions .btn-getstarted{font-size:.72rem !important;padding:0 9px !important} }
/* Match PHP shared header to index header classes exactly */
body.mc-page { margin: 0 !important; }
body.mc-page #header { position: sticky !important; top: 0 !important; z-index: 1000 !important; min-height: 66px !important; height: 66px !important; padding: 0 !important; background: rgba(7, 8, 11, .94) !important; border-bottom: 1px solid rgba(255,255,255,.08) !important; backdrop-filter: blur(18px) !important; }
body.mc-page #header .header-container { height: 66px !important; min-height: 66px !important; max-width: 1280px !important; width: min(1280px, calc(100vw - 36px)) !important; margin: 0 auto !important; padding: 0 18px !important; display: flex !important; align-items: center !important; gap: 18px !important; flex-wrap: nowrap !important; }
body.mc-page #header .logo { gap: 10px !important; min-width: max-content !important; display: flex !important; align-items: center !important; }
body.mc-page #header .logo img { width: 34px !important; height: 34px !important; border-radius: 11px !important; }
body.mc-page #header .logo .sitename { font-size: 1.28rem !important; line-height: 1 !important; letter-spacing: -.04em !important; margin: 0 !important; }
body.mc-page #header .navmenu { flex: 1 1 auto !important; }
body.mc-page #header .navmenu ul { display: flex !important; align-items: center !important; justify-content: center !important; gap: 12px !important; padding: 0 !important; margin: 0 !important; }
body.mc-page #header .navmenu a { padding: 9px 12px !important; min-height: 0 !important; height: auto !important; font-size: .9rem !important; border-radius: 12px !important; color: rgba(255,250,240,.78) !important; line-height: 1.2 !important; }
body.mc-page #header .header-actions { display: flex !important; align-items: center !important; gap: 8px !important; margin-left: auto !important; }
body.mc-page #header .header-actions .btn { min-height: 36px !important; height: 36px !important; padding: 0 16px !important; border-radius: 999px !important; font-size: .88rem !important; font-weight: 900 !important; line-height: 36px !important; }
@media (max-width:760px){ body.mc-page #header .header-container{width:calc(100vw - 20px) !important;padding:0 10px !important;gap:8px !important} body.mc-page #header .navmenu{display:none !important} body.mc-page #header .mobile-nav-toggle{display:grid !important} body.mc-page #header .header-actions{display:flex !important;gap:6px !important} body.mc-page #header .header-actions .btn{font-size:.72rem !important;padding:0 9px !important} }

/* 2026-06-01 final user QA polish pass */
body.mc-page #header::after { display: none !important; }
body.mc-page #header .mobile-nav-toggle { display: none; }
.mc-price-card-laa,
.mc-price-card-pro { position: relative !important; overflow: visible !important; }
.mc-price-card-pro .mc-discount-badge { top: -16px !important; right: 20px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; width: max-content !important; white-space: nowrap !important; }
.mc-price-amount { display: flex !important; align-items: baseline !important; gap: 6px !important; flex-wrap: wrap !important; }
.mc-credit-amount strong { font-size: clamp(1.45rem, 1.75vw, 1.9rem) !important; }
.mc-credit-amount span { font-size: .95rem !important; }
.mc-card-payment-icons { margin: 13px 0 13px !important; min-height: 24px !important; }
.mc-card-payment-icons img { max-height: 21px !important; }
.mc-price-card-foot { padding-top: 4px !important; }
.mc-billing-mode { margin-inline: auto !important; }
.mc-pricing-refundline { text-align:center; margin:16px auto 0; color:rgba(255,250,240,.72); }
.mc-pricing-refundline a { color:#8ef1dd; text-decoration:underline; text-underline-offset:3px; }
.mc-download-hero-pro { padding: clamp(26px, 4vw, 44px) !important; }
.mc-download-hero-copy h1 { font-size: clamp(2rem, 3.2vw, 3.45rem) !important; line-height: 1.03 !important; max-width: 680px !important; }
.mc-download-cta-row { justify-content: flex-start !important; }
.mc-download-primary { gap: 10px !important; white-space: nowrap !important; }
.mc-download-step-grid article { min-height: 118px !important; padding: 18px !important; }
.mc-download-step-grid article p { margin-bottom: 0 !important; }
.mc-download-privacy-grid .mc-card { min-height: 0 !important; }
.mc-dashboard-sidebar { padding: 20px !important; }
.mc-dashboard-sidebar .mc-dashboard-actions { margin-top: 16px !important; }
.mc-dashboard-pane { padding: clamp(24px, 3vw, 34px) !important; }
.mc-profile-layout { grid-template-columns: 280px minmax(0,1fr) !important; align-items: stretch !important; }
.mc-dashboard-sidebar, .mc-dashboard-pane { min-height: 0 !important; }
.mc-dashboard-pane[data-pane="overview"],
.mc-dashboard-pane[data-pane="security"] { min-height: 300px !important; }
.mc-dashboard-pane[data-pane="billing"] { min-height: 0 !important; }
.mc-pagination { gap: 6px !important; margin: 12px 0 !important; }
.mc-pagination a,
.mc-pagination span,
.mc-pagination button { min-height: 26px !important; padding: 4px 9px !important; font-size: .76rem !important; line-height: 1 !important; }
.mc-settings-form { border: 0 !important; border-radius: 0 !important; padding: 0 !important; background: transparent !important; }
.mc-settings-grid { gap: 32px !important; }
.mc-settings-form input,
.mc-settings-form .mc-input { min-height: 40px !important; max-width: 430px !important; }
.mc-subscription-item summary { justify-content:flex-start !important; gap:14px !important; text-align:left !important; }
.mc-see-details { flex:0 0 auto !important; }
.mc-subscription-item .mc-sub-title { text-align:left !important; margin:0 !important; }
.mc-subscription-item .mc-sub-meta { margin-left:auto !important; text-align:right !important; }
.mc-admin-layout { grid-template-columns: 245px minmax(0,1fr) !important; }
.mc-admin-content .mc-card { overflow: hidden !important; }
.mc-admin-products-table { min-width: 1180px !important; }
.mc-admin-products-table input,
.mc-admin-products-table select { min-height: 38px !important; font-size: .86rem !important; }
.mc-admin-products-table td { padding-top: 12px !important; padding-bottom: 12px !important; }
@media (max-width: 980px) {
  body.mc-page #header .navmenu ul { display: none !important; }
  body.mc-page.mc-menu-open #header .navmenu ul,
  body.mc-page #header .navmenu.open ul { display: grid !important; }
  .mc-profile-layout,
  .mc-admin-layout { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  body.mc-page #header { height: auto !important; min-height: 66px !important; }
  body.mc-page #header .header-container { height: auto !important; min-height: 66px !important; flex-wrap: wrap !important; align-items: center !important; }
  body.mc-page #header .mobile-nav-toggle { display: grid !important; margin-left: auto !important; }
  body.mc-page #header .navmenu { display: none !important; flex-basis: 100% !important; order: 4 !important; }
  body.mc-page.mc-menu-open #header .navmenu,
  body.mc-page #header .navmenu.open { display: block !important; }
  body.mc-page #header .navmenu ul { grid-template-columns: 1fr !important; gap: 6px !important; padding: 10px 0 4px !important; }
  body.mc-page #header .navmenu a { width: 100% !important; justify-content: center !important; }
  body.mc-page #header .header-actions { display: none !important; order: 5 !important; width: 100% !important; margin-left: 0 !important; }
  body.mc-page.mc-menu-open #header .header-actions { display: grid !important; grid-template-columns: 1fr !important; gap: 8px !important; }
  body.mc-page #header .header-actions .btn { width: 100% !important; min-height: 42px !important; font-size: .86rem !important; }
  .mc-download-hero-copy h1 { font-size: clamp(2rem, 9vw, 2.75rem) !important; }
  .mc-price-grid-three { grid-template-columns: 1fr !important; }
  .mc-dashboard-hero .mc-stat-grid { grid-template-columns: 1fr !important; }
}

/* 2026-06-01 release polish: final user QA fixes */
body.mc-page #header,
body.mc-page .mc-shared-header {
  overflow: visible !important;
  box-shadow: none !important;
}

body.mc-page #header::before,
body.mc-page #header::after {
  display: none !important;
}

body.mc-page #header .btn,
body.mc-page .btn,
body.mc-page .mc-btn,
body.mc-page .mc-primary-gradient,
body.mc-page .mc-download-primary,
body.mc-page .mc-price-card-foot button {
  background-clip: padding-box !important;
  overflow: hidden !important;
}

body.mc-page .mc-pricing-storefront {
  text-align: center !important;
  padding: 22px !important;
}

body.mc-page .mc-pricing-storefront > .mc-billing-mode {
  display: flex !important;
  justify-content: center !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 0 auto 16px !important;
}

body.mc-page .mc-pricing-refundline {
  max-width: 740px !important;
  margin: 0 auto 22px !important;
  text-align: center !important;
}

body.mc-page .mc-price-grid-three {
  align-items: stretch !important;
}

body.mc-page .mc-price-card-pro,
body.mc-page .mc-price-card-laa {
  position: relative !important;
  overflow: visible !important;
  min-height: 0 !important;
}

body.mc-page .mc-price-card-pro {
  padding: 30px 20px 22px !important;
  display: flex !important;
  flex-direction: column !important;
}

body.mc-page .mc-price-card-pro .mc-discount-badge,
body.mc-page .mc-price-card-laa .mc-discount-badge {
  position: absolute !important;
  top: -15px !important;
  right: 18px !important;
  z-index: 8 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: max-content !important;
  max-width: calc(100% - 36px) !important;
  padding: 8px 13px !important;
  border-radius: 999px !important;
  color: #061015 !important;
  background: linear-gradient(135deg, #ffc15b, #8ef1dd) !important;
  box-shadow: 0 16px 32px rgba(255, 193, 91, .18) !important;
  font-size: .8rem !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

body.mc-page .mc-price-card-head h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.55rem) !important;
  line-height: 1.12 !important;
  margin-bottom: 14px !important;
  white-space: nowrap !important;
}

body.mc-page .mc-price-amount {
  display: flex !important;
  align-items: baseline !important;
  gap: 7px !important;
  flex-wrap: wrap !important;
  font-size: clamp(1.9rem, 2.35vw, 2.45rem) !important;
}

body.mc-page .mc-price-amount small {
  display: inline !important;
  flex-basis: auto !important;
  font-size: .48em !important;
}

body.mc-page .mc-old-price {
  display: block !important;
  margin: 0 0 2px !important;
  color: rgba(255, 250, 240, .48) !important;
}

body.mc-page .mc-credit-amount strong {
  font-size: clamp(1.55rem, 2vw, 2rem) !important;
}

body.mc-page .mc-credit-amount span {
  font-size: .95rem !important;
}

body.mc-page .mc-card-payment-icons {
  margin: 12px 0 12px !important;
  min-height: 24px !important;
}

body.mc-page .mc-card-payment-icons img {
  max-height: 21px !important;
}

body.mc-page .mc-price-list {
  margin: 12px 0 !important;
}

body.mc-page .mc-price-list li {
  margin: 4px 0 !important;
}

body.mc-page .mc-price-card-foot {
  margin-top: auto !important;
  padding-top: 8px !important;
}

body.mc-page .mc-download-hero-pro {
  min-height: auto !important;
  padding: clamp(24px, 3.5vw, 40px) !important;
}

body.mc-page .mc-download-hero-copy h1 {
  font-size: clamp(1.9rem, 2.85vw, 3rem) !important;
  line-height: 1.03 !important;
  max-width: 610px !important;
}

body.mc-page .mc-download-primary {
  border-radius: 999px !important;
  gap: 10px !important;
  white-space: nowrap !important;
  min-height: 48px !important;
  padding: 13px 24px !important;
}

body.mc-page .mc-download-primary i {
  flex: 0 0 auto !important;
  line-height: 1 !important;
}

body.mc-page .mc-download-step-grid article {
  min-height: 104px !important;
  padding: 18px !important;
}

body.mc-page .mc-download-step-grid article span {
  width: 34px !important;
  height: 34px !important;
}

body.mc-page .mc-download-step-grid article p {
  margin-bottom: 0 !important;
}

body.mc-page .mc-profile-layout {
  grid-template-columns: 260px minmax(0, 1fr) !important;
  align-items: stretch !important;
}

body.mc-page .mc-dashboard-sidebar {
  align-self: start !important;
  padding: 18px !important;
  min-height: 0 !important;
}

body.mc-page .mc-dashboard-sidebar .mc-dashboard-actions {
  margin-top: 16px !important;
}

body.mc-page .mc-dashboard-pane {
  padding: clamp(22px, 2.7vw, 32px) !important;
  min-height: 0 !important;
}

body.mc-page .mc-dashboard-pane[data-pane="overview"],
body.mc-page .mc-dashboard-pane[data-pane="security"] {
  min-height: 0 !important;
}

body.mc-page .mc-pagination {
  gap: 6px !important;
  margin: 12px 0 !important;
}

body.mc-page .mc-pagination a,
body.mc-page .mc-pagination span,
body.mc-page .mc-pagination button {
  min-height: 26px !important;
  padding: 4px 9px !important;
  border-radius: 999px !important;
  font-size: .76rem !important;
  line-height: 1 !important;
}

body.mc-page .mc-settings-form {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.mc-page .mc-settings-grid {
  align-items: start !important;
  gap: 28px !important;
}

body.mc-page .mc-settings-form input,
body.mc-page .mc-settings-form .mc-input {
  min-height: 38px !important;
  max-width: 420px !important;
}

body.mc-page .mc-subscription-item summary {
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 14px !important;
}

body.mc-page .mc-see-details {
  flex: 0 0 auto !important;
}

body.mc-page .mc-subscription-item .mc-sub-title {
  text-align: left !important;
  margin: 0 !important;
}

body.mc-page .mc-subscription-item .mc-sub-meta {
  margin-left: auto !important;
  text-align: right !important;
}

body.mc-page .mc-admin-layout {
  grid-template-columns: 245px minmax(0, 1fr) !important;
}

body.mc-page .mc-admin-content .mc-card,
body.mc-page .mc-table-wrap {
  overflow-x: auto !important;
}

body.mc-page .mc-admin-products-table {
  min-width: 1180px !important;
}

body.mc-page .mc-admin-products-table input,
body.mc-page .mc-admin-products-table select {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 38px !important;
  margin-bottom: 8px !important;
  box-sizing: border-box !important;
  font-size: .86rem !important;
}

body.mc-page .mc-admin-products-table td {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  vertical-align: top !important;
}

body.mc-page .mc-legal-check a {
  color: #8ef1dd !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

@media (max-width: 760px) {
  body.mc-page .mc-billing-mode {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    width: 100% !important;
  }

  body.mc-page .mc-price-card-pro .mc-discount-badge,
  body.mc-page .mc-price-card-laa .mc-discount-badge {
    top: -13px !important;
    right: 14px !important;
    font-size: .72rem !important;
  }

  body.mc-page .mc-profile-layout,
  body.mc-page .mc-admin-layout {
    grid-template-columns: 1fr !important;
  }
}

/* 2026-06-01 sticky/navigation/pricing/dashboard correction pass */
[hidden] { display: none !important; }

#header,
body.mc-page #header {
  position: sticky !important;
  top: 0 !important;
  z-index: 6000 !important;
  overflow: visible !important;
}

#header .header-container,
body.mc-page #header .header-container,
.mc-shared-header .header-container {
  width: min(1280px, calc(100vw - 36px)) !important;
  max-width: 1280px !important;
  min-height: 66px !important;
  height: 66px !important;
  margin: 0 auto !important;
  padding: 0 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;
  box-sizing: border-box !important;
}

#header .logo,
body.mc-page #header .logo,
.mc-shared-header .logo {
  flex: 0 0 246px !important;
  min-width: 246px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

#header .navmenu,
body.mc-page #header .navmenu,
.mc-shared-header .navmenu {
  flex: 1 1 auto !important;
  display: flex !important;
  justify-content: center !important;
  min-width: 0 !important;
}

#header .navmenu ul,
body.mc-page #header .navmenu ul,
.mc-shared-header .navmenu ul {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
}

#header .header-actions,
body.mc-page #header .header-actions,
.mc-shared-header .header-actions {
  flex: 0 0 390px !important;
  min-width: 390px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  margin-left: 0 !important;
}

#header .btn,
body.mc-page #header .btn,
.mc-shared-header .btn {
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  font-size: .88rem !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.info-dot {
  position: relative !important;
  width: 21px !important;
  height: 21px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin-left: 6px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #061015 !important;
  background: linear-gradient(135deg, #ffc15b, #8ef1dd) !important;
  font-size: .72rem !important;
  font-weight: 950 !important;
  cursor: help !important;
}
.info-dot::after {
  content: attr(data-tip) !important;
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 10px) !important;
  width: min(310px, 78vw) !important;
  padding: 12px 13px !important;
  border-radius: 14px !important;
  background: rgba(10, 12, 18, .98) !important;
  border: 1px solid rgba(142, 241, 221, .28) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.42) !important;
  color: #fffaf0 !important;
  font-size: .78rem !important;
  line-height: 1.45 !important;
  text-align: left !important;
  white-space: normal !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(5px) !important;
  transition: opacity .18s ease, transform .18s ease !important;
  z-index: 100 !important;
}
.info-dot:hover::after,
.info-dot:focus-visible::after { opacity: 1 !important; transform: translateX(-50%) translateY(0) !important; }
.mc-price-list { list-style: none !important; padding-left: 0 !important; }
.mc-price-list li { display: flex !important; align-items: center !important; gap: 7px !important; margin: 7px 0 !important; }
.mc-price-list li::before { content: "✓" !important; flex: 0 0 auto !important; color: #8ef1dd !important; font-weight: 950 !important; }
body.mc-page .mc-price-card-head { min-height: 244px !important; display: flex !important; flex-direction: column !important; align-items: flex-start !important; }
body.mc-page .mc-old-price { margin-top: 8px !important; min-height: 20px !important; }
body.mc-page .mc-price-amount,
body.mc-page .mc-credit-amount { display: flex !important; align-items: baseline !important; gap: 7px !important; flex-wrap: nowrap !important; margin: 8px 0 14px !important; color: #fffaf0 !important; font-size: clamp(2rem, 2.55vw, 2.65rem) !important; line-height: 1 !important; font-weight: 950 !important; }
body.mc-page .mc-credit-amount strong { font-size: 1em !important; }
body.mc-page .mc-credit-amount span,
body.mc-page .mc-price-amount small { font-size: .46em !important; color: #ffd58d !important; white-space: nowrap !important; font-weight: 900 !important; }
body.mc-page .mc-credit-price-line { color: #ffd58d !important; font-weight: 950 !important; font-size: .98rem !important; min-height: 20px !important; margin-top: 0 !important; }
body.mc-page .mc-card-payment-icons { margin: 14px 0 14px !important; display: flex !important; justify-content: center !important; align-items: center !important; gap: 9px !important; min-height: 26px !important; }
body.mc-page .mc-card-payment-icons img { max-height: 21px !important; width: auto !important; }
body.mc-page .mc-trust-card a,
body.mc-page .mc-purchase-note a { color: #8ef1dd !important; text-decoration: underline !important; text-underline-offset: 3px !important; }
body.mc-page .mc-download-primary { background: linear-gradient(135deg, #2458ff 0%, #24a8ff 100%) !important; color: #fff !important; height: 50px !important; min-height: 50px !important; padding: 0 26px !important; border-radius: 999px !important; font-size: .98rem !important; font-weight: 950 !important; line-height: 1 !important; box-shadow: 0 20px 44px rgba(36, 88, 255, .22) !important; }
body.mc-page .mc-download-primary:hover,
body.mc-page .mc-download-secondary:hover,
body.mc-page .mc-download-hero-pro:hover .mc-download-device,
body.mc-page .mc-download-step-grid article:hover,
body.mc-page .mc-info-card:hover { transform: translateY(-3px) scale(1.01) !important; }
body.mc-page .mc-download-hero-pro,
body.mc-page .mc-download-primary,
body.mc-page .mc-download-secondary,
body.mc-page .mc-download-step-grid article,
body.mc-page .mc-info-card { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease !important; }
.legal-page,
body:has(.legal-main) { background: radial-gradient(circle at 0 15%, rgba(243,182,100,.14), transparent 30%), radial-gradient(circle at 100% 18%, rgba(99,230,210,.14), transparent 32%), #07080c !important; min-height: 100vh !important; }
.legal-main { width: 100% !important; max-width: none !important; min-height: calc(100vh - 66px) !important; margin: 0 !important; padding: 56px max(18px, calc((100vw - 1060px)/2)) 86px !important; background: transparent !important; }
.legal-hero,
.legal-list { max-width: 1060px !important; margin-inline: auto !important; }
body.mc-page a.mc-download-primary,
body.mc-page a.mc-download-secondary {
  transform: translateY(0) scale(1) !important;
  transform-origin: center !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease !important;
  will-change: transform !important;
}
body.mc-page a.mc-download-primary:hover,
body.mc-page a.mc-download-secondary:hover,
body.mc-page a.mc-download-primary:focus-visible,
body.mc-page a.mc-download-secondary:focus-visible {
  transform: translateY(-2px) scale(1.02) !important;
  filter: brightness(1.04) !important;
  box-shadow: 0 24px 56px rgba(36, 88, 255, .30) !important;
}
body.mc-page a.mc-download-secondary:hover,
body.mc-page a.mc-download-secondary:focus-visible {
  box-shadow: 0 24px 56px rgba(142, 241, 221, .24), 0 0 0 1px rgba(255,255,255,.08) inset !important;
}

/* 2026-07-10 ABSOLUTE FINAL CTA polish: must remain after legacy global button locks. */
html body.mc-page .mc-pricing-page .plan-card button.btn.mc-purchase-cta,
html body.mc-page .mc-pricing-page .plan-card a.btn.mc-purchase-cta,
html body.marketing-page .mc-pricing-page .plan-card button.btn.mc-purchase-cta,
html body.marketing-page .mc-pricing-page .plan-card a.btn.mc-purchase-cta {
  font-family: "Manrope", "Inter", Arial, sans-serif !important;
  font-size: .98rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 transparent !important;
  text-rendering: geometricPrecision !important;
}

html body.mc-page .mc-pricing-page .plan-card button.btn.mc-purchase-cta *,
html body.mc-page .mc-pricing-page .plan-card a.btn.mc-purchase-cta *,
html body.marketing-page .mc-pricing-page .plan-card button.btn.mc-purchase-cta *,
html body.marketing-page .mc-pricing-page .plan-card a.btn.mc-purchase-cta * {
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 transparent !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta,
html body.mc-page .mc-dashboard-pane .mc-profile-cta,
html body.mc-page .mc-subscription-details .mc-profile-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  height: 50px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  font-family: "Manrope", "Inter", Arial, sans-serif !important;
  font-size: .98rem !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 transparent !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease !important;
  transform: translateY(0) scale(1) !important;
  transform-origin: center !important;
  will-change: transform !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta-primary,
html body.mc-page .mc-dashboard-pane .mc-profile-cta-primary,
html body.mc-page .mc-subscription-details .mc-profile-cta-primary {
  background: linear-gradient(135deg, #ffb33e 0%, #ffd071 44%, #8ef1dd 100%) !important;
  color: #11100b !important;
  box-shadow: 0 18px 44px rgba(255,179,62,.20), 0 10px 30px rgba(142,241,221,.12) !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta-blue,
html body.mc-page .mc-dashboard-pane .mc-profile-cta-blue,
html body.mc-page .mc-subscription-details .mc-profile-cta-blue {
  background: linear-gradient(135deg, #2458ff 0%, #24a8ff 100%) !important;
  color: #fff !important;
  box-shadow: 0 18px 44px rgba(36,88,255,.24) !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta-secondary,
html body.mc-page .mc-dashboard-pane .mc-profile-cta-secondary,
html body.mc-page .mc-subscription-details .mc-profile-cta-secondary {
  background: rgba(255,255,255,.075) !important;
  color: #fffaf0 !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.06) !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta:hover,
html body.mc-page .mc-dashboard-pane .mc-profile-cta:hover,
html body.mc-page .mc-subscription-details .mc-profile-cta:hover,
html body.mc-page .mc-profile-sidebar .mc-profile-cta:focus-visible,
html body.mc-page .mc-dashboard-pane .mc-profile-cta:focus-visible,
html body.mc-page .mc-subscription-details .mc-profile-cta:focus-visible {
  transform: translateY(-2px) scale(1.02) !important;
  filter: brightness(1.045) !important;
}

/* 2026-07-10 conversion accent palette: warmer Buy Plan / View Plans tone without layout changes. */
html body.mc-page,
html body.marketing-page {
  --mc-buy-warm-grad: linear-gradient(135deg, #ff9d00 0%, #ffc15b 46%, #8ef1dd 100%);
  --mc-buy-warm-grad-soft: linear-gradient(135deg, #ffad2f 0%, #ffd071 54%, #98f3df 100%);
  --mc-buy-warm-shadow: 0 18px 42px rgba(255, 157, 0, .24), 0 8px 24px rgba(142, 241, 221, .12);
}

html body.mc-page .mc-billing-mode button.active,
html body.marketing-page .mc-billing-mode button.active,
html body.mc-page .project-tabs button.active,
html body.marketing-page .project-tabs button.active {
  background: var(--mc-buy-warm-grad) !important;
  color: #11100b !important;
  box-shadow: var(--mc-buy-warm-shadow) !important;
}

html body.mc-page .mc-discount-badge,
html body.marketing-page .mc-discount-badge,
html body.mc-page .sales-pricing-grid .plan-card .mc-discount-badge,
html body.marketing-page .sales-pricing-grid .plan-card .mc-discount-badge,
html body.mc-page .plan-card .mc-discount-badge,
html body.marketing-page .plan-card .mc-discount-badge {
  background: var(--mc-buy-warm-grad-soft) !important;
  color: #11100b !important;
  box-shadow: 0 16px 34px rgba(255, 157, 0, .28), 0 8px 22px rgba(142, 241, 221, .13) !important;
}

html body.mc-page .plan-card > span,
html body.marketing-page .plan-card > span,
html body.mc-page .mc-plan-label,
html body.marketing-page .mc-plan-label {
  background: rgba(255, 157, 0, .18) !important;
  color: #ffd38a !important;
  border: 1px solid rgba(255, 193, 91, .18) !important;
}

html body.mc-page a.mc-download-secondary,
html body.marketing-page a.mc-download-secondary,
html body.mc-page .mc-download-secondary,
html body.marketing-page .mc-download-secondary {
  background: var(--mc-buy-warm-grad) !important;
  color: #11100b !important;
  box-shadow: var(--mc-buy-warm-shadow) !important;
}

html body.mc-page a.mc-download-secondary:hover,
html body.marketing-page a.mc-download-secondary:hover,
html body.mc-page a.mc-download-secondary:focus-visible,
html body.marketing-page a.mc-download-secondary:focus-visible {
  box-shadow: 0 24px 56px rgba(255, 157, 0, .30), 0 10px 30px rgba(142, 241, 221, .16) !important;
}

html body.mc-page .mc-download-step-grid article span,
html body.marketing-page .mc-download-step-grid article span,
html body.mc-page .roadmap-path b,
html body.marketing-page .roadmap-path b,
html body.mc-page .info-dot,
html body.marketing-page .info-dot {
  background: var(--mc-buy-warm-grad-soft) !important;
  color: #11100b !important;
  box-shadow: 0 12px 28px rgba(255, 157, 0, .22), 0 6px 16px rgba(142, 241, 221, .12) !important;
}

html body.mc-page .mc-download-step-grid article:hover,
html body.marketing-page .mc-download-step-grid article:hover {
  border-color: rgba(255, 157, 0, .42) !important;
  box-shadow: 0 22px 58px rgba(255, 157, 0, .08) !important;
}

/* 2026-07-10 FINAL CTA polish: dedicated classes beat legacy global 950-weight button locks. */
html body.mc-page .mc-pricing-page .plan-card button.btn.mc-purchase-cta,
html body.mc-page .mc-pricing-page .plan-card a.btn.mc-purchase-cta,
html body.marketing-page .mc-pricing-page .plan-card button.btn.mc-purchase-cta,
html body.marketing-page .mc-pricing-page .plan-card a.btn.mc-purchase-cta {
  font-family: "Manrope", "Inter", Arial, sans-serif !important;
  font-size: .98rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 transparent !important;
  text-rendering: geometricPrecision !important;
}

html body.mc-page .mc-pricing-page .plan-card button.btn.mc-purchase-cta *,
html body.mc-page .mc-pricing-page .plan-card a.btn.mc-purchase-cta *,
html body.marketing-page .mc-pricing-page .plan-card button.btn.mc-purchase-cta *,
html body.marketing-page .mc-pricing-page .plan-card a.btn.mc-purchase-cta * {
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 transparent !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta,
html body.mc-page .mc-dashboard-pane .mc-profile-cta,
html body.mc-page .mc-subscription-details .mc-profile-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  height: 50px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  font-family: "Manrope", "Inter", Arial, sans-serif !important;
  font-size: .98rem !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 transparent !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease !important;
  transform: translateY(0) scale(1) !important;
  transform-origin: center !important;
  will-change: transform !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta-primary,
html body.mc-page .mc-dashboard-pane .mc-profile-cta-primary,
html body.mc-page .mc-subscription-details .mc-profile-cta-primary {
  background: linear-gradient(135deg, #ffb33e 0%, #ffd071 44%, #8ef1dd 100%) !important;
  color: #11100b !important;
  box-shadow: 0 18px 44px rgba(255,179,62,.20), 0 10px 30px rgba(142,241,221,.12) !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta-blue,
html body.mc-page .mc-dashboard-pane .mc-profile-cta-blue,
html body.mc-page .mc-subscription-details .mc-profile-cta-blue {
  background: linear-gradient(135deg, #2458ff 0%, #24a8ff 100%) !important;
  color: #fff !important;
  box-shadow: 0 18px 44px rgba(36,88,255,.24) !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta-secondary,
html body.mc-page .mc-dashboard-pane .mc-profile-cta-secondary,
html body.mc-page .mc-subscription-details .mc-profile-cta-secondary {
  background: rgba(255,255,255,.075) !important;
  color: #fffaf0 !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.06) !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta:hover,
html body.mc-page .mc-dashboard-pane .mc-profile-cta:hover,
html body.mc-page .mc-subscription-details .mc-profile-cta:hover,
html body.mc-page .mc-profile-sidebar .mc-profile-cta:focus-visible,
html body.mc-page .mc-dashboard-pane .mc-profile-cta:focus-visible,
html body.mc-page .mc-subscription-details .mc-profile-cta:focus-visible {
  transform: translateY(-2px) scale(1.02) !important;
  filter: brightness(1.045) !important;
}

/* 2026-07-10 account billing polish: calm empty states, lighter profile CTAs, and pricing CTA typography. */
.mc-alert-info {
  border-color: rgba(127,230,216,.24);
  background: rgba(127,230,216,.08);
  color: #d9fff7;
}

body.mc-page .mc-profile-sidebar .mc-btn,
body.mc-page .mc-dashboard-pane .mc-btn,
body.mc-page .mc-subscription-details .mc-btn {
  min-height: 46px !important;
  border-radius: 999px !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  box-shadow: 0 16px 34px rgba(127,230,216,.12) !important;
}

body.mc-page .mc-profile-sidebar .mc-btn-ghost,
body.mc-page .mc-dashboard-pane .mc-btn-ghost,
body.mc-page .mc-subscription-details .mc-btn-ghost {
  border: 1px solid rgba(255,255,255,.13) !important;
  background: rgba(255,255,255,.055) !important;
  color: #fffaf0 !important;
  box-shadow: none !important;
}

body.mc-page .mc-pricing-page .plan-card .btn,
body.mc-page .mc-pricing-page .plan-card form .btn,
body.mc-page .mc-pricing-page .mc-price-card-foot .btn,
body.marketing-page .mc-pricing-page .plan-card .btn,
body.marketing-page .mc-pricing-page .plan-card form .btn,
body.marketing-page .mc-pricing-page .mc-price-card-foot .btn {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 transparent !important;
}
.mc-confirm-modal[hidden] { display: none !important; }
.mc-confirm-modal { position: fixed !important; inset: 0 !important; z-index: 9999 !important; display: grid !important; place-items: center !important; padding: 20px !important; background: rgba(0,0,0,.68) !important; backdrop-filter: blur(12px) !important; }
.mc-confirm-dialog { width: min(460px, 100%) !important; border: 1px solid rgba(255,255,255,.14) !important; border-radius: 28px !important; padding: 26px !important; background: linear-gradient(135deg, rgba(25,25,31,.98), rgba(13,28,27,.98)) !important; box-shadow: 0 28px 80px rgba(0,0,0,.55) !important; color: #fffaf0 !important; }
.mc-confirm-dialog h2 { margin: 4px 0 8px !important; font-size: 1.7rem !important; }
.mc-confirm-dialog p { color: rgba(255,250,240,.75) !important; line-height: 1.55 !important; }
.mc-confirm-actions { display: flex !important; justify-content: flex-end !important; gap: 10px !important; margin-top: 20px !important; }
body.mc-modal-open { overflow: hidden !important; }
body.mc-page .mc-profile-layout { align-items: start !important; grid-template-columns: 260px minmax(0,1fr) !important; }
body.mc-page .mc-dashboard-sidebar { align-self: start !important; height: auto !important; min-height: 300px !important; max-height: none !important; }
body.mc-page .mc-dashboard-pane { align-self: start !important; min-height: 300px !important; }
body.mc-page .mc-settings-form input,
body.mc-page .mc-settings-form .mc-input { max-width: 330px !important; width: 100% !important; min-height: 40px !important; }
body.mc-page .mc-settings-form { max-width: 360px !important; }
body.mc-page .mc-dashboard-sidebar .mc-btn,
body.mc-page .mc-dashboard-actions .mc-btn,
body.mc-page .mc-dashboard-actions a { height: 50px !important; min-height: 50px !important; padding: 0 24px !important; border-radius: 999px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; font-size: .98rem !important; font-weight: 950 !important; line-height: 1 !important; }
body.mc-page .mc-pagination a,
body.mc-page .mc-pagination span,
body.mc-page .mc-pagination button { min-height: 34px !important; height: 34px !important; padding: 6px 14px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; line-height: 1.05 !important; font-size: .86rem !important; border-radius: 999px !important; }

body.mc-page .mc-price-grid-laa,
body.mc-page .mc-price-grid-three,
.mc-price-grid-laa,
.mc-price-grid-three { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; grid-auto-flow: row dense !important; align-items: stretch !important; }

body.mc-page .mc-price-grid-laa > [hidden],
body.mc-page .mc-price-grid-three > [hidden],
.mc-price-grid-laa > [hidden],
.mc-price-grid-three > [hidden] { display: none !important; }

body.mc-page .mc-pricing-storefront { overflow: visible !important; }

body.legal-page { background: radial-gradient(circle at 0 15%, rgba(243, 182, 100, .14), transparent 30%), radial-gradient(circle at 100% 18%, rgba(99, 230, 210, .14), transparent 32%), linear-gradient(120deg, rgba(33, 20, 12, .82), rgba(5, 10, 12, .95) 42%, rgba(8, 31, 29, .72)) !important; background-attachment: fixed !important; }
body.legal-page .legal-main,
body.legal-page .legal-hero,
body.legal-page .legal-list { background: transparent !important; }
@media (max-width: 980px) {
  #header .header-container, body.mc-page #header .header-container, .mc-shared-header .header-container { width: calc(100vw - 20px) !important; height: auto !important; min-height: 66px !important; flex-wrap: wrap !important; padding: 0 10px !important; gap: 8px !important; }
  #header .logo, body.mc-page #header .logo, .mc-shared-header .logo { flex: 1 1 auto !important; min-width: 0 !important; }
  #header .mobile-nav-toggle, body.mc-page #header .mobile-nav-toggle { display: grid !important; margin-left: auto !important; }
  #header .navmenu, body.mc-page #header .navmenu, .mc-shared-header .navmenu { display: none !important; flex-basis: 100% !important; order: 4 !important; }
  #header .navmenu.open, body.mc-page #header .navmenu.open, .mc-shared-header .navmenu.open { display: block !important; }
  #header .navmenu.open ul, body.mc-page #header .navmenu.open ul, .mc-shared-header .navmenu.open ul { display: grid !important; grid-template-columns: 1fr !important; gap: 6px !important; }
  #header .header-actions, body.mc-page #header .header-actions, .mc-shared-header .header-actions { display: none !important; flex: 1 1 100% !important; min-width: 0 !important; order: 5 !important; }
  body.mc-menu-open #header .header-actions { display: grid !important; grid-template-columns: 1fr !important; }
  body.mc-page .mc-price-card-head { min-height: auto !important; }
  body.mc-page .mc-profile-layout { grid-template-columns: 1fr !important; }
}

#header [hidden],
#header .header-actions [hidden],
body.mc-page #header [hidden],
body.mc-page #header .header-actions [hidden],
.mc-shared-header [hidden],
.mc-shared-header .header-actions [hidden] { display: none !important; }

#header .header-container,
body.mc-page #header .header-container,
.mc-shared-header .header-container { width: min(1360px, calc(100vw - 32px)) !important; max-width: 1360px !important; gap: 12px !important; }

#header .logo,
body.mc-page #header .logo,
.mc-shared-header .logo { flex-basis: 220px !important; min-width: 220px !important; }

#header .navmenu ul,
body.mc-page #header .navmenu ul,
.mc-shared-header .navmenu ul { gap: 14px !important; }

#header .navmenu a,
body.mc-page #header .navmenu a,
.mc-shared-header .navmenu a { font-size: .86rem !important; white-space: nowrap !important; }

#header .header-actions,
body.mc-page #header .header-actions,
.mc-shared-header .header-actions { flex-basis: 370px !important; min-width: 370px !important; gap: 8px !important; }


/* 2026-06-01 final QA lock: shared navigation, buttons, product cards, tooltips */
:root { --mc-header-h: 66px; --mc-action-h: 50px; }
body { padding-top: var(--mc-header-h) !important; }
#header, body.mc-page #header, .mc-shared-header {
  position: fixed !important; inset: 0 0 auto 0 !important; width: 100% !important;
  min-height: var(--mc-header-h) !important; height: var(--mc-header-h) !important; z-index: 9000 !important;
  display: flex !important; align-items: center !important; overflow: visible !important;
  background: rgba(6, 7, 10, .94) !important; border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.22) !important; backdrop-filter: blur(18px) !important;
}
#header .header-container, body.mc-page #header .header-container, .mc-shared-header .header-container {
  width: min(1280px, calc(100vw - 36px)) !important; max-width: 1280px !important;
  min-height: var(--mc-header-h) !important; height: var(--mc-header-h) !important; margin: 0 auto !important;
  padding: 0 18px !important; display: flex !important; align-items: center !important; gap: 18px !important;
  flex-wrap: nowrap !important; box-sizing: border-box !important;
}
#header .logo, body.mc-page #header .logo, .mc-shared-header .logo {
  flex: 0 0 246px !important; min-width: 246px !important; height: 46px !important; display: flex !important;
  align-items: center !important; gap: 10px !important; text-decoration: none !important;
}
#header .logo img, body.mc-page #header .logo img, .mc-shared-header .logo img { width: 36px !important; height: 36px !important; flex: 0 0 36px !important; }
#header .logo .sitename, body.mc-page #header .logo .sitename, .mc-shared-header .logo .sitename { margin: 0 !important; font-size: 1.28rem !important; line-height: 1 !important; letter-spacing: -.04em !important; white-space: nowrap !important; }
#header .navmenu, body.mc-page #header .navmenu, .mc-shared-header .navmenu { flex: 1 1 auto !important; display: flex !important; justify-content: center !important; min-width: 0 !important; }
#header .navmenu ul, body.mc-page #header .navmenu ul, .mc-shared-header .navmenu ul { display: flex !important; align-items: center !important; justify-content: center !important; gap: 18px !important; flex-wrap: nowrap !important; margin: 0 !important; padding: 0 !important; list-style: none !important; }
#header .navmenu a, body.mc-page #header .navmenu a, .mc-shared-header .navmenu a { font-size: .86rem !important; font-weight: 900 !important; line-height: 1 !important; white-space: nowrap !important; padding: 12px 0 !important; text-decoration: none !important; }
#header .navmenu a.active, body.mc-page #header .navmenu a.active, .mc-shared-header .navmenu a.active { padding: 11px 14px !important; border-radius: 12px !important; }
#header .header-actions, body.mc-page #header .header-actions, .mc-shared-header .header-actions { flex: 0 0 390px !important; min-width: 390px !important; display: flex !important; align-items: center !important; justify-content: flex-end !important; gap: 10px !important; margin: 0 !important; }
#header .btn, body.mc-page #header .btn, .mc-shared-header .btn { height: 36px !important; min-height: 36px !important; padding: 0 16px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; border-radius: 999px !important; line-height: 1 !important; font-size: .88rem !important; font-weight: 950 !important; white-space: nowrap !important; letter-spacing: -.01em !important; }
.btn:not(#header .btn), .mc-btn, button.mc-btn, a.mc-btn, .hero-actions .btn, .plan-card .btn, .mc-price-card-foot .mc-btn, body.mc-page .mc-dashboard-sidebar .mc-btn, body.mc-page .mc-dashboard-actions .mc-btn, body.mc-page .mc-dashboard-actions a, body.mc-page .mc-settings-form .mc-btn, body.mc-page .mc-download-primary, body.mc-page .mc-download-secondary {
  min-height: var(--mc-action-h) !important; height: var(--mc-action-h) !important; padding: 0 26px !important; border-radius: 999px !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important;
  font-size: .98rem !important; font-weight: 950 !important; line-height: 1 !important; letter-spacing: -.012em !important;
  white-space: nowrap !important; text-decoration: none !important;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease !important;
}
[data-promo-only] { display: none !important; }
body.mc-promo-active [data-promo-only] { display: inline-flex !important; }
body.mc-promo-active p[data-promo-only] { display: flex !important; }
.plan-card, .laa-plan, .mc-price-card-laa, .mc-price-card-pro { overflow: visible !important; display: flex !important; flex-direction: column !important; }
.plan-card h3, .mc-price-card-pro h3 { min-height: 2.15em !important; margin-bottom: 14px !important; }
.plan-old-line, .mc-old-price { min-height: 22px !important; margin: 4px 0 4px !important; color: rgba(255,250,240,.62) !important; font-size: .95rem !important; font-weight: 900 !important; line-height: 1.2 !important; }
.plan-old-line .old-price, .old-price, .mc-old-price { text-decoration: line-through !important; color: rgba(255,250,240,.48) !important; }
.plan-old-line strong, .mc-credit-price-line { color: #ffd58d !important; font-weight: 950 !important; margin-left: 8px !important; }
.plan-price, .mc-price-amount, .mc-credit-amount { display: flex !important; align-items: baseline !important; gap: 8px !important; margin: 8px 0 14px !important; color: #fffaf0 !important; font-size: clamp(2.1rem, 2.75vw, 3.05rem) !important; line-height: 1 !important; font-weight: 950 !important; letter-spacing: -.055em !important; white-space: nowrap !important; }
.plan-price strong, .mc-price-amount strong, .mc-credit-amount strong { font: inherit !important; color: inherit !important; }
.plan-price small, .mc-price-amount small, .mc-credit-amount span, .plan-credit-price small { font-size: .44em !important; line-height: 1 !important; color: #ffd58d !important; font-weight: 950 !important; letter-spacing: -.02em !important; white-space: nowrap !important; }
.plan-credit-price { color: #fffaf0 !important; }
.mc-price-card-head { min-height: 252px !important; display: flex !important; flex-direction: column !important; align-items: flex-start !important; }
.mc-credit-price-line { min-height: 22px !important; font-size: .95rem !important; margin: 4px 0 4px !important; }
.mc-price-list li::before { content: "?" !important; color: #8ef1dd !important; }
.info-dot { position: relative !important; z-index: 20 !important; width: 21px !important; height: 21px !important; display: inline-grid !important; place-items: center !important; margin-left: 6px !important; border: 0 !important; border-radius: 999px !important; color: #061015 !important; background: linear-gradient(135deg, #ffc15b, #8ef1dd) !important; font-size: .72rem !important; font-weight: 950 !important; cursor: pointer !important; flex: 0 0 21px !important; }
.info-dot::after { content: attr(data-tip) !important; position: absolute !important; left: 50% !important; bottom: calc(100% + 10px) !important; width: min(320px, 80vw) !important; padding: 12px 14px !important; border-radius: 14px !important; background: rgba(10,12,18,.98) !important; border: 1px solid rgba(142,241,221,.30) !important; box-shadow: 0 18px 44px rgba(0,0,0,.48) !important; color: #fffaf0 !important; font-size: .8rem !important; line-height: 1.45 !important; text-align: left !important; white-space: normal !important; opacity: 0 !important; pointer-events: none !important; transform: translateX(-50%) translateY(5px) !important; transition: opacity .18s ease, transform .18s ease !important; z-index: 999 !important; }
.info-dot:hover::after, .info-dot:focus-visible::after, .info-dot.is-open::after { opacity: 1 !important; transform: translateX(-50%) translateY(0) !important; }
.pricing-preview-grid, .sales-pricing-grid, .mc-pricing-storefront, .mc-price-grid-laa, .mc-price-grid-three { overflow: visible !important; }
.mc-auth-wrap h1 { font-size: clamp(2rem, 4.6vw, 3.45rem) !important; white-space: nowrap !important; }
.mc-legal-check { margin-bottom: 18px !important; }
.mc-auth-legal-note { color: rgba(255,250,240,.68) !important; font-size: .9rem !important; line-height: 1.45 !important; }
.mc-auth-legal-note a { color: #8ef1dd !important; text-decoration: underline !important; }
@media (max-width: 980px) {
  body { padding-top: var(--mc-header-h) !important; }
  #header .header-container, body.mc-page #header .header-container, .mc-shared-header .header-container { width: calc(100vw - 20px) !important; height: auto !important; min-height: var(--mc-header-h) !important; flex-wrap: wrap !important; padding: 0 10px !important; gap: 8px !important; }
  #header, body.mc-page #header, .mc-shared-header { height: auto !important; min-height: var(--mc-header-h) !important; }
  #header .logo, body.mc-page #header .logo, .mc-shared-header .logo { flex: 1 1 auto !important; min-width: 0 !important; }
  #header .mobile-nav-toggle, body.mc-page #header .mobile-nav-toggle { display: grid !important; margin-left: auto !important; }
  #header .navmenu, body.mc-page #header .navmenu, .mc-shared-header .navmenu { display: none !important; flex-basis: 100% !important; order: 4 !important; }
  #header .navmenu.open, body.mc-page #header .navmenu.open, .mc-shared-header .navmenu.open { display: block !important; }
  #header .navmenu.open ul, body.mc-page #header .navmenu.open ul, .mc-shared-header .navmenu.open ul { display: grid !important; grid-template-columns: 1fr !important; gap: 6px !important; }
  #header .header-actions, body.mc-page #header .header-actions, .mc-shared-header .header-actions { display: none !important; flex: 1 1 100% !important; min-width: 0 !important; order: 5 !important; }
  body.mc-menu-open #header .header-actions { display: grid !important; grid-template-columns: 1fr !important; }
  .mc-price-card-head { min-height: auto !important; }
}


/* 2026-06-01 final QA micro-fix */
.mc-price-list li::before { content: "\2713" !important; }
.plan-card .payment-icons,
.mc-card-payment-icons { margin-top: auto !important; }
.plan-card > .btn,
.mc-price-card-foot { margin-top: 18px !important; }
.mc-price-card-foot .mc-btn-full { width: 100% !important; }
body.mc-page .mc-settings-form .mc-btn,
body.mc-page .mc-dashboard-sidebar .mc-btn,
body.mc-page .mc-dashboard-actions .mc-btn,
body.mc-page .mc-dashboard-actions a { font-family: "Manrope", sans-serif !important; }

/* 2026-06-01 QA hard lock: exact product card and button consistency */
.mc-price-list li::before,
.plan-card li::before { content: "\2713" !important; color: #8ef1dd !important; }
.plan-card,
.mc-price-card-pro {
  min-height: 584px !important;
}
.plan-card h3,
.mc-price-card-pro h3 {
  min-height: 58px !important;
  display: flex !important;
  align-items: flex-start !important;
}
.plan-old-line,
.mc-old-price {
  min-height: 23px !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
}
.mc-price-card-pro .mc-old-price + .mc-credit-price-line {
  color: #ffd58d !important;
  font-size: .98rem !important;
  font-weight: 950 !important;
  min-height: 23px !important;
  margin: 0 0 5px !important;
}
.mc-price-card-pro .mc-credit-amount,
.plan-card .plan-credit-price {
  margin-top: 4px !important;
  margin-bottom: 16px !important;
}
.mc-price-card-pro .mc-credit-amount strong,
.plan-card .plan-credit-price strong {
  font-size: inherit !important;
}
.mc-price-card-pro .mc-credit-amount span,
.plan-card .plan-credit-price small {
  align-self: baseline !important;
  margin: 0 !important;
}
.mc-price-card-pro .mc-product-copy,
.plan-card .plan-copy {
  min-height: 48px !important;
}
.mc-price-card-pro .mc-card-payment-icons,
.plan-card .payment-icons {
  margin-top: auto !important;
  margin-bottom: 18px !important;
}
.mc-price-card-pro .mc-price-card-foot,
.plan-card > .btn {
  margin-top: 0 !important;
}
#header .btn,
body.mc-page #header .btn,
.mc-shared-header .btn {
  background-clip: padding-box !important;
  overflow: hidden !important;
}
body.mc-page .mc-settings-form .mc-btn,
body.mc-page .mc-dashboard-sidebar .mc-btn,
body.mc-page .mc-dashboard-actions .mc-btn,
body.mc-page .mc-dashboard-actions a,
body.mc-page .mc-download-primary,
body.mc-page .mc-download-secondary {
  font-family: "Manrope", sans-serif !important;
  min-width: 160px !important;
}
.mc-auth-wrap .mc-btn,
.mc-auth-wrap button.mc-btn {
  font-family: "Manrope", sans-serif !important;
}

/* 2026-06-01 navigation final lock */
body > #header,
body.mc-page > #header,
header#header,
.mc-shared-header {
  position: sticky !important;
  top: 0 !important;
  inset: auto !important;
  width: 100% !important;
  z-index: 2147483000 !important;
  transform: translateZ(0) !important;
}
body { padding-top: 0 !important; }
html { scroll-padding-top: var(--mc-header-h) !important; }
.mc-price-card-pro .mc-price-card-head,
.plan-card {
  align-items: stretch !important;
}
.mc-price-card-pro .mc-price-card-head > *,
.plan-card > * {
  flex-shrink: 0 !important;
}
.mc-price-card-pro .mc-credit-price-line {
  margin-left: 0 !important;
}

/* 2026-06-01 QA final correction: truly persistent nav and promo-only visibility */
body { padding-top: var(--mc-header-h) !important; }
body > #header,
body.mc-page > #header,
header#header,
.mc-shared-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  inset: 0 0 auto 0 !important;
  width: 100% !important;
  z-index: 2147483000 !important;
}
body:not(.mc-promo-active) [data-promo-only],
body:not(.mc-promo-active) .plan-card [data-promo-only],
body:not(.mc-promo-active) .sales-pricing-grid [data-promo-only] {
  display: none !important;
  visibility: hidden !important;
}
body.mc-promo-active [data-promo-only] {
  visibility: visible !important;
}
body.mc-promo-active .mc-discount-badge[data-promo-only] {
  display: inline-flex !important;
}
body.mc-promo-active p[data-promo-only] {
  display: flex !important;
}

/* 2026-06-01 QA final polish: clean product list markers */
.plan-card ul,
.mc-price-list {
  list-style: none !important;
  padding-left: 0 !important;
}
.plan-card li,
.mc-price-list li {
  list-style: none !important;
  padding-left: 0 !important;
}

/* 2026-06-01 QA pricing alignment with homepage cards */
.mc-price-card-pro .mc-price-card-head {
  min-height: 218px !important;
}
.mc-price-card-pro h3 {
  min-height: 44px !important;
}
.mc-price-card-pro .mc-product-copy {
  margin-top: 4px !important;
  text-align: left !important;
}


/* 2026-06-01 QA pricing alignment with homepage cards */
.mc-price-card-pro .mc-price-card-head {
  min-height: 218px !important;
}
.mc-price-card-pro h3 {
  min-height: 44px !important;
}
.mc-price-card-pro .mc-product-copy {
  margin-top: 4px !important;
  text-align: left !important;
}

/* 2026-06-01 QA pricing spacing lock */
body.mc-page .mc-price-card-pro .mc-price-card-head {
  min-height: 204px !important;
}
body.mc-page .mc-price-card-pro {
  min-height: 560px !important;
}
body.mc-page .mc-price-card-pro .mc-product-copy {
  margin-top: 0 !important;
}

/* 2026-06-01 NAV 1:1 LOCK - index and PHP pages share the same header geometry */
body.marketing-page,
body.mc-page {
  --mc-header-h: 66px;
  padding-top: var(--mc-header-h) !important;
}
body.marketing-page > #header,
body.mc-page > #header,
body > #header,
header#header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  inset: 0 0 auto 0 !important;
  width: 100% !important;
  height: var(--mc-header-h) !important;
  min-height: var(--mc-header-h) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
  background: rgba(6, 7, 10, .94) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.22) !important;
  backdrop-filter: blur(18px) !important;
  z-index: 2147483000 !important;
}
body.marketing-page > #header .header-container,
body.mc-page > #header .header-container,
body > #header .header-container {
  width: min(1280px, calc(100vw - 36px)) !important;
  max-width: 1280px !important;
  height: var(--mc-header-h) !important;
  min-height: var(--mc-header-h) !important;
  margin: 0 auto !important;
  padding: 0 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;
  box-sizing: border-box !important;
}
body.marketing-page > #header .logo,
body.mc-page > #header .logo,
body > #header .logo {
  flex: 0 0 246px !important;
  min-width: 246px !important;
  height: 46px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}
body.marketing-page > #header .logo img,
body.mc-page > #header .logo img,
body > #header .logo img {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  display: block !important;
}
body.marketing-page > #header .logo .sitename,
body.mc-page > #header .logo .sitename,
body > #header .logo .sitename {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 1.28rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: -.04em !important;
  color: #fffaf0 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}
body.marketing-page > #header .navmenu,
body.mc-page > #header .navmenu,
body > #header .navmenu {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
body.marketing-page > #header .navmenu ul,
body.mc-page > #header .navmenu ul,
body > #header .navmenu ul {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.marketing-page > #header .navmenu li,
body.mc-page > #header .navmenu li,
body > #header .navmenu li {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.marketing-page > #header .navmenu a,
body.mc-page > #header .navmenu a,
body > #header .navmenu a {
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  font-family: "Manrope", sans-serif !important;
  font-size: .86rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: -.01em !important;
  color: rgba(255,250,240,.72) !important;
  background: transparent !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transform: none !important;
}
body.marketing-page > #header .navmenu a.active,
body.mc-page > #header .navmenu a.active,
body > #header .navmenu a.active,
body.marketing-page > #header .navmenu a:hover,
body.mc-page > #header .navmenu a:hover,
body > #header .navmenu a:hover {
  padding: 0 14px !important;
  color: #fffaf0 !important;
  background: rgba(255,255,255,.08) !important;
}
body.marketing-page > #header .header-actions,
body.mc-page > #header .header-actions,
body > #header .header-actions {
  flex: 0 0 390px !important;
  min-width: 390px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.marketing-page > #header .btn,
body.mc-page > #header .btn,
body > #header .btn {
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-family: "Manrope", sans-serif !important;
  font-size: .88rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: -.01em !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: hidden !important;
  background-clip: padding-box !important;
}
body.marketing-page > #header .btn-warm,
body.mc-page > #header .btn-warm,
body > #header .btn-warm {
  background: linear-gradient(135deg,#ff9d00,#ffc26f 48%,#8ef1dd) !important;
  color: #111 !important;
}
body.marketing-page > #header .btn-blue,
body.mc-page > #header .btn-blue,
body > #header .btn-blue {
  background: linear-gradient(135deg,#1957f5,#2f7dff 55%,#74d4ff) !important;
  color: #fff !important;
}
body.marketing-page > #header .btn-cyan,
body.mc-page > #header .btn-cyan,
body.marketing-page > #header .btn-profile,
body.mc-page > #header .btn-profile,
body > #header .btn-cyan,
body > #header .btn-profile {
  background: linear-gradient(135deg,#0284c7,#22b7ea) !important;
  color: #fff !important;
}
body.marketing-page > #header .btn-ghost,
body.mc-page > #header .btn-ghost,
body > #header .btn-ghost {
  background: rgba(255,255,255,.075) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.14) !important;
}
body.marketing-page > #header .btn.active,
body.mc-page > #header .btn.active,
body > #header .btn.active {
  filter: none !important;
  outline: none !important;
}

/* 2026-06-01 NAV VISIBILITY + NO-SHRINK PATCH */
body.marketing-page > #header [hidden],
body.mc-page > #header [hidden],
body > #header [hidden] {
  display: none !important;
}
body.marketing-page > #header .btn,
body.mc-page > #header .btn,
body > #header .btn {
  flex: 0 0 auto !important;
}
body.marketing-page > #header .header-actions,
body.mc-page > #header .header-actions,
body > #header .header-actions {
  overflow: visible !important;
}

/* 2026-06-01 NAV SPECIFICITY PATCH - beat older account header action rules */
body.marketing-page > #header,
body.mc-page > #header,
body > #header {
  box-sizing: border-box !important;
}
body.marketing-page > #header .header-actions .btn,
body.mc-page > #header .header-actions .btn,
body > #header .header-actions .btn,
body.marketing-page > #header a.btn,
body.mc-page > #header a.btn,
body > #header a.btn {
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-family: "Manrope", sans-serif !important;
  font-size: .88rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: -.01em !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  flex: 0 0 auto !important;
  box-sizing: border-box !important;
}

/* 2026-06-01 FINAL HIDDEN WINS */
body.marketing-page > #header a[hidden],
body.mc-page > #header a[hidden],
body > #header a[hidden],
#header a[hidden] {
  display: none !important;
}

/* 2026-06-01 ABSOLUTE FINAL: hidden header buttons must not consume layout */
body.marketing-page > #header .header-actions a.btn[hidden],
body.mc-page > #header .header-actions a.btn[hidden],
body > #header .header-actions a.btn[hidden],
#header .header-actions a.btn[hidden] {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

/* 2026-06-01 PIXEL MATCH PATCH */
body.marketing-page > #header .logo .sitename,
body.mc-page > #header .logo .sitename,
body > #header .logo .sitename {
  width: 129px !important;
  flex: 0 0 129px !important;
}
body.marketing-page > #header .navmenu a.active,
body.mc-page > #header .navmenu a.active,
body > #header .navmenu a.active {
  width: 66px !important;
  min-width: 66px !important;
  box-sizing: border-box !important;
}
body.marketing-page > #header .btn-warm,
body.mc-page > #header .btn-warm,
body > #header .btn-warm { width: 90px !important; min-width: 90px !important; }
body.marketing-page > #header .btn-blue,
body.mc-page > #header .btn-blue,
body > #header .btn-blue { width: 129px !important; min-width: 129px !important; }
body.marketing-page > #header .btn-cyan,
body.mc-page > #header .btn-cyan,
body.marketing-page > #header .btn-profile,
body.mc-page > #header .btn-profile,
body > #header .btn-cyan,
body > #header .btn-profile { width: 90px !important; min-width: 90px !important; }
body.marketing-page > #header .btn-ghost,
body.mc-page > #header .btn-ghost,
body > #header .btn-ghost { width: 74px !important; min-width: 74px !important; }

/* Shared auth button guard: update this for every page when auth nav labels change; never fix only login.php, privacy.php, or one legal subpage. */
body.marketing-page > #header .header-actions,
body.mc-page > #header .header-actions,
body > #header .header-actions {
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  flex-wrap: nowrap !important;
  justify-content: flex-end !important;
  overflow: visible !important;
}
body.marketing-page > #header .header-actions .btn-ghost,
body.mc-page > #header .header-actions .btn-ghost,
body > #header .header-actions .btn-ghost {
  width: auto !important;
  min-width: 74px !important;
  max-width: none !important;
  padding-inline: 16px !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  overflow: visible !important;
}
body.marketing-page > #header .header-actions .btn-auth-combo,
body.mc-page > #header .header-actions .btn-auth-combo,
body > #header .header-actions .btn-auth-combo {
  min-width: 142px !important;
  padding-inline: 18px !important;
}
body.marketing-page > #header .header-actions .btn-logout,
body.mc-page > #header .header-actions .btn-logout,
body > #header .header-actions .btn-logout {
  min-width: 74px !important;
  padding-inline: 16px !important;
}

/* 2026-06-01 PHP header optical alignment to index.html */
body.mc-page > #header .navmenu {
  transform: translateX(-2px) !important;
}

/* 2026-07-09 desktop download buttons lock: keep installer and ZIP hover identical on desktop. */
body.mc-page a.mc-download-primary,
body.mc-page a.mc-download-secondary {
  transform: translateY(0) scale(1) !important;
  transform-origin: center !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease !important;
  will-change: transform !important;
}

body.mc-page a.mc-download-primary:hover,
body.mc-page a.mc-download-secondary:hover,
body.mc-page a.mc-download-primary:focus-visible,
body.mc-page a.mc-download-secondary:focus-visible {
  transform: translateY(-2px) scale(1.02) !important;
  filter: brightness(1.04) !important;
}

body.mc-page a.mc-download-primary:hover,
body.mc-page a.mc-download-primary:focus-visible {
  box-shadow: 0 24px 56px rgba(36, 88, 255, .30) !important;
}

body.mc-page a.mc-download-secondary:hover,
body.mc-page a.mc-download-secondary:focus-visible {
  box-shadow: 0 24px 56px rgba(142, 241, 221, .24), 0 0 0 1px rgba(255,255,255,.08) inset !important;
}

/* 2026-07-10 ABSOLUTE END: pricing/profile CTA rules must stay last in account.css. */
html body.mc-page .mc-pricing-page .plan-card button.btn.mc-purchase-cta,
html body.mc-page .mc-pricing-page .plan-card a.btn.mc-purchase-cta,
html body.marketing-page .mc-pricing-page .plan-card button.btn.mc-purchase-cta,
html body.marketing-page .mc-pricing-page .plan-card a.btn.mc-purchase-cta {
  font-family: "Manrope", "Inter", Arial, sans-serif !important;
  font-size: .98rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 transparent !important;
  text-rendering: geometricPrecision !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta,
html body.mc-page .mc-dashboard-pane .mc-profile-cta,
html body.mc-page .mc-subscription-details .mc-profile-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  height: 50px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  font-family: "Manrope", "Inter", Arial, sans-serif !important;
  font-size: .98rem !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 transparent !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease !important;
  transform: translateY(0) scale(1) !important;
  transform-origin: center !important;
  will-change: transform !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta-primary,
html body.mc-page .mc-dashboard-pane .mc-profile-cta-primary,
html body.mc-page .mc-subscription-details .mc-profile-cta-primary {
  background: linear-gradient(135deg, #ffb33e 0%, #ffd071 44%, #8ef1dd 100%) !important;
  color: #11100b !important;
  box-shadow: 0 18px 44px rgba(255,179,62,.20), 0 10px 30px rgba(142,241,221,.12) !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta-blue,
html body.mc-page .mc-dashboard-pane .mc-profile-cta-blue,
html body.mc-page .mc-subscription-details .mc-profile-cta-blue {
  background: linear-gradient(135deg, #2458ff 0%, #24a8ff 100%) !important;
  color: #fff !important;
  box-shadow: 0 18px 44px rgba(36,88,255,.24) !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta-secondary,
html body.mc-page .mc-dashboard-pane .mc-profile-cta-secondary,
html body.mc-page .mc-subscription-details .mc-profile-cta-secondary {
  background: rgba(255,255,255,.075) !important;
  color: #fffaf0 !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.06) !important;
}

html body.mc-page .mc-profile-sidebar .mc-profile-cta:hover,
html body.mc-page .mc-dashboard-pane .mc-profile-cta:hover,
html body.mc-page .mc-subscription-details .mc-profile-cta:hover,
html body.mc-page .mc-profile-sidebar .mc-profile-cta:focus-visible,
html body.mc-page .mc-dashboard-pane .mc-profile-cta:focus-visible,
html body.mc-page .mc-subscription-details .mc-profile-cta:focus-visible {
  transform: translateY(-2px) scale(1.02) !important;
  filter: brightness(1.045) !important;
}
