:root {
  --mp-purple-950: #0a0715;
  --mp-purple-900: #100b21;
  --mp-purple-850: #171131;
  --mp-purple-800: #1f1545;
  --mp-purple-700: #3d2b8a;
  --mp-gold-500: #f2a53a;
  --mp-gold-600: #e38f18;
  --mp-mint-500: #63c7ab;
  --mp-bg: #06040d;
  --mp-surface: rgba(255, 255, 255, 0.03);
  --mp-surface-soft: rgba(255, 255, 255, 0.06);
  --mp-surface-soft-alt: rgba(255, 255, 255, 0.09);
  --mp-line: rgba(255, 255, 255, 0.08);
  --mp-line-strong: rgba(255, 255, 255, 0.15);
  --mp-text: #c4cfe0;
  --mp-text-strong: #ffffff;
  --mp-text-muted: #8494ab;
  --mp-success: #2ab293;
  --mp-danger: #d95e51;
  --mp-radius-sm: 16px;
  --mp-radius-md: 24px;
  --mp-radius-lg: 32px;
  --mp-radius-xl: 40px;
  --mp-shadow-sm: 0 16px 40px rgba(0, 0, 0, 0.3);
  --mp-shadow-md: 0 28px 70px rgba(0, 0, 0, 0.4);
  --mp-shadow-lg: 0 45px 100px rgba(0, 0, 0, 0.6);
  --mp-container: 1280px;
  --mp-gap: clamp(20px, 3vw, 32px);
  --mp-section-space: clamp(80px, 8vw, 120px);
  --mp-header-height: 90px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--mp-header-height) + 16px);
}

body {
  margin: 0;
  color: var(--mp-text);
  background: var(--mp-bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(99, 199, 171, 0.08), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(242, 165, 58, 0.08), transparent 30%);
  background-attachment: fixed;
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.mp-has-mobile-cta {
  padding-bottom: 86px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--mp-text-strong);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

p,
li {
  margin: 0;
}

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

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

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

a,
button,
input,
select,
textarea {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(242, 165, 58, 0.28);
  outline-offset: 4px;
}

.mp-skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--mp-purple-900);
  color: #ffffff;
  font-weight: 800;
}

.mp-skip-link:focus {
  top: 16px;
}

.mp-shell {
  min-height: 100vh;
}

.mp-container {
  width: min(var(--mp-container), calc(100% - 2 * clamp(20px, 4vw, 40px)));
  margin: 0 auto;
}

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

.mp-section {
  padding: var(--mp-section-space) 0;
}

.mp-section--surface {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.00) 100%
  );
  border-top: 1px solid var(--mp-line);
  border-bottom: 1px solid var(--mp-line);
}

.mp-section--dark {
  position: relative;
  color: rgba(238, 243, 251, 0.9);
  background: linear-gradient(145deg, var(--mp-purple-950) 0%, var(--mp-purple-850) 100%);
}

.mp-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(99, 199, 171, 0.12), transparent 18rem),
    radial-gradient(circle at bottom left, rgba(242, 165, 58, 0.12), transparent 20rem);
}

.mp-section--dark > * {
  position: relative;
  z-index: 1;
}

.mp-kicker,
.mp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mp-purple-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mp-kicker::before,
.mp-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(93, 72, 200, 0.4);
}

.mp-section--dark .mp-kicker,
.mp-section--dark .mp-eyebrow,
.mp-band .mp-kicker {
  color: var(--mp-mint-500);
}

.mp-section--dark .mp-kicker::before,
.mp-section--dark .mp-eyebrow::before,
.mp-band .mp-kicker::before {
  background: rgba(99, 199, 171, 0.5);
}

.mp-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(93, 72, 200, 0.25);
  background: rgba(93, 72, 200, 0.1);
  color: var(--mp-purple-700);
  font-size: 0.85rem;
  font-weight: 800;
}

.mp-section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--mp-gap);
  align-items: end;
  margin-bottom: 48px;
}

