.mc-page {
  --mc-bg: #f5f5fa;
  --mc-surface: #ffffff;
  --mc-surface-soft: #ececf4;
  --mc-text: #17152a;
  --mc-muted: #67637a;
  --mc-line: rgba(29, 25, 55, .11);
  --mc-brand: #7657ff;
  --mc-brand-deep: #5738e8;
  --mc-brand-soft: #ebe7ff;
  --mc-green: #1caa72;
  --mc-green-soft: #dff8ed;
  --mc-yellow: #e6a61b;
  --mc-yellow-soft: #fff3cd;
  --mc-red: #e25555;
  --mc-red-soft: #ffe4e3;
  --mc-shadow: 0 26px 70px rgba(35, 27, 83, .12);
  background: var(--mc-bg);
  color: var(--mc-text);
  overflow: hidden;
}

.dark .mc-page {
  --mc-bg: #11101b;
  --mc-surface: #1b1929;
  --mc-surface-soft: #242135;
  --mc-text: #f8f7ff;
  --mc-muted: #b6b1ca;
  --mc-line: rgba(255, 255, 255, .1);
  --mc-brand: #9a84ff;
  --mc-brand-deep: #7c60fa;
  --mc-brand-soft: #28223f;
  --mc-green-soft: rgba(28, 170, 114, .14);
  --mc-yellow-soft: rgba(230, 166, 27, .14);
  --mc-red-soft: rgba(226, 85, 85, .14);
  --mc-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

.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); letter-spacing: -.035em; }
.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% - 40px)); margin-inline: auto; }
.mc-section { padding: clamp(76px, 9vw, 128px) 0; position: relative; }

.mc-hero {
  min-height: 820px;
  padding: clamp(132px, 14vw, 180px) 0 88px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 18%, rgba(118, 87, 255, .19), transparent 33%),
    radial-gradient(circle at 20% 82%, rgba(75, 202, 190, .13), transparent 32%),
    var(--mc-bg);
}

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

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

.mc-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr); gap: clamp(54px, 7vw, 98px); align-items: center; }
.mc-hero-copy { position: relative; z-index: 2; }
.mc-kicker, .mc-section-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mc-brand-deep);
  font-size: .78rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.dark .mc-kicker, .dark .mc-section-number { color: var(--mc-brand); }
.mc-kicker span { width: 28px; height: 2px; background: currentColor; }
.mc-hero h1 { max-width: 760px; margin-top: 25px; font-size: clamp(3.2rem, 6vw, 6.15rem); line-height: .98; font-weight: 680; }
.mc-hero h1 em { color: var(--mc-brand-deep); font-style: normal; }
.dark .mc-hero h1 em { color: var(--mc-brand); }
.mc-lead { max-width: 650px; margin-top: 28px !important; color: var(--mc-muted); font-size: clamp(1.08rem, 1.8vw, 1.28rem); line-height: 1.65; }

