.mc-page {
  --mc-bg: #f7f8fc;
  --mc-surface: #ffffff;
  --mc-surface-soft: #f0f1f7;
  --mc-surface-raised: rgba(255, 255, 255, .88);
  --mc-text: #17162a;
  --mc-muted: #5f5c72;
  --mc-line: rgba(31, 27, 61, .11);
  --mc-line-strong: rgba(31, 27, 61, .18);
  --mc-brand: #7657ff;
  --mc-brand-deep: #5638df;
  --mc-brand-soft: #ece8ff;
  --mc-green: #168a61;
  --mc-green-soft: #e0f6ed;
  --mc-yellow: #bd7d00;
  --mc-yellow-soft: #fff3cf;
  --mc-red: #c94e54;
  --mc-red-soft: #fee7e8;
  --mc-shadow-sm: 0 10px 32px rgba(35, 28, 80, .07);
  --mc-shadow: 0 26px 72px rgba(35, 28, 80, .12);
  --mc-radius-sm: 16px;
  --mc-radius: 24px;
  --mc-radius-lg: 34px;
  background: var(--mc-bg);
  color: var(--mc-text);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  overflow-x: clip;
}

.dark .mc-page {
  --mc-bg: #111019;
  --mc-surface: #1a1924;
  --mc-surface-soft: #242230;
  --mc-surface-raised: rgba(28, 26, 40, .9);
  --mc-text: #f7f6fc;
  --mc-muted: #bbb7c9;
  --mc-line: rgba(255, 255, 255, .1);
  --mc-line-strong: rgba(255, 255, 255, .18);
  --mc-brand: #a18dff;
  --mc-brand-deep: #8b72ff;
  --mc-brand-soft: #2b2740;
  --mc-green: #55c99a;
  --mc-green-soft: rgba(49, 178, 126, .15);
  --mc-yellow: #efbd4f;
  --mc-yellow-soft: rgba(222, 160, 28, .15);
  --mc-red: #ef8589;
  --mc-red-soft: rgba(221, 82, 88, .15);
  --mc-shadow-sm: 0 12px 34px rgba(0, 0, 0, .18);
  --mc-shadow: 0 30px 84px rgba(0, 0, 0, .34);
}

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

.mc-page h1,
.mc-page h2,
.mc-page h3,
.mc-page p,
.mc-page figure,
.mc-page blockquote { margin: 0; }

.mc-page h1,
.mc-page h2,
.mc-page h3 {
  color: var(--mc-text);
  font-family: inherit;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.mc-page p,
.mc-page li { text-wrap: pretty; }
.mc-page a { color: inherit; }
.mc-page button,
.mc-page input { font: inherit; }
.mc-page [hidden] { display: none !important; }

.mc-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.mc-section {
  padding: clamp(80px, 8vw, 120px) 0;
  position: relative;
}

.mc-copy-stack {
  max-width: 70ch;
  display: grid;
  gap: 15px;
  color: var(--mc-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.mc-copy-stack strong,
.mc-copy-stack h3 { color: var(--mc-text); }
.mc-copy-stack-hero { margin-top: 28px; }
.mc-copy-stack-hero .mc-lead { margin-top: 0 !important; }

.mc-copy-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.mc-copy-grid > .mc-copy-stack,
.mc-copy-panel {
  max-width: none;
  padding: clamp(26px, 3.5vw, 42px);
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: var(--mc-surface);
  box-shadow: var(--mc-shadow-sm);
}

.mc-copy-grid > .mc-copy-stack:nth-child(2) {
  margin-top: 48px;
  border-color: rgba(118, 87, 255, .22);
}

.mc-text-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.mc-text-list li {
  padding-left: 25px;
  position: relative;
}

.mc-text-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 2px;
  top: .72em;
  border-radius: 50%;
  background: var(--mc-brand);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--mc-brand) 12%, transparent);
}

.mc-heading {
  max-width: 760px;
  position: relative;
}

.mc-heading-wide { max-width: 960px; }
.mc-heading-spaced { margin-top: clamp(72px, 8vw, 108px); }
.mc-heading > .mc-copy-stack,
.mc-offer-head .mc-copy-stack { margin-top: 24px; }
.mc-offer-head .mc-copy-stack p { margin-top: 0; }

.mc-heading h2,
.mc-offer h2,
.mc-final h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.85rem);
  line-height: 1.08;
  font-weight: 740;
}

.mc-heading > p,
.mc-offer-head p {
  margin-top: 22px;
  color: var(--mc-muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.mc-kicker,
.mc-section-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mc-brand-deep);
  font-size: .75rem;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.dark .mc-kicker,
.dark .mc-section-number { color: var(--mc-brand); }
.mc-kicker span { width: 28px; height: 2px; background: currentColor; }

.mc-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mc-button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.25;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.mc-button:hover { transform: translateY(-2px); }
.mc-button:focus-visible,
.mc-lead-form input:focus-visible,
.mc-page summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mc-brand) 40%, transparent);
  outline-offset: 3px;
}

.mc-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-button-primary {
  background: var(--mc-brand-deep);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(86, 56, 223, .24);
}

.mc-button-primary:hover { box-shadow: 0 18px 38px rgba(86, 56, 223, .34); }
.mc-button-secondary { border-color: var(--mc-line); background: var(--mc-surface); color: var(--mc-text) !important; }
.mc-button-secondary:hover { border-color: color-mix(in srgb, var(--mc-brand) 45%, transparent); }
.mc-button-light { background: #fff; color: #30245f !important; box-shadow: 0 14px 34px rgba(25, 16, 68, .2); }

/* Hero */
.mc-hero {
  min-height: 760px;
  padding: clamp(128px, 12vw, 168px) 0 clamp(80px, 8vw, 112px);
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(118, 87, 255, .2), transparent 30%),
    radial-gradient(circle at 7% 82%, rgba(40, 189, 155, .12), transparent 28%),
    var(--mc-bg);
}

.mc-hero::before {
  content: "";
  width: min(760px, 55vw);
  height: min(760px, 55vw);
  position: absolute;
  right: -22vw;
  top: -22vw;
  border: 1px solid rgba(118, 87, 255, .16);
  border-radius: 50%;
  pointer-events: none;
}

.mc-hero::after {
  content: "";
  height: 1px;
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(90deg, transparent, var(--mc-line) 18%, var(--mc-line) 82%, transparent);
}

.mc-orb { position: absolute; border-radius: 999px; pointer-events: none; }
.mc-orb-one { width: 14px; height: 14px; top: 24%; left: 5%; background: var(--mc-yellow); box-shadow: 0 0 38px rgba(230, 166, 27, .7); }
.mc-orb-two { width: 10px; height: 10px; right: 6%; bottom: 18%; background: var(--mc-green); box-shadow: 0 0 36px rgba(28, 170, 114, .7); }

.mc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  gap: clamp(54px, 7vw, 94px);
  align-items: start;
}

.mc-hero-copy { min-width: 0; position: relative; z-index: 2; }
.mc-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.1vw, 4.8rem);
  line-height: 1.01;
  font-weight: 760;
}

.mc-hero h1 em {
  display: block;
  margin-top: .16em;
  color: var(--mc-brand-deep);
  font-style: normal;
}

.dark .mc-hero h1 em { color: var(--mc-brand); }
.mc-lead {
  max-width: 62ch;
  color: var(--mc-text);
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  font-weight: 650;
}

.mc-copy-stack-hero {
  max-width: 68ch;
  padding-left: 22px;
  border-left: 3px solid var(--mc-brand);
}

.mc-copy-stack-hero .mc-text-list {
  margin-top: 4px;
  padding: 20px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius-sm);
  background: color-mix(in srgb, var(--mc-surface) 78%, transparent);
}