.mp-section-heading__main,
.mp-section-heading__support {
  grid-column: 1 / -1;
}

.mp-section-heading h2,
.mp-page-hero h1 {
  margin-top: 16px;
  font-size: clamp(2.3rem, 5.6vw, 4.5rem);
}

.mp-section-heading p,
.mp-page-hero p,
.mp-lead {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--mp-text);
}

.mp-section--dark h1,
.mp-section--dark h2,
.mp-section--dark h3,
.mp-section--dark h4,
.mp-band h2,
.mp-band h3 {
  color: #ffffff;
}

.mp-section--dark p,
.mp-section--dark li,
.mp-band p,
.mp-band li {
  color: rgba(238, 243, 251, 0.8);
}

.mp-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
}

.mp-button--primary {
  background: linear-gradient(135deg, var(--mp-gold-500), var(--mp-gold-600));
  color: #1f173f;
  box-shadow: 0 8px 24px rgba(242, 165, 58, 0.3), inset 0 1px 1px rgba(255,255,255,0.4);
}

.mp-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(242, 165, 58, 0.45);
}

.mp-button--secondary {
  border-color: var(--mp-line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.mp-button--secondary:hover {
  border-color: var(--mp-gold-500);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

.mp-button--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.mp-button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mp-purple-700);
  font-weight: 800;
}

.mp-link::after {
  content: "→";
}

.mp-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 7, 21, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.mp-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--mp-header-height);
}

.mp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mp-brand img {
  width: auto;
  height: 42px;
}

.mp-nav {
  position: absolute;
  top: calc(100% + 12px);
  left: 20px;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--mp-line);
  background: rgba(20, 15, 35, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--mp-shadow-md);
}

.mp-nav.is-open {
  display: flex;
}

.mp-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mp-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 14px;
  color: var(--mp-text);
  font-size: 0.95rem;
  font-weight: 700;
}

.mp-nav__link:hover,
.mp-nav__link:focus-visible,
.mp-nav__link.is-active {
  color: var(--mp-text-strong);
  background: rgba(255, 255, 255, 0.1);
}

.mp-nav__cta {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 32, 61, 0.08);
}

.mp-header-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.mp-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--mp-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--mp-shadow-sm);
}

.mp-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--mp-text-strong);
}

body.mp-nav-open {
  overflow: hidden;
}

.mp-page-hero,
.mp-home-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 84px);
}

.mp-home-hero__grid,
.mp-page-hero__grid,
.mp-split,
.mp-compare,
.mp-story-grid,
.mp-pricing-grid,
.mp-cta-band,
.mp-contact-grid,
.mp-download-grid,
.mp-footer-top {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--mp-gap);
}

.mp-home-hero__copy,
.mp-home-hero__visual,
.mp-page-hero__copy,
.mp-page-hero__visual,
.mp-split__copy,
.mp-split__visual,
.mp-compare__main,
.mp-compare__side,
.mp-contact-grid__form,
.mp-contact-grid__details,
.mp-download-grid__copy,
.mp-download-grid__visual,
.mp-footer-brand,
.mp-footer-columns {
  grid-column: 1 / -1;
}

.mp-home-hero h1 {
  margin-top: 18px;
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.mp-home-hero .mp-lead {
  margin-top: 22px;
}

.mp-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.mp-inline-points,
.mp-value-strip,
.mp-feature-list,
.mp-mini-list,
.mp-metadata-list,
.mp-availability-list,
.mp-footer-links,
.mp-category-pills,
.mp-breadcrumbs,
.mp-list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mp-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mp-inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mp-inline-points li,
.mp-category-pills li a,
.mp-stat-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--mp-line);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  box-shadow: var(--mp-shadow-sm);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--mp-text-strong);
}

.mp-stat-pill {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.mp-phone-cluster {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 30px);
  border-radius: var(--mp-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, var(--mp-purple-950) 0%, var(--mp-purple-800) 100%);
  box-shadow: var(--mp-shadow-lg);
  overflow: hidden;
}