.mc-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.mc-button {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s 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 rgba(118, 87, 255, .35); 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: white !important; box-shadow: 0 16px 34px rgba(87, 56, 232, .24); }
.mc-button-primary:hover { box-shadow: 0 20px 42px rgba(87, 56, 232, .34); }
.mc-button-secondary { background: var(--mc-surface); color: var(--mc-text) !important; border-color: var(--mc-line); }
.mc-button-secondary:hover { border-color: rgba(118, 87, 255, .38); }
.mc-button-light { background: #fff; color: #2d2460 !important; box-shadow: 0 14px 34px rgba(25, 16, 68, .2); }

.mc-hero-meta { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 34px; }
.mc-hero-meta div { min-width: 112px; display: grid; gap: 3px; }
.mc-hero-meta strong { color: var(--mc-text); font-size: .96rem; }
.mc-hero-meta span { color: var(--mc-muted); font-size: .76rem; }

.mc-dashboard {
  --mc-dashboard-transform: perspective(1200px) rotateZ(.9deg) rotateY(-3deg) rotateX(1.5deg);
  position: relative;
  z-index: 1;
  padding: 20px;
  border: 1px solid var(--mc-line);
  border-radius: 28px;
  background: color-mix(in srgb, var(--mc-surface) 92%, transparent);
  box-shadow: var(--mc-shadow);
  transform: var(--mc-dashboard-transform);
  transform-origin: center;
}
.mc-dashboard::before { content: ""; position: absolute; inset: -14px; border: 1px solid rgba(118, 87, 255, .28); border-radius: 34px; z-index: -1; pointer-events: none; }
.mc-dashboard-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-bottom: 17px; color: var(--mc-muted); font-size: .77rem; }
.mc-dashboard-date { padding: 6px 9px; border-radius: 8px; background: var(--mc-surface-soft); color: var(--mc-text); font-weight: 700; }
.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 { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-radius: 19px; 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: .85rem; font-weight: 600; }
.mc-ring { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--mc-green) 0 78%, var(--mc-line) 78%); position: relative; }
.mc-ring::after { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: var(--mc-surface-soft); }
.mc-ring span { position: relative; z-index: 1; color: var(--mc-text); font-size: .78rem; font-weight: 800; }
.mc-chart { height: 128px; margin: 18px 5px 22px; display: flex; align-items: end; gap: 9px; padding: 15px 12px 0; 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: 6px 6px 1px 1px; background: linear-gradient(180deg, var(--mc-brand), var(--mc-brand-deep)); opacity: .88; }
.mc-dashboard-table { display: grid; gap: 7px; }
.mc-dashboard-table > div { min-height: 44px; padding: 8px 10px; display: grid; grid-template-columns: 1.1fr .8fr auto; gap: 7px; align-items: center; border: 1px solid var(--mc-line); border-radius: 10px; 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: 700; }
.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 7px; border-radius: 999px; font-style: normal; font-weight: 700; }
.mc-tag-green { color: var(--mc-green); background: var(--mc-green-soft); }.mc-tag-yellow { color: #a56e00; background: var(--mc-yellow-soft); }.mc-tag-red { color: var(--mc-red); background: var(--mc-red-soft); }
.mc-dashboard figcaption { padding-top: 15px; color: var(--mc-muted); font-size: .73rem; text-align: center; }

.mc-heading { max-width: 730px; }
.mc-heading-wide { max-width: 900px; }
.mc-heading h2, .mc-offer h2, .mc-final h2 { margin-top: 17px; font-size: clamp(2.25rem, 5vw, 4.35rem); line-height: 1.04; font-weight: 680; }
.mc-heading > p, .mc-offer-head p { margin-top: 22px; color: var(--mc-muted); font-size: 1.08rem; line-height: 1.7; }

.mc-problem { background: var(--mc-surface); }
.mc-risk-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mc-risk-card { min-height: 230px; padding: 25px; border: 1px solid var(--mc-line); border-radius: 21px; background: var(--mc-bg); }
.mc-risk-card > span, .mc-feature > span { color: var(--mc-brand-deep); font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.dark .mc-risk-card > span, .dark .mc-feature > span { color: var(--mc-brand); }
.mc-risk-card h3 { margin-top: 52px; font-size: 1.27rem; }
.mc-risk-card p { margin-top: 10px; color: var(--mc-muted); font-size: .9rem; line-height: 1.6; }
.mc-quote { margin-top: 18px; padding: 28px 32px; display: grid; grid-template-columns: 170px 1fr; gap: 25px; align-items: center; border-radius: 22px; color: #fff; background: linear-gradient(125deg, #2c2553, #5f42e3); }
.mc-quote span { font-size: .73rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; opacity: .72; }
.mc-quote p { font-size: clamp(1.1rem, 2.3vw, 1.45rem); line-height: 1.45; font-weight: 650; }

.mc-method { background: var(--mc-bg); }
.mc-light-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mc-light-card { padding: 30px; border: 1px solid var(--mc-line); border-radius: 25px; background: var(--mc-surface); overflow: hidden; position: relative; }
.mc-light-card::before { content: ""; position: absolute; width: 145px; height: 145px; top: -72px; right: -58px; border-radius: 50%; background: currentColor; opacity: .08; }
.mc-light-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; 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: 26px; color: var(--mc-text); font-size: 1.5rem; }
.mc-light-card p { margin-top: 7px; color: var(--mc-muted); }
.mc-light-card ul { margin: 23px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.mc-light-card li { padding-left: 19px; color: var(--mc-muted); font-size: .9rem; line-height: 1.5; position: relative; }
.mc-light-card li::before { content: ""; position: absolute; left: 0; top: .58em; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.mc-insight { margin-top: 18px; padding: 25px 28px; display: flex; gap: 20px; align-items: flex-start; border: 1px solid rgba(118, 87, 255, .27); border-radius: 22px; background: var(--mc-brand-soft); }
.mc-insight-mark { flex: 0 0 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--mc-brand-deep); color: #fff; font-size: 1.2rem; font-weight: 900; }
.mc-insight strong { color: var(--mc-text); font-size: 1.1rem; }
.mc-insight p { margin-top: 7px; color: var(--mc-muted); line-height: 1.65; }

.mc-free { color: #fff; background: linear-gradient(135deg, #201a43 0%, #3a2b80 45%, #6043df 100%); }
.mc-free::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, black, transparent 78%); }
.mc-free-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(46px, 8vw, 100px); align-items: center; position: relative; }
.mc-free .mc-section-number { color: #c9bdff; }
.mc-free h2 { margin-top: 17px; color: #fff; font-size: clamp(2.3rem, 5vw, 4.15rem); line-height: 1.04; }
.mc-free-copy > p { margin-top: 22px; color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.7; }
.mc-check-list, .mc-x-list { margin: 25px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.mc-check-list li, .mc-x-list li { padding-left: 28px; position: relative; color: inherit; line-height: 1.5; }
.mc-check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #72e3ae; font-weight: 900; }
.mc-x-list li::before { content: "×"; position: absolute; left: 0; top: -.05em; color: var(--mc-red); font-size: 1.25rem; font-weight: 900; }
.mc-lead-card { padding: clamp(24px, 4vw, 39px); border: 1px solid rgba(255,255,255,.17); border-radius: 28px; background: rgba(255,255,255,.1); box-shadow: 0 30px 80px rgba(7, 3, 27, .23); backdrop-filter: blur(18px); }
.mc-lead-card-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 27px; }
.mc-video-badge { padding: 8px 11px; border-radius: 999px; background: #fff; color: #352968; font-size: .72rem; font-weight: 850; }
.mc-duration { color: rgba(255,255,255,.65); font-size: .76rem; }
.mc-lead-form { display: grid; gap: 14px; }
.mc-lead-form label:not(.mc-consent) { color: #fff; font-size: .83rem; font-weight: 750; }
.mc-field { display: grid; gap: 7px; }
.mc-input-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.mc-field input,
.mc-input-row input { min-width: 0; width: 100%; height: 54px; padding: 0 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(12,8,36,.36); color: #fff; }
.mc-field input::placeholder,
.mc-input-row input::placeholder { color: rgba(255,255,255,.45); }
.mc-input-row .mc-button { min-height: 54px; background: #fff; color: #352968 !important; box-shadow: none; }
.mc-consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: rgba(255,255,255,.72); font-size: .72rem; line-height: 1.5; cursor: pointer; }
.mc-consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--mc-green); }
.mc-consent a { text-decoration: underline; text-underline-offset: 2px; }
.mc-form-note { color: rgba(255,255,255,.52); font-size: .7rem; }
.mc-form-status { min-height: 1.3em; color: #b8ffdc; font-size: .8rem; font-weight: 700; }
.mc-form-status.mc-form-error { color: #ffc2bf; }
.mc-unlocked-video { margin-top: 23px; }
.mc-unlocked-label { margin-bottom: 9px; display: flex; align-items: center; gap: 8px; color: #b8ffdc; font-size: .78rem; 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 video { width: 100%; display: block; border-radius: 17px; background: #090713; }

.mc-cost { background: var(--mc-surface); }
.mc-cost-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.mc-cost-panel { padding: 14px; border: 1px solid var(--mc-line); border-radius: 25px; background: var(--mc-bg); }
.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: .91rem; }
.mc-cost-line b { color: var(--mc-red); text-align: right; font-size: .85rem; }
.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: 1fr auto; gap: 40px; align-items: end; }
.mc-offer-head > div:first-child { max-width: 780px; }
.mc-price { min-width: 190px; padding: 19px 21px; display: grid; gap: 4px; border: 1px solid var(--mc-line); border-radius: 18px; background: var(--mc-surface); }
.mc-price span, .mc-price small { color: var(--mc-muted); font-size: .73rem; }
.mc-price strong { color: var(--mc-text); font-size: 1.75rem; }
.mc-feature-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mc-feature { min-height: 210px; padding: 25px; border: 1px solid var(--mc-line); border-radius: 21px; background: var(--mc-surface); }
.mc-feature-wide { grid-column: span 2; }
.mc-feature h3 { margin-top: 45px; font-size: 1.25rem; }
.mc-feature p { margin-top: 9px; color: var(--mc-muted); font-size: .88rem; line-height: 1.6; }
.mc-offer-cta { margin-top: 18px; padding: 29px 31px; display: flex; align-items: center; justify-content: space-between; gap: 26px; border-radius: 23px; background: linear-gradient(115deg, var(--mc-brand-deep), #8b6cff); color: #fff; }
.mc-offer-cta > div { display: grid; gap: 4px; }
.mc-offer-cta strong { font-size: 1.13rem; }
.mc-offer-cta span { color: rgba(255,255,255,.68); font-size: .79rem; }

.mc-fit { background: var(--mc-surface); }
.mc-fit-grid { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mc-fit-card { padding: clamp(27px, 4vw, 42px); border: 1px solid var(--mc-line); border-radius: 27px; }
.mc-fit-yes { 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: 28px; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.18; }
.mc-fit-card .mc-check-list, .mc-fit-card .mc-x-list { color: var(--mc-muted); }
.mc-disclaimer { max-width: 980px; margin: 20px auto 0 !important; color: var(--mc-muted); font-size: .76rem; line-height: 1.65; text-align: center; }

.mc-freshness { background: var(--mc-bg); }
.mc-freshness-grid { display: grid; grid-template-columns: 280px 1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.mc-date-card { aspect-ratio: 1; padding: 30px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid var(--mc-line); border-radius: 50%; background: var(--mc-surface); box-shadow: var(--mc-shadow); }
.mc-date-card span { color: var(--mc-muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.mc-date-card strong { color: var(--mc-brand-deep); font-size: 6.5rem; line-height: .9; }
.dark .mc-date-card strong { color: var(--mc-brand); }
.mc-date-card b { color: var(--mc-text); font-size: 1.15rem; }
.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: .9fr 1.1fr; gap: clamp(50px, 9vw, 115px); align-items: center; }
.mc-author-photo { min-height: 580px; position: relative; overflow: hidden; border-radius: 30px; background: var(--mc-bg); }
.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: 45% 0 0; background: linear-gradient(transparent, rgba(18, 13, 42, .72)); }
.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-top: 27px; display: flex; flex-wrap: wrap; gap: 8px; }
.mc-author-list span { padding: 8px 11px; border: 1px solid var(--mc-line); border-radius: 999px; color: var(--mc-muted); background: var(--mc-bg); font-size: .75rem; }
.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.6; font-weight: 650; }

.mc-faq { background: var(--mc-bg); }
.mc-faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(48px, 8vw, 100px); align-items: start; }
.mc-accordion { display: grid; gap: 10px; }
.mc-accordion details { border: 1px solid var(--mc-line); border-radius: 17px; background: var(--mc-surface); overflow: hidden; }
.mc-accordion summary { min-height: 69px; padding: 18px 53px 18px 21px; display: flex; align-items: center; color: var(--mc-text); font-weight: 750; cursor: pointer; list-style: none; position: relative; }
.mc-accordion summary::-webkit-details-marker { display: none; }
.mc-accordion summary span, .mc-accordion summary span::after { position: absolute; right: 21px; width: 14px; height: 2px; background: var(--mc-brand); content: ""; 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 54px 20px 21px; color: var(--mc-muted); font-size: .9rem; line-height: 1.65; }
.mc-accordion details p a { color: var(--mc-brand-deep); font-weight: 750; }

.mc-final { padding: clamp(90px, 11vw, 150px) 0; color: #fff; background: radial-gradient(circle at 20% 20%, rgba(142, 116, 255, .58), transparent 32%), linear-gradient(135deg, #1c173a, #4b35b2 65%, #7558f3); }
.mc-final-inner { max-width: 850px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.mc-final-badge { padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.76); font-size: .73rem; font-weight: 800; }
.mc-final h2 { color: #fff; }
.mc-final p { max-width: 680px; margin-top: 19px; color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.65; }
.mc-final-price { margin: 30px 0 22px; display: grid; gap: 2px; }
.mc-final-price span { color: rgba(255,255,255,.62); font-size: .74rem; }.mc-final-price strong { color: #fff; font-size: 2.4rem; }
.mc-final small { margin-top: 15px; color: rgba(255,255,255,.54); }

.mc-reveal { --mc-reveal-offset: 18px; opacity: 0; transform: translateY(var(--mc-reveal-offset)); transition: opacity .65s ease, transform .65s 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 (max-width: 1100px) {
  .mc-hero-grid { grid-template-columns: 1fr; }
  .mc-hero-copy { max-width: 800px; }
  .mc-dashboard { --mc-dashboard-transform: rotate(.55deg); width: min(650px, 100%); margin-inline: auto; }
  .mc-risk-grid { grid-template-columns: repeat(2, 1fr); }
  .mc-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .mc-feature-wide { grid-column: auto; }
  .mc-faq-grid { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 820px) {
  .mc-section { padding: 78px 0; }
  .mc-light-grid, .mc-free-grid, .mc-cost-grid, .mc-author-grid, .mc-faq-grid { grid-template-columns: 1fr; }
  .mc-free-grid, .mc-cost-grid, .mc-author-grid, .mc-faq-grid { gap: 42px; }
  .mc-offer-head { grid-template-columns: 1fr; align-items: start; }
  .mc-price { min-width: min(100%, 250px); }
  .mc-fit-grid { grid-template-columns: 1fr; }
  .mc-freshness-grid { grid-template-columns: 210px 1fr; gap: 42px; }
  .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(calc(100% - 28px), 1180px); }
  .mc-hero { min-height: 0; padding: 118px 0 72px; }
  .mc-hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .mc-actions, .mc-actions .mc-button { width: 100%; }
  .mc-dashboard { --mc-dashboard-transform: none; padding: 12px; border-radius: 21px; }
  .mc-dashboard::before { display: none; }
  .mc-dashboard-summary { padding: 17px; }
  .mc-dashboard-table > div { grid-template-columns: 1fr auto; }
  .mc-dashboard-table em { display: none; }
  .mc-risk-grid, .mc-light-grid, .mc-feature-grid { grid-template-columns: 1fr; }
  .mc-risk-card { min-height: 190px; }
  .mc-risk-card h3 { margin-top: 35px; }
  .mc-input-row { grid-template-columns: 1fr; }
  .mc-input-row .mc-button { width: 100%; }
  .mc-cost-line { align-items: flex-start; flex-direction: column; gap: 6px; }
  .mc-cost-line b { text-align: left; }
  .mc-freshness-grid { grid-template-columns: 1fr; }
  .mc-date-card { width: 190px; }
  .mc-date-card strong { font-size: 5.1rem; }
  .mc-timeline { align-items: flex-start; flex-direction: column; }
  .mc-timeline i { width: 1px; height: 14px; margin-left: 5px; }
  .mc-author-photo { min-height: 430px; }
  .mc-offer-cta .mc-button, .mc-final .mc-button { width: 100%; }
  .mc-lead-card-top { align-items: flex-start; flex-direction: column; }
}

@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; }
}