.mc-dashboard {
  --mc-dashboard-transform: perspective(1200px) rotateZ(.55deg) rotateY(-2.4deg) rotateX(1deg);
  min-width: 0;
  margin-top: 18px;
  padding: 20px;
  position: sticky;
  top: 112px;
  z-index: 1;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius-lg);
  background: var(--mc-surface-raised);
  box-shadow: var(--mc-shadow);
  transform: var(--mc-dashboard-transform);
  transform-origin: center;
  backdrop-filter: blur(20px);
}

.mc-dashboard::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid rgba(118, 87, 255, .3);
  border-radius: 40px;
  pointer-events: none;
}

.mc-dashboard-top {
  padding-bottom: 17px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  color: var(--mc-muted);
  font-size: .76rem;
  text-align: center;
}

.mc-dashboard-date { padding: 7px 10px; border-radius: 9px; background: var(--mc-surface-soft); color: var(--mc-text); font-weight: 750; }
.mc-window-dots { display: flex; gap: 5px; }
.mc-window-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--mc-line); }
.mc-window-dots i:first-child { background: var(--mc-red); }
.mc-window-dots i:nth-child(2) { background: var(--mc-yellow); }
.mc-window-dots i:last-child { background: var(--mc-green); }

.mc-dashboard-summary {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: var(--mc-surface-soft);
}

.mc-dashboard-summary > div:first-child { display: grid; gap: 6px; }
.mc-dashboard-summary span { color: var(--mc-muted); font-size: .78rem; }
.mc-dashboard-summary strong { color: var(--mc-text); font-size: 2.75rem; line-height: 1; }
.mc-dashboard-summary small { color: var(--mc-muted); font-size: .84rem; font-weight: 650; }
.mc-ring {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(var(--mc-green) 0 78%, var(--mc-line-strong) 78%);
}

.mc-ring::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--mc-surface-soft); }
.mc-ring span { position: relative; z-index: 1; color: var(--mc-text); font-size: .77rem; font-weight: 850; }
.mc-chart {
  height: 130px;
  margin: 19px 5px 22px;
  padding: 15px 12px 0;
  display: flex;
  align-items: end;
  gap: 9px;
  border-bottom: 1px solid var(--mc-line);
  background: repeating-linear-gradient(to bottom, transparent 0 31px, var(--mc-line) 32px);
}

.mc-chart span { flex: 1; max-width: 34px; height: var(--height); border-radius: 7px 7px 1px 1px; background: linear-gradient(180deg, var(--mc-brand), var(--mc-brand-deep)); opacity: .9; }
.mc-dashboard-table { display: grid; gap: 7px; }
.mc-dashboard-table > div {
  min-height: 46px;
  padding: 9px 11px;
  display: grid;
  grid-template-columns: 1.1fr .85fr auto;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--mc-line);
  border-radius: 11px;
  font-size: .69rem;
}

.mc-dashboard-table span { display: flex; align-items: center; color: var(--mc-muted); }
.mc-dashboard-table b { color: var(--mc-text); font-weight: 750; }
.mc-dot { width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; }
.mc-dot-green { background: var(--mc-green); }
.mc-dot-yellow { background: var(--mc-yellow); }
.mc-dot-red { background: var(--mc-red); }
.mc-tag { justify-self: end; padding: 5px 8px; border-radius: 999px; font-style: normal; font-weight: 750; }
.mc-tag-green { color: var(--mc-green); background: var(--mc-green-soft); }
.mc-tag-yellow { color: var(--mc-yellow); background: var(--mc-yellow-soft); }
.mc-tag-red { color: var(--mc-red); background: var(--mc-red-soft); }
.mc-dashboard figcaption { padding: 16px 12px 1px; color: var(--mc-muted); font-size: .74rem; line-height: 1.5; text-align: center; }

/* Editorial content */
.mc-problem {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 20%, color-mix(in srgb, var(--mc-brand) 10%, transparent), transparent 28%),
    radial-gradient(circle at 94% 84%, color-mix(in srgb, var(--mc-green) 9%, transparent), transparent 25%),
    var(--mc-surface);
}

.mc-problem::before,
.mc-problem::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--mc-brand) 16%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.mc-problem::before {
  width: 360px;
  height: 360px;
  top: -220px;
  right: -120px;
}

.mc-problem::after {
  width: 190px;
  height: 190px;
  bottom: -120px;
  left: -80px;
}

.mc-problem .mc-shell {
  position: relative;
  z-index: 1;
}

.mc-problem-head {
  max-width: 1040px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.mc-problem-kicker {
  margin-bottom: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mc-brand-deep);
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.dark .mc-problem-kicker { color: var(--mc-brand); }

.mc-problem-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mc-green);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--mc-green) 13%, transparent);
}

.mc-problem-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 166px;
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.mc-problem-head h2 {
  max-width: 880px;
  scroll-margin-top: 112px;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  line-height: 1.03;
  font-weight: 760;
}

.mc-problem-head > p {
  max-width: 760px;
  margin-top: 25px;
  color: var(--mc-muted);
  font-size: clamp(1.02rem, 1.6vw, 1.17rem);
  line-height: 1.7;
}

.mc-problem-answer {
  aspect-ratio: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--mc-green) 31%, var(--mc-line));
  border-radius: 50%;
  background: color-mix(in srgb, var(--mc-green-soft) 72%, var(--mc-surface));
  box-shadow:
    0 18px 46px color-mix(in srgb, var(--mc-green) 13%, transparent),
    inset 0 0 0 8px color-mix(in srgb, var(--mc-surface) 62%, transparent);
  text-align: center;
  transform: rotate(2.5deg);
}

.mc-problem-answer strong {
  color: var(--mc-green);
  font-size: 2.8rem;
  line-height: .95;
  letter-spacing: -.06em;
}

.mc-problem-answer span {
  max-width: 90px;
  margin-top: 8px;
  color: var(--mc-text);
  font-size: .72rem;
  line-height: 1.35;
  font-weight: 800;
}

.mc-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 2.5vw, 28px);
  align-items: stretch;
}

.mc-problem-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius-lg);
  box-shadow: var(--mc-shadow-sm);
}

.mc-problem-card::after {
  content: "";
  width: 190px;
  height: 190px;
  position: absolute;
  top: -112px;
  right: -92px;
  border-radius: 50%;
  background: currentColor;
  opacity: .055;
  pointer-events: none;
}

.mc-problem-card-risk {
  color: var(--mc-red);
  background: color-mix(in srgb, var(--mc-red-soft) 33%, var(--mc-surface));
}

.mc-problem-card-solution {
  color: var(--mc-brand-deep);
  border-color: color-mix(in srgb, var(--mc-brand) 28%, var(--mc-line));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--mc-brand-soft) 48%, var(--mc-surface)), var(--mc-surface) 54%);
}

.dark .mc-problem-card-solution { color: var(--mc-brand); }

.mc-problem-card-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
}

.mc-problem-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, currentColor 10%, var(--mc-surface));
}

.mc-problem-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-problem-label {
  display: block;
  margin-bottom: 7px;
  color: currentColor;
  font-size: .7rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.mc-problem-card h3 {
  max-width: 560px;
  color: var(--mc-text);
  font-size: clamp(1.35rem, 2.2vw, 1.82rem);
  line-height: 1.2;
  font-weight: 760;
}

.mc-problem-card > p {
  margin-top: 22px;
  color: var(--mc-muted);
  font-size: .98rem;
  line-height: 1.7;
}

.mc-problem-card > p + p { margin-top: 12px; }

.mc-problem-risk-list,
.mc-problem-check-list {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.mc-problem-risk-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.mc-problem-risk-list li {
  min-height: 48px;
  padding: 11px 12px 11px 34px;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--mc-red) 13%, var(--mc-line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--mc-surface) 84%, transparent);
  color: var(--mc-muted);
  font-size: .82rem;
  line-height: 1.45;
}