.mp-phone-cluster::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(99, 199, 171, 0.18), transparent 18rem),
    radial-gradient(circle at bottom right, rgba(242, 165, 58, 0.16), transparent 16rem);
}

.mp-phone-cluster > * {
  position: relative;
  z-index: 1;
}

.mp-phone-cluster__top {
  display: grid;
  gap: 14px;
}

.mp-phone-cluster__top h2 {
  max-width: 13ch;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #ffffff;
}

.mp-phone-cluster__top p {
  max-width: 48ch;
  color: rgba(238, 243, 251, 0.82);
}

.mp-screen-stack {
  display: grid;
  gap: 16px;
}

.mp-screen-stack--hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  max-width: 480px;
}

.mp-phone-frame {
  display: grid;
  align-items: end;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 12, 27, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mp-phone-frame--offset {
  margin-top: 48px;
}

.mp-phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.mp-panel,
.mp-card,
.mp-quote-card,
.mp-fact-card,
.mp-feature-card,
.mp-info-card,
.mp-price-card,
.mp-article-card,
.mp-policy-card,
.mp-contact-card {
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--mp-radius-md);
  border: 1px solid var(--mp-line);
  background: var(--mp-surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--mp-shadow-md);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mp-panel:hover, .mp-card:hover, .mp-feature-card:hover, .mp-info-card:hover, .mp-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 165, 58, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 24px rgba(242, 165, 58, 0.15);
}

.mp-card > img,
.mp-policy-card > img,
.mp-contact-card > img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(17, 23, 42, 0.12);
}

.mp-feature-grid,
.mp-value-strip,
.mp-proof-grid,
.mp-article-grid,
.mp-pricing-grid__cards,
.mp-faq-grid,
.mp-policy-grid,
.mp-metrics-grid,
.mp-gallery-grid {
  display: grid;
  gap: var(--mp-gap);
}

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

.mp-value-strip li {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid var(--mp-line);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  font-weight: 700;
}

.mp-value-strip li::before,
.mp-feature-list li::before,
.mp-mini-list li::before,
.mp-availability-list li::before,
.mp-list-clean li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--mp-mint-500);
  box-shadow: 0 0 0 4px rgba(99, 199, 171, 0.18);
  flex-shrink: 0;
}

.mp-value-strip li::before {
  margin-right: 14px;
}

.mp-home-facts {
  display: grid;
  gap: var(--mp-gap);
}

.mp-home-facts__intro,
.mp-home-facts__table {
  grid-column: 1 / -1;
}

.mp-facts-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--mp-radius-md);
  box-shadow: var(--mp-shadow-sm);
}

.mp-facts-table th,
.mp-facts-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--mp-line);
  vertical-align: top;
}

.mp-facts-table th {
  width: 32%;
  color: var(--mp-text-strong);
  font-size: 0.95rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
}

.mp-facts-table td {
  background: rgba(255, 255, 255, 0.02);
}

.mp-steps {
  display: grid;
  gap: var(--mp-gap);
}

.mp-step {
  position: relative;
  padding: 24px 24px 24px 78px;
  border-radius: var(--mp-radius-md);
  border: 1px solid var(--mp-line);
  background: var(--mp-surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--mp-shadow-sm);
}

.mp-step__index {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(242, 165, 58, 0.15);
  color: var(--mp-gold-500);
  font-size: 0.84rem;
  font-weight: 800;
}

.mp-step h3,
.mp-card h3,
.mp-feature-card h3,
.mp-article-card h3,
.mp-price-card h3,
.mp-contact-card h3,
.mp-info-card h3,
.mp-policy-card h3 {
  font-size: 1.18rem;
}

.mp-step p,
.mp-card p,
.mp-feature-card p,
.mp-price-card p,
.mp-article-card p,
.mp-info-card p,
.mp-policy-card p,
.mp-contact-card p {
  margin-top: 10px;
}

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

