/*
Theme Name: MPN2 Redesign
Theme URI: https://mpnstage.wpengine.com
Author: MPN2 Engineering
Description: WordPress theme conversion of the MPN2 public redesign for WP Engine staging.
Version: 0.3.1
Requires at least: 6.0
Tested up to: 6.6
Text Domain: mpn2-redesign
*/

:root {
  --mpn-blue: #245cf2;
  --mpn-deep: #071947;
  --mpn-ink: #0f172a;
  --mpn-muted: #5f6f89;
  --mpn-line: #dbe3ef;
  --mpn-soft: #f4f8ff;
  --mpn-white: #ffffff;
  --mpn-gold: #d4af37;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f8fafc;
  color: var(--mpn-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.mpn-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.mpn-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(27, 29, 143, 0.96);
  color: white;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px -36px rgba(15, 23, 42, 0.5);
}

.mpn-header__utility {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.mpn-header__utility-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mpn-header__utility-left,
.mpn-header__quick-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mpn-header__quick-label,
.mpn-header__quick-links a,
.mpn-header__current {
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mpn-header__quick-label {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(219, 234, 254, 0.8);
  padding: 7px 11px;
}

.mpn-header__quick-links a {
  color: rgba(219, 234, 254, 0.75);
  padding: 7px 10px;
}

.mpn-header__quick-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.mpn-header__current {
  color: rgba(219, 234, 254, 0.65);
}

.mpn-header__bar {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mpn-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mpn-logo img {
  width: 72px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
}

.mpn-header__desktop {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 16px;
  justify-content: flex-end;
  min-width: 0;
}

.mpn-mega-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.mpn-mega-item {
  position: relative;
}

.mpn-mega-item::after {
  position: fixed;
  top: 104px;
  right: 0;
  left: 0;
  display: none;
  height: 18px;
  content: "";
}

.mpn-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(219, 234, 254, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.mpn-mega-trigger:hover,
.mpn-mega-item:focus-within .mpn-mega-trigger,
.mpn-mega-item:hover .mpn-mega-trigger {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.mpn-mega-trigger span {
  font-size: 15px;
  line-height: 1;
}

.mpn-mega-panel {
  position: fixed;
  top: 116px;
  right: 0;
  left: 0;
  display: block;
  visibility: hidden;
  max-height: calc(100vh - 116px);
  overflow-y: auto;
  border-top: 1px solid #e2e8f0;
  background: white;
  color: var(--mpn-ink);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 30px 80px -40px rgba(15, 23, 42, 0.55);
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.mpn-mega-item:hover .mpn-mega-panel,
.mpn-mega-item:focus-within .mpn-mega-panel,
.mpn-mega-item.is-active .mpn-mega-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mpn-mega-item:hover::after,
.mpn-mega-item:focus-within::after,
.mpn-mega-item.is-active::after {
  display: block;
}

.mpn-mega-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 320px;
  gap: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.mpn-mega-panel__sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mpn-mega-section,
.mpn-mega-feature {
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
  padding: 24px;
}

.mpn-mega-section > p,
.mpn-mega-feature > p {
  margin: 0 0 16px;
  color: #1b1d8f;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mpn-mega-link-list {
  display: grid;
  gap: 14px;
}

.mpn-mega-link-list a {
  display: block;
  border: 1px solid rgba(219, 227, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
}

.mpn-mega-link-list a:hover {
  border-color: rgba(36, 92, 242, 0.28);
  background: white;
}

.mpn-mega-link-list strong {
  display: block;
  color: var(--mpn-ink);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0;
}

.mpn-mega-link-list span,
.mpn-mega-feature span {
  display: block;
  margin-top: 7px;
  color: var(--mpn-muted);
  font-size: 14px;
  line-height: 1.6;
}

.mpn-mega-feature {
  background: linear-gradient(180deg, #eef5ff 0%, #dbeafe 100%);
  box-shadow: 0 24px 60px -36px rgba(37, 99, 235, 0.32);
}

.mpn-mega-feature h2 {
  margin: 0;
  color: var(--mpn-ink);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: 0;
}

.mpn-mega-feature a {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(36, 92, 242, 0.16);
  border-radius: 999px;
  background: white;
  color: var(--mpn-blue);
  font-size: 14px;
  font-weight: 800;
  padding: 11px 18px;
}

.mpn-header-search {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 44px;
  flex: 0 0 44px;
  transition: width 180ms ease;
}

.mpn-header-search:focus-within {
  width: 210px;
  flex-basis: 210px;
}

.mpn-header-search input {
  width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  padding: 10px 42px 10px 16px;
  transition: width 180ms ease, opacity 160ms ease, background 160ms ease;
}

.mpn-header-search:focus-within input {
  width: 210px;
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.mpn-header-search input::placeholder {
  color: rgba(219, 234, 254, 0.72);
}

.mpn-header-search__button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.mpn-header-search__button span {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid white;
  border-radius: 999px;
}

.mpn-header-search__button span::after {
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 7px;
  height: 2px;
  background: white;
  border-radius: 999px;
  content: "";
  transform: rotate(45deg);
}

.mpn-header__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mpn-header-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.2;
  padding: 10px 18px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.mpn-header-button--outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.mpn-header-button--solid {
  border: 1px solid white;
  background: white;
  color: #1b1d8f;
}

.mpn-menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 12px 16px;
  text-transform: uppercase;
}

.mpn-mobile-panel {
  display: none;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.mpn-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 96px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 48%, #ffffff 100%);
}

.mpn-hero::before {
  content: "";
  position: absolute;
  inset: -18% auto auto -12%;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: rgba(36, 92, 242, 0.12);
  filter: blur(44px);
}

.mpn-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -22%;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.34);
  filter: blur(50px);
}

.mpn-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 410px);
  align-items: center;
  gap: 56px;
}

.mpn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(36, 92, 242, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px -32px rgba(15, 23, 42, 0.4);
  color: var(--mpn-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.mpn-hero h1 {
  max-width: 11.7ch;
  margin: 16px 0 0;
  color: var(--mpn-ink);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
}

.mpn-hero__tagline {
  max-width: 620px;
  margin: 18px 0 0;
  color: #0f3c8a;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.14;
}

.mpn-hero__copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--mpn-muted);
  font-size: 20px;
  line-height: 1.65;
}

.mpn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.mpn-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.16em;
  padding: 15px 24px;
  text-transform: uppercase;
}

.mpn-button--primary {
  background: var(--mpn-blue);
  color: white;
}

.mpn-button--secondary {
  border-color: #cbd5e1;
  background: white;
  color: var(--mpn-ink);
}

.mpn-awards-pill {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  max-width: 460px;
  min-height: 86px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(250, 204, 21, 0.74);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.92) 0 7%, transparent 8%),
    radial-gradient(circle at 92% 22%, rgba(250, 250, 210, 0.9) 0 8%, transparent 9%),
    linear-gradient(135deg, #fff8c7 0%, #facc15 34%, #d4af37 62%, #8a6a12 100%);
  box-shadow: 0 28px 70px -34px rgba(85, 60, 8, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  color: #111827;
  padding: 13px 16px 13px 13px;
}

.mpn-awards-pill__mark {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: end center;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 50% 38%, #fff9b8 0 18%, transparent 19%),
    linear-gradient(145deg, #fff3a3 0%, #facc15 42%, #b88912 100%);
  color: #2b2104;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  padding-bottom: 11px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.mpn-awards-pill__star {
  position: absolute;
  top: 10px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  clip-path: polygon(50% 0%, 61% 34%, 98% 34%, 68% 55%, 79% 91%, 50% 70%, 21% 91%, 32% 55%, 2% 34%, 39% 34%);
}

.mpn-awards-pill__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.mpn-awards-pill strong,
.mpn-awards-pill small {
  display: block;
  letter-spacing: 0;
  line-height: 1.2;
}

.mpn-awards-pill strong {
  color: #111827;
  font-size: 19px;
  font-weight: 950;
}

.mpn-awards-pill small {
  margin-top: 5px;
  color: rgba(17, 24, 39, 0.82);
  font-size: 13px;
  font-weight: 950;
}

.mpn-awards-pill__arrow {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 999px;
  background: #111827;
  color: #fde68a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.mpn-awards-pill__shine {
  position: absolute;
  inset: -60% auto -60% 18%;
  width: 92px;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(2px);
  transform: rotate(18deg);
}

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

.mpn-awards-pill::before {
  right: -34px;
  bottom: -46px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(255, 255, 255, 0.2);
}

.mpn-awards-pill::after {
  top: 10px;
  right: 72px;
  width: 8px;
  height: 8px;
  background: #ffffff;
  box-shadow: 22px 18px 0 rgba(255, 255, 255, 0.72), -26px 30px 0 rgba(255, 255, 255, 0.54);
}

.mpn-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.mpn-stat {
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 38px -34px rgba(15, 23, 42, 0.38);
  padding: 20px;
}

.mpn-stat__icon {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 999px;
  background: rgba(36, 92, 242, 0.08);
}

.mpn-stat__value {
  color: var(--mpn-ink);
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.mpn-stat__label {
  margin-top: 9px;
  color: #64748b;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mpn-library-card {
  border: 1px solid #dbe3ef;
  border-radius: 32px;
  background: white;
  box-shadow: 0 34px 88px -46px rgba(36, 92, 242, 0.55);
  padding: 20px;
}

.mpn-library-card .mpn-awards-pill {
  width: 100%;
  max-width: none;
  margin-bottom: 16px;
  border-radius: 24px;
}

.mpn-library-card__inner {
  border-radius: 26px;
  background: linear-gradient(180deg, #0f3c8a 0%, #123d93 58%, #08204d 100%);
  color: white;
  padding: 30px;
}

.mpn-library-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mpn-library-card__number {
  display: block;
  max-width: 100%;
  min-width: 0;
  margin-top: 34px;
  font-size: clamp(44px, 7vw, 70px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.mpn-library-card__label {
  margin-top: 12px;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.mpn-library-card p {
  color: rgba(239, 246, 255, 0.86);
  line-height: 1.75;
}

.mpn-library-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mpn-library-list div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #eff6ff;
  font-size: 14px;
  line-height: 1.55;
  padding: 14px 16px;
}

.mpn-section {
  padding: 86px 0;
}

.mpn-section--white {
  border-top: 1px solid var(--mpn-line);
  border-bottom: 1px solid var(--mpn-line);
  background: white;
}

.mpn-section--soft {
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
}

.mpn-section--testimonials {
  border-top: 1px solid var(--mpn-line);
  background: #f8fafc;
}

.mpn-wp-page-hero {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 36%, #ffffff 100%);
}

.mpn-wp-page h1 {
  max-width: 880px;
  margin: 20px 0 30px;
  color: var(--mpn-ink);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
}

.mpn-wp-content {
  color: var(--mpn-ink);
  font-size: 18px;
  line-height: 1.72;
}

.mpn-wp-content > p {
  max-width: 840px;
  color: var(--mpn-muted);
  font-size: 20px;
  line-height: 1.7;
}

.mpn-wp-content a {
  color: var(--mpn-blue);
  font-weight: 850;
}

.mpn-wp-content .wp-block-query {
  margin-top: 54px;
}

.mpn-wp-content .wp-block-post-template {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mpn-wp-content .wp-block-post {
  overflow: hidden;
  border: 1px solid #dbe3ef;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 26px 62px -48px rgba(15, 23, 42, 0.48);
}

.mpn-wp-content .wp-block-post .wp-block-columns {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 20px;
}

.mpn-wp-content .wp-block-post .wp-block-column {
  flex-basis: auto !important;
}

.mpn-wp-content .wp-block-post-featured-image {
  margin: 0;
}

.mpn-wp-content .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
}

.mpn-wp-content .wp-block-post-title {
  max-width: 840px;
  margin: 0;
  color: var(--mpn-ink);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.mpn-wp-content .wp-block-post-title a {
  color: inherit;
}

.mpn-wp-content .wp-block-post:first-child {
  border-color: rgba(36, 92, 242, 0.24);
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.mpn-wp-content .wp-block-post:first-child .wp-block-columns {
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  padding: 26px;
}

.mpn-wp-content .wp-block-post:first-child .wp-block-post-title {
  font-size: clamp(32px, 4vw, 54px);
}

.mpn-page-hero {
  padding: 76px 0 86px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.mpn-page-hero h1 {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--mpn-ink);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
}

.mpn-page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--mpn-muted);
  font-size: 20px;
  line-height: 1.65;
}

.mpn-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.mpn-section h2 {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--mpn-ink);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.mpn-section p {
  color: var(--mpn-muted);
}

.mpn-show-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mpn-show-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe3ef;
  border-radius: 28px;
  background: #f8fafc;
  box-shadow: 0 14px 34px -30px rgba(15, 23, 42, 0.48);
}

.mpn-show-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e2e8f0;
}

.mpn-show-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mpn-show-card__body {
  padding: 24px;
}

.mpn-badge {
  display: inline-flex;
  border: 1px solid rgba(36, 92, 242, 0.16);
  border-radius: 999px;
  background: rgba(36, 92, 242, 0.06);
  color: var(--mpn-blue);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.mpn-show-card h3,
.mpn-feature-card h3 {
  margin: 16px 0 0;
  color: var(--mpn-ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.12;
}

.mpn-show-card.is-hidden {
  display: none;
}

.mpn-show-card h3 a {
  color: inherit;
}

.mpn-show-pager-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.mpn-show-pager-controls button {
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: white;
  color: var(--mpn-ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  padding: 12px 18px;
  text-transform: uppercase;
}

.mpn-show-pager-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.mpn-show-pager-controls span {
  min-width: 92px;
  color: var(--mpn-muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.mpn-show-card__host {
  margin-top: 12px;
  color: #64748b;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mpn-show-card__summary {
  margin-top: 14px;
  color: var(--mpn-muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.mpn-feature-card {
  border: 1px solid #dbe3ef;
  border-radius: 28px;
  background: white;
  padding: 28px;
}

.mpn-feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 18px;
  background: rgba(36, 92, 242, 0.1);
  color: var(--mpn-blue);
  font-size: 24px;
}

.mpn-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mpn-testimonial-grid--compact {
  grid-template-columns: minmax(0, 1fr);
}

.mpn-testimonial-card {
  border: 1px solid #dbe3ef;
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 40px -34px rgba(15, 23, 42, 0.45);
  padding: 28px;
}

.mpn-testimonial-card__stars {
  color: var(--mpn-gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mpn-testimonial-card blockquote {
  margin: 18px 0 0;
  color: var(--mpn-ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.mpn-testimonial-card__person {
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.mpn-testimonial-card__person strong {
  color: var(--mpn-ink);
  font-size: 18px;
  font-weight: 950;
}

.mpn-testimonial-card__person span,
.mpn-testimonial-card p {
  color: var(--mpn-muted);
  line-height: 1.65;
}

.mpn-testimonial-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--mpn-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mpn-testimonial-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 520px);
  gap: 48px;
  align-items: start;
}

.mpn-testimonial-form-layout h2 {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--mpn-ink);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 950;
  line-height: 1.08;
}

.mpn-testimonial-prompts {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.mpn-testimonial-prompts div {
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  background: white;
  color: var(--mpn-muted);
  line-height: 1.6;
  padding: 14px 16px;
}

.mpn-testimonial-form {
  display: grid;
  gap: 16px;
  border: 1px solid #dbe3ef;
  border-radius: 28px;
  background: white;
  padding: 28px;
}

.mpn-testimonial-form label {
  display: grid;
  gap: 8px;
}

.mpn-testimonial-form span {
  color: #64748b;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mpn-testimonial-form input,
.mpn-testimonial-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  color: var(--mpn-ink);
  font: inherit;
  line-height: 1.5;
  padding: 14px 16px;
}

.mpn-testimonial-form textarea {
  resize: vertical;
}

.mpn-single-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
  background: linear-gradient(135deg, #061638 0%, #0d2b6d 56%, #245cf2 100%);
}

.mpn-single-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(42px);
  pointer-events: none;
}

.mpn-single-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 450px);
  gap: 58px;
  align-items: center;
}

.mpn-single-hero h1 {
  max-width: 900px;
  margin: 24px 0 0;
  color: white;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.06;
}

.mpn-single-hero p {
  max-width: 760px;
  color: rgba(239, 246, 255, 0.84);
  font-size: 19px;
  line-height: 1.7;
}

.mpn-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mpn-single-meta span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  padding: 8px 12px;
}

.mpn-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.mpn-single-art {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: white;
  box-shadow: 0 36px 80px -46px rgba(0, 0, 0, 0.72);
}

.mpn-single-art img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mpn-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(280px, 350px);
  gap: 56px;
  align-items: start;
}

.mpn-single-content {
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  background: white;
  box-shadow: 0 28px 72px -58px rgba(15, 23, 42, 0.46);
  color: var(--mpn-ink);
  font-size: 18px;
  line-height: 1.78;
  padding: clamp(28px, 5vw, 52px);
}

.mpn-single-content > *:first-child {
  margin-top: 0;
}

.mpn-single-content h2,
.mpn-single-content h3 {
  margin-top: 42px;
  margin-bottom: 16px;
  color: var(--mpn-ink);
  font-weight: 950;
  line-height: 1.16;
}

.mpn-single-content h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.mpn-single-content h3 {
  font-size: clamp(23px, 2.2vw, 30px);
}

.mpn-single-content p,
.mpn-single-content li {
  color: #334155;
}

.mpn-single-content blockquote {
  margin: 34px 0;
  border-left: 5px solid var(--mpn-blue);
  border-radius: 18px;
  background: #f8fafc;
  color: var(--mpn-ink);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.55;
  padding: 24px 28px;
}

.mpn-single-content a {
  color: var(--mpn-blue);
  font-weight: 800;
}

.mpn-single-content iframe,
.mpn-single-content audio,
.mpn-single-content video {
  max-width: 100%;
}

.mpn-single-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.mpn-single-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.mpn-sidebar-panel {
  border: 1px solid #dbe3ef;
  border-radius: 26px;
  background: white;
  box-shadow: 0 22px 56px -48px rgba(15, 23, 42, 0.44);
  padding: 24px;
}

.mpn-sidebar-panel--dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: #071947;
  color: white;
}

.mpn-sidebar-panel--dark h2 {
  color: white;
}

.mpn-sidebar-panel--dark p {
  color: rgba(239, 246, 255, 0.78);
}

.mpn-sidebar-panel h2 {
  margin: 16px 0 0;
  color: var(--mpn-ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.15;
}

.mpn-sidebar-panel p {
  color: var(--mpn-muted);
  line-height: 1.65;
}

.mpn-term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mpn-term-list a {
  border: 1px solid rgba(36, 92, 242, 0.16);
  border-radius: 999px;
  background: white;
  color: var(--mpn-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.mpn-post-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.mpn-post-nav div:last-child {
  text-align: right;
}

.mpn-post-nav a:not(.mpn-button) {
  color: var(--mpn-blue);
  font-weight: 950;
}

.mpn-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mpn-archive-card {
  overflow: hidden;
  border: 1px solid #dbe3ef;
  border-radius: 26px;
  background: #f8fafc;
}

.mpn-archive-card__image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #ffffff;
}

.mpn-archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mpn-archive-card__body {
  padding: 22px;
}

.mpn-archive-card__date {
  color: #64748b;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mpn-archive-card h2 {
  margin: 14px 0 0;
  color: var(--mpn-ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.16;
}

.mpn-archive-card p {
  color: var(--mpn-muted);
  line-height: 1.65;
}

.mpn-archive-card__link {
  color: var(--mpn-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mpn-pagination {
  margin-top: 42px;
}

.mpn-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mpn-pagination a,
.mpn-pagination span {
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  background: white;
  color: var(--mpn-ink);
  font-weight: 900;
  padding: 10px 14px;
}

.mpn-pagination .current {
  background: var(--mpn-blue);
  color: white;
}

.mpn-empty-state {
  border: 1px solid #dbe3ef;
  border-radius: 24px;
  background: #f8fafc;
  padding: 28px;
}

.mpn-shows-page {
  background: #f8fafc;
}

.mpn-shows-hero {
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  background:
    linear-gradient(135deg, rgba(36, 92, 242, 0.12), rgba(255, 255, 255, 0) 45%),
    #ffffff;
  padding: 92px 0 78px;
}

.mpn-shows-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: end;
}

.mpn-shows-hero h1 {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--mpn-ink);
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
}

.mpn-shows-hero p:not(.mpn-eyebrow) {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--mpn-muted);
  font-size: 19px;
  line-height: 1.75;
}

.mpn-shows-hero__panel {
  border: 1px solid rgba(36, 92, 242, 0.18);
  border-radius: 8px;
  background: var(--mpn-deep);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  color: white;
  padding: 28px;
}

.mpn-shows-hero__panel > span {
  color: #bfdbfe;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mpn-shows-hero__panel h2 {
  margin: 14px 0 0;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0;
}

.mpn-shows-hero__panel p {
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 15px !important;
}

.mpn-shows-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.mpn-shows-hero__links a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 10px 13px;
  text-transform: uppercase;
}

.mpn-show-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.mpn-show-directory-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.mpn-show-directory-card__image {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background: #f8fafc;
}

.mpn-show-directory-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mpn-show-directory-card__body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.mpn-show-directory-card h3 {
  margin: 0;
  color: var(--mpn-ink);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.12;
}

.mpn-show-directory-card p {
  margin: 0;
  color: var(--mpn-muted);
  font-size: 14px;
  line-height: 1.45;
}

.mpn-show-directory-card p span {
  display: block;
  margin-bottom: 4px;
  color: var(--mpn-blue);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mpn-shows-cta {
  background: linear-gradient(135deg, #071947 0%, #12368c 100%);
  color: white;
  padding: 74px 0;
}

.mpn-shows-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
}

.mpn-shows-cta .mpn-eyebrow {
  color: #bfdbfe;
}

.mpn-shows-cta h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.mpn-shows-cta p:not(.mpn-eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.mpn-plans-page {
  background: #f8fafc;
}

.mpn-plans-hero {
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  background:
    linear-gradient(135deg, rgba(36, 92, 242, 0.12), rgba(255, 255, 255, 0) 46%),
    #ffffff;
  padding: 92px 0 74px;
}

.mpn-plans-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
}

.mpn-plans-hero__copy {
  max-width: 840px;
}

.mpn-plans-hero h1 {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--mpn-ink);
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.92;
  letter-spacing: 0;
}

.mpn-plans-hero__copy > p:not(.mpn-eyebrow) {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--mpn-muted);
  font-size: 19px;
  line-height: 1.75;
}

.mpn-plans-hero__panel {
  border: 1px solid rgba(36, 92, 242, 0.18);
  border-radius: 8px;
  background: var(--mpn-deep);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  color: white;
  padding: 28px;
}

.mpn-plans-hero__panel span {
  display: inline-flex;
  color: #bfdbfe;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mpn-plans-hero__panel h2 {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0;
}

.mpn-plans-hero__panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.mpn-plans-pricing .mpn-section__head > p {
  max-width: 520px;
}

.mpn-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.mpn-pricing-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.mpn-pricing-card--featured {
  border-color: rgba(36, 92, 242, 0.5);
  box-shadow: 0 26px 80px rgba(36, 92, 242, 0.16);
}

.mpn-pricing-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f8fafc;
}

.mpn-pricing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mpn-pricing-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.mpn-pricing-card__badge {
  align-self: flex-start;
  border: 1px solid rgba(36, 92, 242, 0.16);
  border-radius: 999px;
  background: rgba(36, 92, 242, 0.08);
  color: var(--mpn-blue);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1;
  padding: 9px 11px;
  text-transform: uppercase;
}

.mpn-pricing-card h3 {
  margin: 18px 0 0;
  color: var(--mpn-ink);
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: 0;
}

.mpn-pricing-card__price {
  margin-top: 18px;
  color: var(--mpn-ink);
  font-size: 44px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

.mpn-pricing-card p {
  margin: 18px 0 0;
  color: var(--mpn-muted);
  font-size: 15px;
  line-height: 1.7;
}

.mpn-pricing-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.mpn-pricing-list li {
  position: relative;
  min-width: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
  padding-left: 28px;
}

.mpn-pricing-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--mpn-blue);
  box-shadow: inset 0 0 0 6px white, 0 0 0 1px var(--mpn-blue);
  content: "";
}

.mpn-pricing-card .mpn-button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.mpn-plans-foundation {
  background: linear-gradient(135deg, #071947 0%, #12368c 100%);
  color: white;
  padding: 74px 0;
}

.mpn-plans-foundation__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
}

.mpn-plans-foundation .mpn-eyebrow {
  color: #bfdbfe;
}

.mpn-plans-foundation h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.mpn-plans-foundation p:not(.mpn-eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.mpn-product-hero,
.mpn-product-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 48px;
  align-items: center;
}

.mpn-product-price {
  margin-top: 22px;
  color: var(--mpn-blue);
  font-size: 34px;
  font-weight: 950;
}

.mpn-product-purchase {
  border: 1px solid #dbe3ef;
  border-radius: 28px;
  background: white;
  box-shadow: 0 26px 60px -44px rgba(15, 23, 42, 0.5);
  padding: 28px;
}

.mpn-product-purchase form.cart {
  display: grid;
  gap: 16px;
}

.mpn-product-purchase .quantity {
  display: none;
}

.mpn-product-purchase .single_add_to_cart_button,
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--mpn-blue);
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  padding: 14px 22px;
  text-transform: uppercase;
}

.mpn-product-media {
  overflow: hidden;
  border: 1px solid #dbe3ef;
  border-radius: 28px;
  background: #eef5ff;
}

.mpn-product-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mpn-product-placeholder {
  display: grid;
  min-height: 320px;
  place-items: center;
  color: var(--mpn-blue);
  font-size: 72px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout,
.woocommerce-order {
  border: 1px solid #dbe3ef;
  border-radius: 24px;
  background: white;
  margin-top: 24px;
  padding: 24px;
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-bottom: 1px solid #dbe3ef;
  padding: 14px;
  text-align: left;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  color: var(--mpn-ink);
  font: inherit;
  padding: 12px 14px;
}

.woocommerce form .form-row {
  margin: 0 0 16px;
}

.woocommerce form .form-row label {
  color: #64748b;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  background: #f8fafc;
  list-style: none;
  padding: 14px 16px;
}

.mpn-form-message {
  border-radius: 16px;
  font-weight: 800;
  line-height: 1.5;
  padding: 14px 16px;
}

.mpn-form-message--success {
  background: #dcfce7;
  color: #166534;
}

.mpn-form-message--error {
  background: #fee2e2;
  color: #991b1b;
}

.mpn-dashboard {
  background: #091735;
  color: white;
  padding: 56px 0 76px;
}

.mpn-dashboard__hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.mpn-dashboard--tool .mpn-dashboard__hero,
.mpn-tool-nav + .mpn-dashboard__hero {
  margin-top: 28px;
}

.mpn-tool-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mpn-tool-nav a {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 10px 13px;
  text-decoration: none;
  text-transform: uppercase;
}

.mpn-tool-nav a.is-active,
.mpn-tool-nav a:hover {
  border-color: rgba(101, 163, 255, 0.42);
  background: rgba(36, 92, 242, 0.22);
  color: white;
}

.mpn-dashboard__hero h1 {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.mpn-dashboard__hero p,
.mpn-dashboard-panel__head p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.mpn-dashboard__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.mpn-button--disabled {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.48);
  cursor: not-allowed;
}

.mpn-dashboard__asset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.mpn-dashboard__tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.mpn-dashboard-card,
.mpn-dashboard-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 58px -40px rgba(0, 0, 0, 0.65);
}

.mpn-dashboard-card {
  position: relative;
  min-height: 156px;
  padding: 20px;
}

.mpn-dashboard-card--tool {
  min-height: 260px;
}

.mpn-dashboard-card--tool:hover {
  border-color: rgba(147, 197, 253, 0.34);
  background: rgba(255, 255, 255, 0.11);
}

.mpn-dashboard-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mpn-dashboard-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(101, 163, 255, 0.25);
  border-radius: 8px;
  background: rgba(36, 92, 242, 0.18);
  color: #9ec5ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mpn-dashboard-badge,
.mpn-dashboard-tags span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.mpn-dashboard-card h2,
.mpn-dashboard-panel h2 {
  margin: 22px 0 0;
  color: white;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: 0;
}

.mpn-dashboard-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.mpn-dashboard-card__link {
  display: inline-flex;
  margin-top: 24px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.mpn-dashboard-card__link::after {
  position: absolute;
  inset: 0;
  content: "";
}

.mpn-dashboard__readiness {
  margin-top: 24px;
}

.mpn-dashboard__rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.mpn-dashboard__rule-grid div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.mpn-dashboard__rule-grid strong,
.mpn-dashboard__rule-grid span {
  display: block;
}

.mpn-dashboard__rule-grid strong {
  color: white;
  font-size: 16px;
  font-weight: 950;
}

.mpn-dashboard__rule-grid span {
  margin-top: 10px;
  color: rgba(239, 246, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.mpn-tool-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  margin-top: 34px;
}

.mpn-tool-form,
.mpn-tool-output {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 24px;
}

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

.mpn-tool-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mpn-tool-form input,
.mpn-tool-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: white;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 13px 14px;
  text-transform: none;
}

.mpn-tool-form textarea {
  min-height: 110px;
  resize: vertical;
}

.mpn-tool-form .mpn-large-textarea {
  min-height: 260px;
}

.mpn-field-wide {
  grid-column: 1 / -1;
}

.mpn-tool-output h2 {
  margin: 22px 0 10px;
  color: white;
  font-size: 18px;
  font-weight: 950;
}

.mpn-tool-output h2:first-of-type {
  margin-top: 0;
}

.mpn-tool-output pre,
.mpn-tool-actions {
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(219, 234, 254, 0.92);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 1.7;
  min-height: 72px;
  padding: 14px;
  white-space: pre-wrap;
}

.mpn-tool-actions {
  display: grid;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
}

.mpn-tool-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(101, 163, 255, 0.24);
  border-radius: 8px;
  background: rgba(36, 92, 242, 0.16);
  color: white;
  padding: 16px;
}

.mpn-tool-score span {
  color: rgba(219, 234, 254, 0.82);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mpn-tool-score strong {
  font-size: 28px;
  font-weight: 950;
}

.mpn-media-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px dashed rgba(101, 163, 255, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  margin: 24px 0;
}

.mpn-dashboard__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  margin-top: 24px;
}

.mpn-dashboard-panel {
  padding: 24px;
}

.mpn-dashboard-panel__head h2 {
  margin: 0;
}

.mpn-dashboard-table {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mpn-dashboard-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 140px 150px 150px;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.mpn-dashboard-table__row:last-child {
  border-bottom: 0;
}

.mpn-dashboard-table__row--head {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mpn-dashboard-table__row span:first-child {
  overflow: hidden;
  color: white;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mpn-dashboard-table__status {
  color: #bfdbfe;
  font-weight: 800;
}

.mpn-dashboard-table__empty {
  display: grid;
  gap: 8px;
  padding: 36px 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.mpn-dashboard-table__empty strong {
  color: white;
  font-size: 15px;
}

.mpn-dashboard__side {
  display: grid;
  gap: 22px;
}

.mpn-dashboard-panel--blue {
  border-color: rgba(101, 163, 255, 0.24);
  background: rgba(36, 92, 242, 0.16);
}

.mpn-dashboard-checklist {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mpn-dashboard-checklist div {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #eff6ff;
  font-size: 14px;
  line-height: 1.45;
  padding: 13px 14px;
}

.mpn-dashboard-checklist span {
  display: inline-flex;
  margin-right: 10px;
  color: #86efac;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mpn-dashboard-checklist__muted span {
  color: #fcd34d;
}

.mpn-dashboard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mpn-footer {
  background: #081533;
  color: white;
  padding: 54px 0;
}

.mpn-footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.mpn-footer p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.mpn-footer__nav {
  display: flex;
  max-width: 440px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.mpn-footer__nav a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 10px 13px;
  text-transform: uppercase;
}

.mpn-footer__nav a:hover {
  background: white;
  color: #081533;
}

@media (max-width: 1120px) {
  .mpn-header__utility,
  .mpn-header__desktop {
    display: none;
  }

  .mpn-menu-button {
    display: inline-flex;
  }

  .mpn-header__bar {
    min-height: 82px;
  }

  .mpn-logo img {
    width: 72px;
    max-height: 72px;
  }

  .mpn-mobile-panel {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    border-top: 1px solid #dbe3ef;
    background: white;
    color: var(--mpn-ink);
    box-shadow: 0 28px 70px -44px rgba(15, 23, 42, 0.6);
  }

  .mpn-mobile-panel.is-open {
    display: block;
  }

  .mpn-mobile-panel__inner {
    display: grid;
    gap: 18px;
    width: min(100% - 28px, 680px);
    margin: 0 auto;
    padding: 24px 0 34px;
  }

  .mpn-mobile-search {
    display: grid;
    gap: 12px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fafc;
    padding: 18px;
  }

  .mpn-mobile-search label {
    color: #1b1d8f;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .mpn-mobile-search input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: var(--mpn-ink);
    font: inherit;
    padding: 13px 16px;
  }

  .mpn-mobile-links {
    display: grid;
    gap: 10px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fafc;
    padding: 18px;
  }

  .mpn-mobile-links a {
    border-radius: 8px;
    background: white;
    color: var(--mpn-ink);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.12em;
    padding: 14px;
    text-transform: uppercase;
  }

  .mpn-mobile-panel__ctas {
    display: grid;
    gap: 10px;
  }

  .mpn-mobile-panel__ctas .mpn-header-button {
    width: 100%;
  }

  .mpn-mobile-panel__ctas .mpn-header-button--outline {
    border-color: #dbe3ef;
    background: white;
    color: #1b1d8f;
  }
}

@media (max-width: 980px) {

  .mpn-hero__grid,
  .mpn-show-grid,
  .mpn-feature-grid,
  .mpn-testimonial-grid,
  .mpn-testimonial-form-layout,
  .mpn-single-hero__grid,
  .mpn-single-layout,
  .mpn-archive-grid,
  .mpn-product-hero,
  .mpn-product-detail,
  .mpn-dashboard__layout,
  .mpn-plans-hero__grid,
  .mpn-plans-foundation__grid,
  .mpn-shows-hero__grid,
  .mpn-shows-cta__grid {
    grid-template-columns: 1fr;
  }

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

  .mpn-pricing-grid {
    grid-template-columns: 1fr;
  }

  .mpn-plans-hero__panel {
    max-width: 620px;
  }

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

  .mpn-dashboard__tool-grid,
  .mpn-dashboard__rule-grid,
  .mpn-tool-workbench {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mpn-dashboard__hero {
    align-items: start;
    flex-direction: column;
  }

  .mpn-dashboard__actions {
    justify-content: flex-start;
  }

  .mpn-single-sidebar {
    position: static;
  }

  .mpn-post-nav {
    grid-template-columns: 1fr;
  }

  .mpn-post-nav div:last-child {
    text-align: left;
  }

  .mpn-section__head,
  .mpn-footer__grid {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .mpn-container {
    width: min(100% - 28px, 1180px);
  }

  .mpn-hero {
    padding: 54px 0 72px;
  }

  .mpn-hero h1 {
    font-size: 42px;
  }

  .mpn-plans-hero {
    padding: 60px 0 56px;
  }

  .mpn-plans-hero h1 {
    font-size: 44px;
  }

  .mpn-pricing-card__body {
    padding: 22px;
  }

  .mpn-pricing-card__price {
    font-size: 38px;
  }

  .mpn-plans-foundation {
    padding: 58px 0;
  }

  .mpn-hero__copy {
    font-size: 17px;
  }

  .mpn-actions,
  .mpn-stats,
  .mpn-show-pager-controls {
    grid-template-columns: 1fr;
  }

  .mpn-button {
    width: 100%;
  }

  .mpn-awards-pill {
    width: 100%;
    max-width: none;
    min-height: 78px;
    gap: 10px;
    border-radius: 22px;
    padding: 12px;
  }

  .mpn-awards-pill__mark {
    width: 54px;
    height: 54px;
    font-size: 10px;
    padding-bottom: 9px;
  }

  .mpn-awards-pill__star {
    top: 9px;
    width: 20px;
    height: 20px;
  }

  .mpn-awards-pill strong {
    font-size: 18px;
    line-height: 1.08;
  }

  .mpn-awards-pill small {
    font-size: 12px;
    line-height: 1.25;
  }

  .mpn-awards-pill__arrow {
    min-width: 44px;
    height: 44px;
  }

  .mpn-library-card {
    border-radius: 26px;
    padding: 14px;
  }

  .mpn-library-card .mpn-awards-pill {
    border-radius: 20px;
  }

  .mpn-library-card__inner {
    overflow: hidden;
    border-radius: 22px;
    padding: 26px 24px;
  }

  .mpn-library-card__top {
    gap: 18px;
    font-size: 11px;
  }

  .mpn-library-card__number {
    max-width: 100%;
    font-size: clamp(58px, 16vw, 72px);
    line-height: 0.92;
  }

  .mpn-library-card__label {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .mpn-library-list div {
    font-size: 14px;
    padding: 14px;
  }
}

@media (max-width: 430px) {
  .mpn-container {
    width: min(100% - 22px, 1180px);
  }

  .mpn-library-card {
    padding: 10px;
  }

  .mpn-awards-pill {
    align-items: center;
    gap: 8px;
    min-height: 72px;
    padding: 10px;
  }

  .mpn-awards-pill__mark {
    width: 48px;
    height: 48px;
  }

  .mpn-awards-pill strong {
    font-size: 16px;
  }

  .mpn-awards-pill small {
    font-size: 11px;
  }

  .mpn-awards-pill__arrow {
    min-width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .mpn-library-card__inner {
    padding: 24px 22px;
  }

  .mpn-library-card__number {
    font-size: clamp(54px, 15vw, 64px);
    line-height: 0.92;
  }

  .mpn-dashboard__asset-grid,
  .mpn-dashboard__tool-grid,
  .mpn-dashboard__rule-grid,
  .mpn-tool-workbench,
  .mpn-tool-form,
  .mpn-dashboard-table__row {
    grid-template-columns: 1fr;
  }

  .mpn-dashboard-table__row {
    gap: 8px;
  }

  .mpn-footer__grid,
  .mpn-footer__nav {
    justify-content: flex-start;
  }
}