.mc-problem-risk-list li::before {
  content: "×";
  position: absolute;
  left: 13px;
  top: 10px;
  color: var(--mc-red);
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
}

.mc-problem-formula {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mc-problem-formula span {
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--mc-brand) 18%, var(--mc-line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--mc-surface) 82%, transparent);
  color: var(--mc-text);
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 780;
}

.mc-problem-formula span::before {
  content: "+";
  margin-right: 6px;
  color: var(--mc-brand-deep);
  font-weight: 900;
}

.dark .mc-problem-formula span::before { color: var(--mc-brand); }

.mc-problem-course-video {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--mc-brand) 20%, var(--mc-line));
  border-radius: 24px;
  background: color-mix(in srgb, var(--mc-surface-raised) 88%, var(--mc-brand-soft));
  box-shadow: 0 18px 42px rgba(57, 39, 143, .12);
}

.mc-media-card {
  scroll-margin-top: 110px;
  isolation: isolate;
}

.mc-media-card figure { overflow: hidden; }

.mc-media-card figure img {
  transition: transform .45s ease, filter .45s ease;
}

.mc-media-card:hover figure img { transform: scale(1.025); }

.mc-media-card-play {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .34);
  color: #fff;
  box-shadow: 0 14px 34px rgba(19, 11, 61, .34);
}

.mc-media-card-lock {
  z-index: 2;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  background: rgba(39, 28, 91, .8);
  box-shadow: 0 14px 34px rgba(17, 11, 48, .38);
  backdrop-filter: blur(10px);
}

.mc-media-card-lock > span {
  position: absolute;
  inset: -9px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(118, 87, 255, .28);
  filter: blur(13px);
}

.mc-media-card-lock svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-media-card-locked figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(19, 14, 43, .08), rgba(19, 14, 43, .5));
}

.mc-media-card-locked figure img {
  filter: saturate(.78) brightness(.82);
}

.mc-problem-video-head {
  text-align: center;
}

.mc-problem-video-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 11px;
  border: 1px solid color-mix(in srgb, var(--mc-brand) 24%, var(--mc-line));
  border-radius: 999px;
  color: var(--mc-brand-deep);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dark .mc-problem-video-head > span { color: #c9bdff; }

.mc-problem-video-head h4 {
  margin: 12px 0 0;
  color: var(--mc-text);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.2;
}

.mc-problem-video-head p {
  max-width: 48ch;
  margin: 9px auto 0;
  color: var(--mc-muted);
  font-size: .83rem;
  line-height: 1.55;
}

.mc-problem-video-frame {
  margin-top: 20px;
}

.mc-problem-video-media {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--mc-brand) 18%, var(--mc-line));
  border-radius: 19px;
  background: #17122e;
  box-shadow: 0 18px 40px rgba(28, 19, 76, .22);
}

.mc-problem-video-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mc-problem-video-locked {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.mc-problem-video-locked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 14, 43, .12), rgba(19, 14, 43, .56));
}

.mc-problem-video-locked img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .3s ease;
}

.mc-problem-video-locked > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  color: #fff;
  background: rgba(39, 28, 91, .78);
  box-shadow: 0 16px 34px rgba(17, 11, 48, .35);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.mc-problem-video-locked svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (hover: hover) {
  .mc-problem-video-locked:hover img { transform: scale(1.025); }
}

.mc-problem-video-frame figcaption {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--mc-muted);
  font-size: .72rem;
  line-height: 1.35;
}

.mc-problem-video-frame figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mc-problem-video-frame figcaption i {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mc-brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--mc-brand) 14%, transparent);
}

.mc-problem-video-frame figcaption svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-problem-check-list { gap: 12px; }

.mc-problem-check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--mc-muted);
  font-size: .91rem;
  line-height: 1.55;
}

.mc-problem-check-list li::before {
  content: "✓";
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 0;
  top: .13em;
  border-radius: 50%;
  background: var(--mc-green-soft);
  color: var(--mc-green);
  font-size: .7rem;
  font-weight: 950;
}

.mc-method { background: linear-gradient(180deg, var(--mc-bg), color-mix(in srgb, var(--mc-brand-soft) 35%, var(--mc-bg))); }
.mc-method-overview {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: 20px;
  align-items: start;
}

.mc-method-card {
  min-width: 0;
  padding: clamp(28px, 3.2vw, 40px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mc-line);
  border-radius: 30px;
  box-shadow: var(--mc-shadow-sm);
}

.mc-method-card::before {
  content: "";
  width: 190px;
  height: 190px;
  position: absolute;
  top: -105px;
  right: -78px;
  border-radius: 50%;
  pointer-events: none;
}

.mc-method-card-data {
  background:
    radial-gradient(circle at 0 100%, color-mix(in srgb, var(--mc-green-soft) 58%, transparent), transparent 34%),
    var(--mc-surface-raised);
}

.mc-method-card-data::before {
  border: 1px solid color-mix(in srgb, var(--mc-brand) 15%, transparent);
  box-shadow: 0 0 0 28px color-mix(in srgb, var(--mc-brand) 4%, transparent);
}

.mc-method-card-result {
  border-color: rgba(255, 255, 255, .12);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(167, 143, 255, .3), transparent 38%),
    linear-gradient(145deg, #231c4c 0%, #3c2c83 52%, #6548df 100%);
  box-shadow: 0 24px 64px rgba(52, 35, 137, .24);
}

.mc-method-card-result::before {
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, .035);
}

.mc-method-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.mc-method-card-index {
  min-width: 42px;
  min-height: 29px;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--mc-brand) 20%, var(--mc-line));
  border-radius: 999px;
  background: var(--mc-brand-soft);
  color: var(--mc-brand-deep);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.mc-method-card-eyebrow {
  display: block;
  color: var(--mc-brand-deep);
  font-size: .69rem;
  font-weight: 880;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dark .mc-method-card-data .mc-method-card-eyebrow,
.dark .mc-method-card-data .mc-method-card-index { color: var(--mc-brand); }

.mc-method-card-head h3 {
  margin-top: 7px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.14;
}

.mc-method-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--mc-brand-soft);
  color: var(--mc-brand-deep);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--mc-brand) 14%, transparent);
}

.mc-method-card-icon svg,
.mc-method-proof-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-method-card-lead {
  margin-top: 28px !important;
  max-width: 58ch;
  color: var(--mc-muted);
  font-size: .95rem;
  line-height: 1.68;
}

.mc-method-metrics {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  position: relative;
  z-index: 1;
}

.mc-method-metrics li {
  min-height: 48px;
  padding: 11px 12px 11px 36px;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid var(--mc-line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--mc-surface) 78%, transparent);
  color: var(--mc-text);
  font-size: .78rem;
  line-height: 1.35;
  font-weight: 720;
}

.mc-method-metrics li::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 15px;
  top: 50%;
  border: 3px solid color-mix(in srgb, var(--mc-brand) 34%, var(--mc-brand-deep));
  border-radius: 50%;
  transform: translateY(-50%);
}

.mc-method-card-footer {
  margin-top: 20px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--mc-line);
  color: var(--mc-muted);
  font-size: .76rem;
}

.mc-method-card-footer > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mc-green);
  box-shadow: 0 0 0 5px var(--mc-green-soft);
}