.mp-feature-card__icon,
.mp-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(93, 72, 200, 0.12);
  color: var(--mp-purple-700);
  font-weight: 800;
  font-size: 1rem;
}

.mp-feature-list,
.mp-mini-list,
.mp-availability-list,
.mp-list-clean {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mp-showcase-group,
.mp-gallery-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--mp-radius-lg);
  border: 1px solid var(--mp-line);
  background: linear-gradient(145deg, rgba(15, 12, 30, 0.95), rgba(20, 16, 40, 0.9));
  box-shadow: var(--mp-shadow-sm);
}

.mp-showcase-group h3,
.mp-gallery-panel h3 {
  font-size: 1.45rem;
  color: var(--mp-text-strong);
}

.mp-showcase-group__screens,
.mp-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.mp-screen-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.mp-screen-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(17, 23, 42, 0.14);
}

.mp-screen-card strong {
  color: var(--mp-text-strong);
  font-size: 0.95rem;
}

.mp-screen-card span {
  color: var(--mp-text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mp-band {
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--mp-radius-lg);
  background: linear-gradient(145deg, var(--mp-purple-950) 0%, var(--mp-purple-800) 100%);
  box-shadow: var(--mp-shadow-lg);
}

.mp-compare__table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--mp-radius-md);
  box-shadow: var(--mp-shadow-sm);
}

.mp-compare__table th,
.mp-compare__table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--mp-line);
}

.mp-compare__table th {
  color: var(--mp-text-strong);
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
}

.mp-compare__table td {
  background: rgba(255, 255, 255, 0.02);
}

.mp-compare__table td:last-child {
  color: var(--mp-gold-500);
  font-weight: 700;
}

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

.mp-price-card {
  position: relative;
}

.mp-price-card--featured {
  border-color: rgba(242, 165, 58, 0.36);
  box-shadow: 0 26px 60px rgba(36, 29, 84, 0.12);
}

.mp-price-card__tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(242, 165, 58, 0.14);
  color: var(--mp-gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mp-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
}

.mp-price strong {
  color: var(--mp-text-strong);
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  line-height: 1;
}

.mp-price span {
  color: var(--mp-text-muted);
  font-weight: 700;
}

.mp-note {
  color: var(--mp-text-muted);
  font-size: 0.9rem;
}

.mp-pricing-note {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: var(--mp-radius-md);
  border: 1px solid var(--mp-line);
  background: rgba(255, 255, 255, 0.03);
}

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

.mp-article-card {
  display: grid;
  gap: 18px;
}

.mp-article-card__image {
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(15, 12, 30, 0.95), rgba(25, 20, 50, 0.9));
  border: 1px solid var(--mp-line);
}

.mp-article-card__image img {
  max-height: 260px;
  width: auto;
}

.mp-article-meta,
.mp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--mp-text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.mp-category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(93, 72, 200, 0.12);
  color: var(--mp-purple-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.mp-quote-card blockquote {
  margin: 16px 0 0;
  color: var(--mp-text-strong);
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}

.mp-quote-card cite {
  display: block;
  margin-top: 16px;
  color: var(--mp-text-muted);
  font-style: normal;
  font-weight: 700;
}

.mp-faq-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--mp-gap);
}

.mp-faq-layout__intro,
.mp-faq-layout__list {
  grid-column: 1 / -1;
}

.mp-faq-list {
  display: grid;
  gap: 14px;
}

.mp-faq-item {
  overflow: hidden;
  border-radius: var(--mp-radius-md);
  border: 1px solid var(--mp-line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--mp-shadow-sm);
}

.mp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--mp-text-strong);
  text-align: left;
  font-weight: 800;
}

.mp-faq-question span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(93, 72, 200, 0.12);
  color: var(--mp-purple-700);
  font-size: 1rem;
  flex-shrink: 0;
}

.mp-faq-answer {
  padding: 0 22px 20px;
}

.mp-cta-band {
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--mp-radius-xl);
  background: linear-gradient(145deg, var(--mp-purple-950) 0%, var(--mp-purple-800) 100%);
  box-shadow: var(--mp-shadow-lg);
}