.mc-method-card-result .mc-method-card-index,
.mc-method-card-result .mc-method-card-icon {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.mc-method-card-result .mc-method-card-eyebrow { color: #c8bbff; }
.mc-method-card-result .mc-method-card-head h3 { color: #fff; }

.mc-method-card-result .mc-method-metrics { margin-top: 28px; }

.mc-method-card-result .mc-method-metrics li {
  border-color: rgba(255, 255, 255, .11);
  background: rgba(255, 255, 255, .075);
  color: rgba(255, 255, 255, .88);
}

.mc-method-card-result .mc-method-metrics li::before {
  border-color: #b8a7ff;
}

.mc-method-proof {
  margin-top: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 17px;
  background: rgba(10, 7, 35, .22);
}

.mc-method-proof-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, .1);
  color: #d9d0ff;
}

.mc-method-proof-icon svg { width: 21px; height: 21px; }
.mc-method-proof strong { color: #fff; font-size: .84rem; }
.mc-method-proof p { margin-top: 4px; color: rgba(255, 255, 255, .68); font-size: .76rem; line-height: 1.45; }

.mc-method-path {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 9px;
  align-items: center;
}

.mc-method-path span {
  min-width: 0;
  padding: 10px 8px;
  display: grid;
  gap: 2px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: .72rem;
  text-align: center;
}

.mc-method-path span b { color: #c8bbff; font-size: .58rem; letter-spacing: .1em; }
.mc-method-path i { color: rgba(255, 255, 255, .46); font-size: 1.1rem; font-style: normal; }

.mc-method-summary {
  margin-top: 22px;
  padding-top: 20px;
  display: grid;
  gap: 9px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.mc-method-summary p { color: rgba(255, 255, 255, .68); font-size: .82rem; line-height: 1.55; }
.mc-method-summary strong { color: #fff; font-size: .92rem; }

.mc-method .mc-heading-spaced { padding-top: 2px; }
.mc-method .mc-heading-spaced > .mc-copy-stack {
  max-width: 76ch;
  padding: 26px 30px;
  border-left: 3px solid var(--mc-brand);
  border-radius: 0 var(--mc-radius-sm) var(--mc-radius-sm) 0;
  background: var(--mc-surface);
}

.mc-risk-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mc-risk-card { min-height: 220px; padding: 26px; border: 1px solid var(--mc-line); border-radius: var(--mc-radius); background: var(--mc-surface); box-shadow: var(--mc-shadow-sm); }
.mc-risk-card > span,
.mc-feature-number { color: var(--mc-brand-deep); font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.dark .mc-risk-card > span,
.dark .mc-feature-number { color: var(--mc-brand); }
.mc-risk-card h3 { margin-top: 48px; font-size: 1.28rem; }
.mc-risk-card p { margin-top: 10px; color: var(--mc-muted); font-size: .92rem; line-height: 1.65; }
.mc-quote { margin-top: 18px; padding: 30px 34px; display: grid; grid-template-columns: 170px 1fr; gap: 28px; align-items: center; border-radius: var(--mc-radius); color: #fff; background: linear-gradient(125deg, #2a234d, #6245e6); box-shadow: var(--mc-shadow-sm); }
.mc-quote span { font-size: .73rem; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; opacity: .72; }
.mc-quote p { font-size: clamp(1.1rem, 2.3vw, 1.45rem); line-height: 1.48; font-weight: 680; }

.mc-light-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mc-light-card {
  min-width: 0;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mc-line);
  border-top: 5px solid currentColor;
  border-radius: var(--mc-radius);
  background: var(--mc-surface);
  box-shadow: var(--mc-shadow-sm);
}

.mc-light-card::before { content: ""; width: 150px; height: 150px; position: absolute; top: -76px; right: -62px; border-radius: 50%; background: currentColor; opacity: .07; }
.mc-light-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: currentColor; }
.mc-light-icon span { width: 15px; height: 15px; border: 4px solid #fff; border-radius: 50%; }
.mc-light-green { color: var(--mc-green); }
.mc-light-yellow { color: var(--mc-yellow); }
.mc-light-red { color: var(--mc-red); }
.mc-light-card h3 { margin-top: 23px; color: var(--mc-text); font-size: 1.55rem; }
.mc-light-card p { margin-top: 9px; color: var(--mc-muted); line-height: 1.62; }
.mc-light-card ul { margin: 23px 0 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.mc-light-card li { padding-left: 20px; position: relative; color: var(--mc-muted); font-size: .92rem; line-height: 1.58; }
.mc-light-card li::before { content: ""; width: 7px; height: 7px; position: absolute; left: 0; top: .64em; border-radius: 50%; background: currentColor; }

.mc-insight {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--mc-brand) 26%, var(--mc-line));
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--mc-brand-soft) 76%, transparent), transparent 35%),
    radial-gradient(circle at 0 100%, color-mix(in srgb, var(--mc-green-soft) 66%, transparent), transparent 32%),
    var(--mc-surface-raised);
  box-shadow: var(--mc-shadow);
}

.mc-insight::before {
  content: "";
  width: 240px;
  height: 240px;
  position: absolute;
  top: -140px;
  right: -100px;
  border: 1px solid color-mix(in srgb, var(--mc-brand) 14%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 34px color-mix(in srgb, var(--mc-brand) 4%, transparent);
  pointer-events: none;
}

.mc-insight-wide { margin-top: 28px; }

.mc-insight-head {
  max-width: 900px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.mc-insight-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #5034d3, #8067ff);
  box-shadow: 0 14px 30px rgba(83, 54, 208, .24);
  font-size: 1.45rem;
  font-weight: 950;
}

.mc-insight-eyebrow {
  display: block;
  color: var(--mc-brand-deep);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.dark .mc-insight-eyebrow { color: var(--mc-brand); }

.mc-insight h3 {
  margin-top: 7px;
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  line-height: 1.08;
}

.mc-insight-head p {
  max-width: 72ch;
  margin-top: 13px;
  color: var(--mc-muted);
  font-size: .98rem;
  line-height: 1.68;
}

.mc-insight-intro {
  margin-top: 13px;
  display: grid;
  gap: 4px;
}

.mc-insight-head .mc-insight-intro p { margin-top: 0; }

.mc-insight-rule {
  margin-top: 30px;
  padding: 15px 20px;
  display: grid;
  grid-template-columns: 1fr minmax(60px, .3fr) 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--mc-line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--mc-surface) 72%, transparent);
  color: var(--mc-muted);
  font-size: .84rem;
  font-weight: 760;
}

.mc-insight-rule span { text-align: right; }
.mc-insight-rule strong { color: var(--mc-text); }

.mc-insight-rule i {
  height: 2px;
  position: relative;
  background: linear-gradient(90deg, var(--mc-red), var(--mc-yellow), var(--mc-green));
}

.mc-insight-rule i::before,
.mc-insight-rule i::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
}

.mc-insight-rule i::before { left: 0; background: var(--mc-red); }
.mc-insight-rule i::after { right: 0; background: var(--mc-green); }

.mc-insight-scenarios {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.mc-insight-scenario {
  min-width: 0;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--mc-line);
  border-radius: 24px;
  background: var(--mc-surface);
  box-shadow: var(--mc-shadow-sm);
}

.mc-insight-scenario-stop {
  border-color: color-mix(in srgb, var(--mc-red) 24%, var(--mc-line));
  background: color-mix(in srgb, var(--mc-red-soft) 38%, var(--mc-surface));
}

.mc-insight-scenario-work {
  border-color: color-mix(in srgb, var(--mc-green) 24%, var(--mc-line));
  background: color-mix(in srgb, var(--mc-green-soft) 38%, var(--mc-surface));
}

.mc-insight-scenario > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mc-insight-scenario-number {
  color: var(--mc-muted);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.mc-insight-scenario-label {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 880;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mc-insight-scenario-stop .mc-insight-scenario-label { color: var(--mc-red); background: var(--mc-red-soft); }
.mc-insight-scenario-work .mc-insight-scenario-label { color: var(--mc-green); background: var(--mc-green-soft); }

.mc-insight-scenario h4 {
  margin: 22px 0 0;
  color: var(--mc-text);
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
  line-height: 1.18;
}

.mc-insight-scenario > p {
  margin-top: 12px;
  color: var(--mc-muted);
  font-size: .88rem;
  line-height: 1.65;
}

.mc-insight-scenario > .mc-insight-transition {
  margin-top: 18px;
  padding: 10px 13px;
  border-left: 3px solid var(--mc-green);
  border-radius: 0 10px 10px 0;
  background: color-mix(in srgb, var(--mc-green-soft) 62%, transparent);
  color: var(--mc-text);
  font-weight: 800;
}

.mc-insight-costs {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mc-insight-costs span {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--mc-red) 20%, var(--mc-line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--mc-surface) 70%, transparent);
  color: var(--mc-muted);
  font-size: .7rem;
  font-weight: 760;
}

.mc-insight-positive-list {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  list-style: none;
}

.mc-insight-positive-list li {
  min-height: 48px;
  padding: 11px 12px 11px 35px;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--mc-green) 17%, var(--mc-line));
  border-radius: 13px;
  background: color-mix(in srgb, var(--mc-surface) 72%, transparent);
  color: var(--mc-text);
  font-size: .74rem;
  line-height: 1.35;
  font-weight: 700;
}