.mp-cta-band__copy,
.mp-cta-band__actions {
  grid-column: 1 / -1;
}

.mp-availability-list {
  margin-top: 18px;
}

.mp-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mp-store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.mp-store-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mp-store-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mp-store-button__eyebrow {
  display: block;
  color: rgba(238, 243, 251, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
}

.mp-store-button__label {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.mp-page-hero__visual .mp-card,
.mp-split__visual .mp-card,
.mp-download-visual,
.mp-showcase-side {
  height: 100%;
}

.mp-callout {
  padding: 18px 20px;
  border-left: 3px solid var(--mp-gold-500);
  border-radius: 0 16px 16px 0;
  background: rgba(242, 165, 58, 0.08);
  color: var(--mp-text-strong);
}

.mp-site-footer {
  margin-top: var(--mp-section-space);
  padding: 42px 0 34px;
  color: rgba(238, 243, 251, 0.82);
  background: linear-gradient(180deg, #171331 0%, #120f24 100%);
}

.mp-footer-top {
  align-items: start;
}

.mp-footer-brand p {
  margin-top: 18px;
  max-width: 42ch;
}

.mp-footer-brand img {
  height: 42px;
  width: auto;
}

.mp-footer-columns {
  display: grid;
  gap: var(--mp-gap);
}

.mp-footer-column h2 {
  color: #ffffff;
  font-size: 1rem;
}

.mp-footer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mp-footer-links a {
  color: rgba(238, 243, 251, 0.76);
}

.mp-footer-links a:hover {
  color: #ffffff;
}

.mp-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 22px;
}

.mp-footer-meta a {
  color: rgba(238, 243, 251, 0.84);
  font-weight: 700;
}

.mp-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 243, 251, 0.64);
  font-size: 0.92rem;
}

.mp-breadcrumbs {
  margin-bottom: 18px;
}

.mp-breadcrumbs a {
  color: var(--mp-text-muted);
}

.mp-breadcrumbs span[aria-current="page"] {
  color: var(--mp-text-strong);
}

.mp-page-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

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

.mp-metric-card strong {
  display: block;
  color: var(--mp-text-strong);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.mp-metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--mp-text-muted);
  font-weight: 700;
}

.mp-contact-grid__form form,
.mp-form-grid {
  display: grid;
  gap: 16px;
}

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

.mp-field {
  display: grid;
  gap: 8px;
}

.mp-field label {
  color: var(--mp-text-strong);
  font-weight: 700;
}

.mp-field input,
.mp-field select,
.mp-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--mp-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--mp-text-strong);
}

.mp-field textarea {
  min-height: 140px;
  resize: vertical;
}

.mp-form-message {
  font-weight: 700;
}

.mp-form-message.is-success {
  color: var(--mp-success);
}

.mp-form-message.is-error {
  color: var(--mp-danger);
}

.mp-rich-text {
  display: grid;
  gap: 18px;
}

.mp-rich-text h2 {
  margin-top: 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.mp-rich-text h3 {
  margin-top: 10px;
  font-size: 1.18rem;
}

.mp-rich-text ul,
.mp-rich-text ol {
  margin: 0;
  padding-left: 22px;
}

.mp-rich-text li {
  margin-top: 10px;
}

.mp-policy-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--mp-gap);
}

.mp-policy-layout__aside,
.mp-policy-layout__main {
  grid-column: 1 / -1;
}

.mp-policy-nav {
  display: grid;
  gap: 10px;
}

.mp-policy-nav a {
  color: var(--mp-purple-700);
  font-weight: 700;
}

.mp-article-hero {
  padding: clamp(40px, 7vw, 74px) 0 clamp(42px, 7vw, 60px);
}

.mp-article-hero__layout,
.mp-article-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--mp-gap);
}

.mp-article-hero__copy,
.mp-article-hero__visual,
.mp-article-layout__main,
.mp-article-layout__aside {
  grid-column: 1 / -1;
}