.mc-insight-positive-list li::before {
  content: "✓";
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 11px;
  top: 50%;
  border-radius: 50%;
  background: var(--mc-green-soft);
  color: var(--mc-green);
  font-size: .62rem;
  font-weight: 950;
  transform: translateY(-50%);
}

.mc-insight-verdict {
  margin-top: 22px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  border-radius: 15px;
}

.mc-insight-verdict > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: .9rem;
  font-weight: 950;
}

.mc-insight-verdict > div { display: grid; gap: 6px; }
.mc-insight-verdict p { color: var(--mc-muted); font-size: .77rem; line-height: 1.5; }
.mc-insight-verdict p strong { color: var(--mc-text); }
.mc-insight-verdict-stop { background: color-mix(in srgb, var(--mc-red-soft) 76%, transparent); }
.mc-insight-verdict-stop > span { background: var(--mc-red); }
.mc-insight-verdict-work { background: color-mix(in srgb, var(--mc-green-soft) 76%, transparent); }
.mc-insight-verdict-work > span { background: var(--mc-green); }

.mc-insight-output {
  margin-top: 20px;
  padding: clamp(24px, 3vw, 34px);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 95% 15%, rgba(255, 255, 255, .13), transparent 27%),
    linear-gradient(135deg, #261f52, #6043db);
  box-shadow: 0 20px 50px rgba(51, 35, 133, .22);
}