.mp-article-hero h1 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 13ch;
}

.mp-article-body {
  display: grid;
  gap: 24px;
}

.mp-aside-card {
  padding: 22px;
  border-radius: var(--mp-radius-md);
  border: 1px solid var(--mp-line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--mp-shadow-sm);
}

.mp-toc {
  display: grid;
  gap: 10px;
}

.mp-toc a {
  color: var(--mp-purple-700);
  font-weight: 700;
}

.mp-mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: block;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 7, 21, 0.96);
  border-top: 1px solid var(--mp-line);
  backdrop-filter: blur(16px);
}

.mp-mobile-cta .mp-button {
  width: 100%;
}

.mp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.mp-mt-18 {
  margin-top: 18px;
}

.mp-mt-20 {
  margin-top: 20px;
}

.mp-mt-22 {
  margin-top: 22px;
}

.mp-mt-24 {
  margin-top: 24px;
}

.mp-mt-28 {
  margin-top: 28px;
}

@media (min-width: 768px) {
  .mp-value-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mp-home-facts__intro {
    grid-column: span 5;
  }

  .mp-home-facts__table {
    grid-column: span 7;
  }

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

  .mp-faq-layout__intro {
    grid-column: span 4;
  }

  .mp-faq-layout__list {
    grid-column: span 8;
  }

  .mp-policy-layout__aside {
    grid-column: span 4;
  }

  .mp-policy-layout__main {
    grid-column: span 8;
  }

  .mp-article-layout__main {
    grid-column: span 8;
  }

  .mp-article-layout__aside {
    grid-column: span 4;
  }
}

@media (min-width: 1024px) {
  body.mp-has-mobile-cta {
    padding-bottom: 0;
  }

  .mp-nav {
    position: static;
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    max-width: 820px;
  }

  .mp-nav__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .mp-nav__cta {
    display: none;
  }

  .mp-header-actions {
    display: flex;
  }

  .mp-nav-toggle,
  .mp-mobile-cta {
    display: none;
  }

  .mp-section-heading__main {
    grid-column: span 7;
  }

  .mp-section-heading__support {
    grid-column: span 5;
  }

  .mp-home-hero__copy,
  .mp-page-hero__copy,
  .mp-split__copy,
  .mp-compare__main,
  .mp-contact-grid__details,
  .mp-download-grid__copy,
  .mp-footer-brand {
    grid-column: span 6;
  }

  .mp-home-hero__visual,
  .mp-page-hero__visual,
  .mp-split__visual,
  .mp-compare__side,
  .mp-contact-grid__form,
  .mp-download-grid__visual,
  .mp-footer-columns {
    grid-column: span 6;
  }

  .mp-screen-stack--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
    margin-left: auto;
  }

  .mp-phone-frame--offset {
    margin-top: 48px;
  }

  .mp-phone-frame--down {
    margin-top: 36px;
  }

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

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

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

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

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

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

  .mp-page-hero__visual .mp-card {
    padding: 30px;
  }

  .mp-page-hero__copy {
    align-self: center;
  }
}

@media (max-width: 1023px) {
  .mp-pricing-grid__cards,
  .mp-article-grid,
  .mp-proof-grid,
  .mp-metrics-grid,
  .mp-gallery-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mp-value-strip,
  .mp-feature-grid,
  .mp-article-grid,
  .mp-proof-grid,
  .mp-pricing-grid__cards,
  .mp-gallery-grid,
  .mp-gallery-grid--3,
  .mp-showcase-group__screens,
  .mp-metrics-grid {
    grid-template-columns: 1fr;
  }

  .mp-home-hero h1,
  .mp-page-hero h1,
  .mp-article-hero h1 {
    max-width: 100%;
  }

  .mp-section-heading h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .mp-facts-table,
  .mp-compare__table {
    display: block;
    overflow-x: auto;
  }

  .mp-form-grid--two {
    grid-template-columns: 1fr;
  }
}

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

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