.mc-insight-output-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.mc-insight-output-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.mc-insight-output-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-insight-output-head div > span {
  color: rgba(255, 255, 255, .62);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.mc-insight-output h4 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.mc-insight-output-lead {
  max-width: 80ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  line-height: 1.6;
}

.mc-insight-output-list {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  list-style: none;
}

.mc-insight-output-list li {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
}

.mc-insight-output-list li > span {
  color: #cbbfff;
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.mc-insight-output-list p {
  margin-top: 7px;
  color: rgba(255, 255, 255, .88);
  font-size: .74rem;
  line-height: 1.4;
  font-weight: 700;
}

/* Lead form */
.mc-free {
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(168, 144, 255, .28), transparent 32%),
    linear-gradient(135deg, #1c1738 0%, #352675 46%, #6043db 100%);
}

.mc-free::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.mc-free-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
  position: relative;
}

.mc-free-copy { padding-top: 20px; }
.mc-free h2 { color: #fff; font-size: clamp(2.25rem, 4.4vw, 3.75rem); line-height: 1.08; font-weight: 740; }
.mc-free-copy > p { margin-top: 22px; color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.72; }
.mc-free .mc-copy-stack { margin-top: 24px; color: rgba(255,255,255,.76); }
.mc-free .mc-copy-stack strong,
.mc-free .mc-copy-stack h3 { color: #fff; }
.mc-check-list,
.mc-x-list { margin: 24px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.mc-check-list li,
.mc-x-list li { padding-left: 29px; position: relative; color: inherit; line-height: 1.58; }
.mc-check-list li::before { content: "✓"; position: absolute; left: 0; top: -.02em; color: #69dfa9; font-weight: 900; }
.mc-x-list li::before { content: "×"; position: absolute; left: 0; top: -.1em; color: var(--mc-red); font-size: 1.28rem; font-weight: 900; }

.mc-lead-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  background: rgba(255,255,255,.11);
  box-shadow: 0 32px 90px rgba(7, 3, 27, .28);
  backdrop-filter: blur(22px);
}

.mc-lead-card-top { margin-bottom: 28px; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.mc-video-badge { padding: 9px 12px; border-radius: 999px; background: #fff; color: #352968; font-size: .74rem; font-weight: 850; }
.mc-duration { max-width: 240px; color: rgba(255,255,255,.68); font-size: .76rem; line-height: 1.45; text-align: right; }
.mc-lead-card > .mc-media-card { margin-bottom: 24px; }
.mc-lead-form { position: relative; }
.mc-lead-form-content {
  display: grid;
  gap: 15px;
  transition: filter .35s ease, opacity .35s ease;
}
.mc-lead-form.is-captcha-loading .mc-lead-form-content,
.mc-lead-form.is-captcha-error .mc-lead-form-content {
  filter: blur(5px);
  opacity: .48;
  pointer-events: none;
  user-select: none;
}
.mc-captcha-loader {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(22, 14, 57, .48);
  color: #fff;
  text-align: center;
  backdrop-filter: blur(2px);
  transition: opacity .3s ease, visibility .3s ease;
}
.mc-lead-form.is-captcha-ready .mc-captcha-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.mc-captcha-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255,255,255,.24);
  border-top-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(124, 92, 255, .35);
  animation: mc-captcha-spin .8s linear infinite;
}
.mc-captcha-loader-text { max-width: 260px; font-size: .82rem; font-weight: 800; line-height: 1.45; }
.mc-lead-form.is-captcha-error .mc-captcha-spinner {
  border-color: rgba(255,194,191,.28);
  border-top-color: #ffc2bf;
  animation: none;
}
@keyframes mc-captcha-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .mc-captcha-spinner { animation-duration: 1.6s; }
  .mc-lead-form-content,
  .mc-captcha-loader { transition: none; }
}
.mc-lead-form label:not(.mc-consent) { color: #fff; font-size: .84rem; font-weight: 750; }
.mc-field { display: grid; gap: 8px; }
.mc-input-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.mc-field input,
.mc-input-row input {
  min-width: 0;
  width: 100%;
  height: 56px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  background: rgba(10, 7, 31, .42);
  color: #fff;
}

.mc-field input::placeholder,
.mc-input-row input::placeholder { color: rgba(255,255,255,.52); }
.mc-input-row .mc-button { min-height: 56px; max-width: 220px; padding-inline: 20px; background: #fff; color: #352968 !important; box-shadow: none; }
.mc-consent { color: rgba(255,255,255,.74); font-size: .74rem; line-height: 1.52; }
.mc-consent a { text-decoration: underline; text-underline-offset: 2px; }
.mc-form-note { color: rgba(255,255,255,.56); font-size: .72rem; }
.mc-form-status { min-height: 1.3em; color: #b8ffdc; font-size: .82rem; font-weight: 750; }
.mc-form-status:not(:empty) { margin-top: 16px; padding: 13px 15px; border: 1px solid rgba(99,223,162,.28); border-radius: 13px; background: rgba(99,223,162,.1); line-height: 1.5; }
.mc-form-status.mc-form-error { color: #ffc2bf; }
.mc-form-status.mc-form-error:not(:empty) { border-color: rgba(255,123,116,.3); background: rgba(255,123,116,.1); }
.mc-unlocked-video { margin-top: 25px; }
.mc-unlocked-copy { max-width: none; margin-bottom: 21px; color: rgba(255,255,255,.76); font-size: .92rem; }
.mc-unlocked-copy strong,
.mc-unlocked-copy h3 { color: #fff; }
.mc-unlocked-copy .mc-text-list { color: rgba(255,255,255,.76); }
.mc-unlocked-label { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; color: #b8ffdc; font-size: .8rem; font-weight: 800; }
.mc-unlocked-label span { width: 8px; height: 8px; border-radius: 50%; background: #63dfa2; box-shadow: 0 0 16px rgba(99, 223, 162, .8); }
.mc-unlocked-video .mc-media-card { margin-top: 24px; }

/* Value and offer */
.mc-cost { background: var(--mc-surface); }
.mc-cost-grid {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.mc-cost-grid > .mc-heading { position: sticky; top: 118px; }
.mc-cost-panel { padding: 14px; border: 1px solid var(--mc-line); border-radius: 28px; background: var(--mc-bg); box-shadow: var(--mc-shadow-sm); }
.mc-cost-content { max-width: none; padding: clamp(22px, 3vw, 34px); }
.mc-cost-content .mc-button { justify-self: start; }
.mc-cost-line,
.mc-cost-total { min-height: 64px; padding: 15px 18px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-bottom: 1px solid var(--mc-line); }
.mc-cost-line span { color: var(--mc-muted); font-size: .92rem; }
.mc-cost-line b { color: var(--mc-red); text-align: right; font-size: .86rem; }
.mc-cost-total { margin-top: 10px; border: 0; border-radius: 17px; color: #fff; background: #282149; }
.mc-cost-total span { font-size: .88rem; opacity: .72; }
.mc-cost-total strong { font-size: 1.28rem; text-transform: uppercase; letter-spacing: .04em; }

.mc-offer { background: var(--mc-bg); }
.mc-offer-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 280px); gap: 44px; align-items: end; }
.mc-offer-head > div:first-child { max-width: 830px; }
.mc-price {
  padding: 24px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(118, 87, 255, .24);
  border-radius: 20px;
  background: var(--mc-brand-soft);
  box-shadow: var(--mc-shadow-sm);
}
.mc-price span,
.mc-price small { color: var(--mc-muted); font-size: .74rem; }
.mc-price strong { color: var(--mc-text); font-size: 1.52rem; line-height: 1.25; }

.mc-feature-showcase {
  margin-top: clamp(72px, 8vw, 108px);
  padding: clamp(28px, 4vw, 46px);
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--mc-brand) 20%, var(--mc-line));
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--mc-brand-soft) 82%, transparent), transparent 32%),
    var(--mc-surface-raised);
  box-shadow: var(--mc-shadow);
}

.mc-feature-showcase::before {
  content: "";
  width: 260px;
  height: 260px;
  position: absolute;
  top: -168px;
  right: -112px;
  border: 1px solid color-mix(in srgb, var(--mc-brand) 15%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 34px color-mix(in srgb, var(--mc-brand) 4%, transparent);
  pointer-events: none;
}

.mc-feature-heading {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.mc-feature-heading h2 { max-width: 690px; }

.mc-feature-heading > span {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mc-brand), color-mix(in srgb, var(--mc-brand) 4%, transparent));
}

.mc-feature-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.mc-feature {
  --mc-feature-accent: var(--mc-brand);
  min-width: 0;
  min-height: 230px;
  padding: clamp(24px, 3vw, 32px);
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid color-mix(in srgb, var(--mc-feature-accent) 20%, var(--mc-line));
  border-radius: 24px;
  background: color-mix(in srgb, var(--mc-feature-accent) 4%, var(--mc-surface));
  box-shadow: var(--mc-shadow-sm);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.mc-feature::before {
  content: "";
  height: 4px;
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  background: linear-gradient(90deg, var(--mc-feature-accent), color-mix(in srgb, var(--mc-feature-accent) 14%, transparent));
}

.mc-feature::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  z-index: -1;
  top: -88px;
  right: -76px;
  border: 1px solid color-mix(in srgb, var(--mc-feature-accent) 12%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--mc-feature-accent) 3%, transparent);
}

.mc-feature:nth-child(2) { --mc-feature-accent: var(--mc-green); }
.mc-feature:nth-child(3) { --mc-feature-accent: #4b86f7; }
.mc-feature:nth-child(4) { --mc-feature-accent: #8a63ef; }
.mc-feature:nth-child(5) { --mc-feature-accent: #d28a21; }
.mc-feature:nth-child(6) { --mc-feature-accent: var(--mc-red); grid-column: span 5; }
.mc-feature:nth-child(7) { --mc-feature-accent: #6546dc; grid-column: span 7; }
.mc-feature:first-child { grid-column: 1 / -1; }

.mc-feature-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.mc-feature-number {
  min-width: 52px;
  min-height: 32px;
  padding: 7px 12px;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--mc-feature-accent) 18%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--mc-feature-accent) 10%, transparent);
  color: var(--mc-feature-accent);
}

.dark .mc-feature-number { color: color-mix(in srgb, var(--mc-feature-accent) 76%, #fff); }

.mc-feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--mc-feature-accent) 20%, transparent);
  border-radius: 15px;
  background: color-mix(in srgb, var(--mc-feature-accent) 10%, var(--mc-surface));
  color: var(--mc-feature-accent);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--mc-feature-accent) 10%, transparent);
}

.mc-feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-feature-content { position: relative; z-index: 1; }
.mc-feature h3 { margin-top: 25px; font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.22; }
.mc-feature p { margin-top: 11px; color: var(--mc-muted); font-size: .93rem; line-height: 1.65; }

.mc-feature .mc-text-list {
  margin-top: 18px;
  gap: 8px;
  color: var(--mc-muted);
  font-size: .86rem;
  line-height: 1.5;
}

.mc-feature .mc-text-list li {
  min-height: 42px;
  padding: 10px 12px 10px 34px;
  border: 1px solid color-mix(in srgb, var(--mc-feature-accent) 12%, var(--mc-line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--mc-surface) 72%, transparent);
}

.mc-feature .mc-text-list li::before {
  width: 6px;
  height: 6px;
  left: 14px;
  top: 1.22em;
  background: var(--mc-feature-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--mc-feature-accent) 11%, transparent);
}

.mc-feature:nth-child(7) .mc-text-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (hover: hover) {
  .mc-feature:hover {
    border-color: color-mix(in srgb, var(--mc-feature-accent) 34%, var(--mc-line));
    box-shadow: var(--mc-shadow);
    transform: translateY(-3px);
  }
}

.mc-offer-cta {
  margin-top: 18px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--mc-radius);
  background: linear-gradient(115deg, #4f32cf, #8266f5);
  color: #fff;
  box-shadow: 0 22px 52px rgba(86, 56, 223, .2);
}

.mc-offer-cta > div { display: grid; gap: 5px; }
.mc-offer-cta strong { font-size: 1.15rem; }
.mc-offer-cta span { color: rgba(255,255,255,.75); font-size: .81rem; line-height: 1.5; }

/* Fit, date and author */
.mc-fit { background: var(--mc-surface); }
.mc-fit-grid { margin-top: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.mc-fit-card { padding: clamp(30px, 4vw, 44px); border: 1px solid var(--mc-line); border-radius: 28px; }
.mc-fit-yes { border-color: color-mix(in srgb, var(--mc-green) 28%, transparent); background: var(--mc-green-soft); }
.mc-fit-no { background: var(--mc-bg); }
.mc-fit-label { display: inline-flex; padding: 7px 10px; border-radius: 999px; font-size: .71rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.mc-fit-yes .mc-fit-label { background: var(--mc-green); color: #fff; }
.mc-fit-no .mc-fit-label { background: var(--mc-red-soft); color: var(--mc-red); }
.mc-fit-card h3 { margin-top: 26px; font-size: clamp(1.5rem, 2.7vw, 2.05rem); line-height: 1.2; }
.mc-fit-card > h3:first-child { margin-top: 0; }
.mc-fit-card > p { margin-top: 14px; color: var(--mc-muted); line-height: 1.65; }
.mc-fit-card .mc-check-list,
.mc-fit-card .mc-x-list { color: var(--mc-muted); }
.mc-disclaimer {
  max-width: 92ch;
  margin: 22px auto 0 !important;
  padding: 22px 28px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius-sm);
  color: var(--mc-muted);
  background: var(--mc-bg);
  font-size: .8rem;
  line-height: 1.65;
  text-align: center;
}

.mc-freshness { background: var(--mc-bg); }
.mc-freshness-grid { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: clamp(48px, 8vw, 105px); align-items: start; }
.mc-date-card {
  aspect-ratio: 1;
  padding: 30px;
  position: sticky;
  top: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(118, 87, 255, .22);
  border-radius: 34px;
  background: linear-gradient(145deg, var(--mc-surface), var(--mc-brand-soft));
  box-shadow: var(--mc-shadow);
  transform: rotate(-2deg);
}

.mc-date-card span { color: var(--mc-muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; text-align: center; }
.mc-date-card strong { color: var(--mc-brand-deep); font-size: 6.2rem; line-height: .92; }
.dark .mc-date-card strong { color: var(--mc-brand); }
.mc-date-card b { color: var(--mc-text); font-size: 1.08rem; text-align: center; }
.mc-timeline { margin-top: 30px; display: flex; align-items: center; gap: 9px; color: var(--mc-muted); font-size: .73rem; font-weight: 700; }
.mc-timeline i { width: 26px; height: 1px; background: var(--mc-line); }

.mc-author { background: var(--mc-surface); }
.mc-author-grid { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr); gap: clamp(50px, 8vw, 100px); align-items: center; }
.mc-author-photo { min-height: 590px; position: relative; overflow: hidden; border-radius: 32px; background: var(--mc-bg); box-shadow: var(--mc-shadow); }
.mc-author-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 62% center; }
.mc-author-photo::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(18, 13, 42, .48)); pointer-events: none; }
.mc-author-photo span { position: absolute; z-index: 2; left: 28px; bottom: 27px; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.92); color: #352968; font-size: .74rem; font-weight: 850; }
.mc-author-list { margin: 27px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.mc-author-list span { padding: 9px 12px; border: 1px solid var(--mc-line); border-radius: 999px; color: var(--mc-muted); background: var(--mc-bg); font-size: .78rem; line-height: 1.35; }
.mc-author blockquote { margin-top: 28px; padding: 21px 24px; border-left: 3px solid var(--mc-brand); border-radius: 0 16px 16px 0; background: var(--mc-brand-soft); color: var(--mc-text); font-size: 1.03rem; line-height: 1.65; font-weight: 650; }

/* FAQ and final CTA */
.mc-faq { background: var(--mc-bg); }
.mc-faq-grid { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: clamp(48px, 8vw, 98px); align-items: start; }
.mc-faq-grid > .mc-heading { position: sticky; top: 118px; }
.mc-accordion { display: grid; gap: 11px; }
.mc-accordion details { border: 1px solid var(--mc-line); border-radius: 18px; background: var(--mc-surface); box-shadow: var(--mc-shadow-sm); overflow: hidden; }
.mc-accordion details[open] { border-color: rgba(118, 87, 255, .26); }
.mc-accordion summary {
  min-height: 72px;
  padding: 19px 58px 19px 23px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--mc-text);
  font-weight: 760;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.mc-accordion summary::-webkit-details-marker { display: none; }
.mc-accordion summary span,
.mc-accordion summary span::after { content: ""; width: 15px; height: 2px; position: absolute; right: 22px; background: var(--mc-brand); transition: transform .2s ease; }
.mc-accordion summary span::after { right: 0; transform: rotate(90deg); }
.mc-accordion details[open] summary span::after { transform: rotate(0); }
.mc-accordion details p { padding: 0 58px 21px 23px; color: var(--mc-muted); font-size: .92rem; line-height: 1.7; }
.mc-accordion details p + p { padding-top: 0; }
.mc-accordion details p a { color: var(--mc-brand-deep); font-weight: 750; }
.mc-accordion details .mc-text-list { padding: 0 58px 22px 23px; color: var(--mc-muted); font-size: .92rem; line-height: 1.65; }

.mc-final {
  padding: clamp(96px, 10vw, 142px) 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(154, 130, 255, .52), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(54, 211, 169, .2), transparent 28%),
    linear-gradient(135deg, #1b1636, #4933a9 65%, #6d52e8);
}

.mc-final::before {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  right: -170px;
  top: -180px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}

.mc-final-inner { max-width: 840px; display: flex; flex-direction: column; align-items: center; position: relative; text-align: center; }
.mc-final-badge { padding: 9px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.09); color: rgba(255,255,255,.8); font-size: .74rem; font-weight: 800; }
.mc-final h2 { color: #fff; }
.mc-final p { max-width: 68ch; margin-top: 18px; color: rgba(255,255,255,.78); font-size: 1.06rem; line-height: 1.7; }
.mc-final .mc-copy-stack { max-width: 68ch; margin-top: 20px; color: rgba(255,255,255,.78); }
.mc-final .mc-copy-stack p { margin-top: 0; }
.mc-final .mc-final-badge { margin-top: 28px; }
.mc-final-price { margin: 30px 0 23px; display: grid; gap: 3px; }
.mc-final-price span { color: rgba(255,255,255,.64); font-size: .74rem; }
.mc-final-price strong { color: #fff; font-size: 2.25rem; }
.mc-final small { margin-top: 16px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* Entrance motion */
.mc-reveal {
  --mc-reveal-offset: 16px;
  opacity: 0;
  transform: translateY(var(--mc-reveal-offset));
  transition: opacity .58s ease, transform .58s cubic-bezier(.2,.72,.2,1);
}
.mc-reveal.is-visible { --mc-reveal-offset: 0px; opacity: 1; transform: translateY(var(--mc-reveal-offset)); }
.mc-dashboard.mc-reveal { transform: translateY(var(--mc-reveal-offset)) var(--mc-dashboard-transform); }

@media (min-width: 1101px) {
  .mc-copy-stack-hero .mc-text-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
}

@media (max-width: 1100px) {
  .mc-hero-grid { grid-template-columns: 1fr; }
  .mc-hero-copy { max-width: 820px; }
  .mc-dashboard { --mc-dashboard-transform: rotate(.35deg); width: min(680px, 100%); margin: 18px auto 0; position: relative; top: auto; }
  .mc-risk-grid { grid-template-columns: repeat(2, 1fr); }
  .mc-feature { grid-column: span 6 !important; }
  .mc-feature:first-child { grid-column: 1 / -1 !important; }
  .mc-faq-grid { grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr); }
}

@media (max-width: 820px) {
  .mc-section { padding: 76px 0; }
  .mc-problem-grid { grid-template-columns: 1fr; }
  .mc-method-overview { grid-template-columns: 1fr; }
  .mc-insight-scenarios { grid-template-columns: 1fr; }
  .mc-insight-output-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mc-insight-output-list li:last-child { grid-column: 1 / -1; }
  .mc-copy-grid,
  .mc-light-grid,
  .mc-free-grid,
  .mc-cost-grid,
  .mc-author-grid,
  .mc-faq-grid { grid-template-columns: 1fr; }
  .mc-copy-grid > .mc-copy-stack:nth-child(2) { margin-top: 0; }
  .mc-free-grid,
  .mc-cost-grid,
  .mc-author-grid,
  .mc-faq-grid { gap: 38px; }
  .mc-cost-grid > .mc-heading,
  .mc-faq-grid > .mc-heading,
  .mc-date-card { position: relative; top: auto; }
  .mc-offer-head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .mc-feature-showcase { padding: 32px; border-radius: 30px; }
  .mc-feature-heading { grid-template-columns: 1fr; gap: 18px; }
  .mc-feature-heading > span { width: 100%; }
  .mc-price { width: min(100%, 320px); }
  .mc-fit-grid { grid-template-columns: 1fr; }
  .mc-freshness-grid { grid-template-columns: 210px 1fr; gap: 40px; }
  .mc-author-photo { min-height: 520px; max-width: 590px; }
  .mc-quote { grid-template-columns: 1fr; gap: 10px; }
  .mc-offer-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .mc-shell { width: min(100% - 28px, 1180px); }
  .mc-section { padding: 64px 0; }
  .mc-hero { min-height: 0; padding: 108px 0 68px; }
  .mc-hero::before,
  .mc-orb { display: none; }
  .mc-hero h1 { font-size: clamp(2.45rem, 11.4vw, 3.4rem); line-height: 1.04; }
  .mc-copy-stack-hero { padding-left: 16px; }
  .mc-copy-stack-hero .mc-text-list { padding: 18px; }
  .mc-heading h2,
  .mc-offer h2,
  .mc-final h2,
  .mc-free h2 { font-size: clamp(2rem, 9vw, 2.65rem); line-height: 1.1; }
  .mc-problem-title-row { grid-template-columns: 1fr; gap: 22px; }
  .mc-problem-head h2 { font-size: clamp(2.15rem, 10vw, 3rem); line-height: 1.06; }
  .mc-problem-answer {
    width: fit-content;
    min-height: 64px;
    aspect-ratio: auto;
    padding: 11px 20px;
    flex-direction: row;
    gap: 12px;
    border-radius: 999px;
    transform: none;
  }
  .mc-problem-answer strong { font-size: 2rem; }
  .mc-problem-answer span { max-width: 118px; margin-top: 0; text-align: left; }
  .mc-problem-card { padding: 24px; border-radius: 25px; }
  .mc-problem-card-head { grid-template-columns: 50px minmax(0, 1fr); gap: 14px; }
  .mc-problem-icon { width: 50px; height: 50px; border-radius: 15px; }
  .mc-problem-icon svg { width: 23px; height: 23px; }
  .mc-problem-risk-list { grid-template-columns: 1fr; }
  .mc-problem-course-video { padding: 17px; border-radius: 20px; }
  .mc-problem-video-frame figcaption { align-items: flex-start; flex-direction: column; }
  .mc-method-overview { margin-top: 32px; gap: 15px; }
  .mc-method-card { padding: 24px; border-radius: 24px; }
  .mc-method-card-head { grid-template-columns: minmax(0, 1fr) auto; gap: 13px; }
  .mc-method-card-index { grid-column: 1; grid-row: 1; justify-self: start; }
  .mc-method-card-head > div { grid-column: 1; grid-row: 2; }
  .mc-method-card-icon { grid-column: 2; grid-row: 1 / span 2; width: 48px; height: 48px; }
  .mc-method-metrics { grid-template-columns: 1fr; }
  .mc-method-card-result .mc-method-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mc-method-card-result .mc-method-metrics li { min-height: 58px; padding: 10px 9px 10px 30px; font-size: .72rem; }
  .mc-method-card-result .mc-method-metrics li::before { left: 12px; }
  .mc-method-path { grid-template-columns: 1fr; gap: 6px; }
  .mc-method-path i { line-height: 1; transform: rotate(90deg); justify-self: center; }
  .mc-actions,
  .mc-actions .mc-button { width: 100%; }
  .mc-button { min-height: 52px; }
  .mc-dashboard { --mc-dashboard-transform: none; padding: 12px; border-radius: 22px; }
  .mc-dashboard::before { display: none; }
  .mc-dashboard-top { grid-template-columns: auto 1fr; text-align: left; }
  .mc-dashboard-date { grid-column: 1 / -1; justify-self: start; }
  .mc-dashboard-summary { padding: 18px; }
  .mc-dashboard-table > div { grid-template-columns: 1fr auto; }
  .mc-dashboard-table em { display: none; }
  .mc-copy-grid > .mc-copy-stack,
  .mc-copy-panel,
  .mc-light-card,
  .mc-feature,
  .mc-fit-card { padding: 24px; }
  .mc-risk-grid,
  .mc-light-grid,
  .mc-feature-grid { grid-template-columns: 1fr; }
  .mc-feature-showcase { padding: 22px; border-radius: 26px; }
  .mc-feature-grid { margin-top: 28px; gap: 13px; }
  .mc-feature { min-height: 0; grid-column: auto !important; }
  .mc-feature:first-child { grid-column: auto !important; }
  .mc-feature h3 { margin-top: 22px; }
  .mc-feature:nth-child(7) .mc-text-list { grid-template-columns: 1fr; }
  .mc-risk-card { min-height: 190px; }
  .mc-risk-card h3 { margin-top: 35px; }
  .mc-insight { padding: 24px; border-radius: 26px; }
  .mc-insight-head { grid-template-columns: 1fr; gap: 15px; }
  .mc-insight-mark { width: 48px; height: 48px; border-radius: 15px; }
  .mc-insight-rule { grid-template-columns: 1fr; gap: 10px; text-align: left; }
  .mc-insight-rule span { text-align: left; }
  .mc-insight-rule i { width: 100%; }
  .mc-insight-positive-list { grid-template-columns: 1fr; }
  .mc-insight-output-list { grid-template-columns: 1fr; }
  .mc-insight-output-list li:last-child { grid-column: auto; }
  .mc-method .mc-heading-spaced > .mc-copy-stack { padding: 22px; }
  .mc-lead-card { padding: 23px; border-radius: 24px; }
  .mc-lead-card-top { align-items: flex-start; flex-direction: column; }
  .mc-duration { max-width: none; text-align: left; }
  .mc-input-row { grid-template-columns: 1fr; }
  .mc-input-row .mc-button { width: 100%; max-width: none; }
  .mc-cost-line { align-items: flex-start; flex-direction: column; gap: 6px; }
  .mc-cost-line b { text-align: left; }
  .mc-cost-content .mc-button,
  .mc-offer-cta .mc-button,
  .mc-final .mc-button { width: 100%; }
  .mc-offer-cta { padding: 24px; }
  .mc-freshness-grid { grid-template-columns: 1fr; }
  .mc-date-card { width: 184px; border-radius: 28px; }
  .mc-date-card strong { font-size: 5rem; }
  .mc-timeline { align-items: flex-start; flex-direction: column; }
  .mc-timeline i { width: 1px; height: 14px; margin-left: 5px; }
  .mc-author-photo { min-height: 420px; }
  .mc-accordion summary { min-height: 66px; padding: 17px 52px 17px 19px; }
  .mc-accordion details p { padding: 0 20px 19px; }
  .mc-accordion details .mc-text-list { padding: 0 20px 20px; }
  .mc-disclaimer { padding: 20px; text-align: left; }
  .mc-final-price strong { font-size: 1.8rem; }
}

@media (max-width: 360px) {
  .mc-shell { width: min(100% - 22px, 1180px); }
  .mc-hero h1 { font-size: 2.25rem; }
  .mc-dashboard-summary strong { font-size: 2.25rem; }
  .mc-ring { width: 66px; height: 66px; }
}

@media (prefers-reduced-motion: reduce) {
  .mc-page *,
  .mc-page *::before,
  .mc-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .mc-reveal { --mc-reveal-offset: 0px; opacity: 1; transform: none; }
}
