.mp-audit {
    --mp-bg: #050507;
    --mp-panel: rgba(12, 12, 16, 0.92);
    --mp-panel-soft: rgba(24, 19, 39, 0.86);
    --mp-border: rgba(119, 78, 255, 0.45);
    --mp-text: #f7f7fb;
    --mp-muted: #b7b3c6;
    --mp-yellow: #fff200;
    --mp-purple: #7651f4;
    --mp-danger: #ff6b6b;
    color: var(--mp-text);
    background:
        radial-gradient(circle at 18% 12%, rgba(118, 81, 244, 0.22), transparent 34rem),
        linear-gradient(180deg, #050507 0%, #100b1f 100%);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(48px, 7vw, 96px) clamp(14px, 2.5vw, 34px);
    font-family: "Poppins", "Jost", "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.mp-audit button,
.mp-audit input,
.mp-audit select,
.mp-audit textarea,
.mp-audit h2,
.mp-audit h3,
.mp-audit h4,
.mp-audit p,
.mp-audit label,
.mp-audit span,
.mp-audit a {
    font-family: "Poppins", "Jost", "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

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

.mp-audit__shell {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
}

.mp-audit.is-report-view {
    padding: clamp(28px, 5vw, 72px) clamp(14px, 2.5vw, 34px);
}

.mp-audit.is-report-view .mp-audit__shell {
    width: 100%;
    max-width: 1680px;
}

.mp-audit.is-report-view .mp-audit__intro,
.mp-audit.is-report-view .mp-audit__progress,
.mp-audit.is-report-view .mp-audit__step[data-step="4"] > h3 {
    display: none;
}

.mp-audit.is-report-view .mp-audit__panel {
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.mp-audit.is-report-view .mp-audit__form {
    padding: 0;
}

.mp-audit.is-report-view .mp-audit__result {
    border: 0;
    background: transparent;
    padding: 0;
}

.mp-audit__intro {
    max-width: 1160px;
    margin-bottom: 28px;
}

.mp-audit__eyebrow {
    margin: 0 0 10px;
    color: var(--mp-yellow);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.mp-audit__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
}

.mp-audit__lead {
    max-width: 860px;
    margin: 0;
    color: var(--mp-muted);
    font-size: 18px;
    line-height: 1.65;
}

.mp-audit__panel {
    border: 1px solid var(--mp-border);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--mp-panel), var(--mp-panel-soft));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.mp-audit__progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.mp-audit__progress span {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    color: var(--mp-muted);
    background: rgba(0, 0, 0, 0.28);
    font-size: 14px;
    font-weight: 800;
}

.mp-audit__progress span.is-active,
.mp-audit__progress span.is-complete {
    color: #070707;
    background: var(--mp-yellow);
}

.mp-audit__form {
    padding: clamp(22px, 4vw, 44px);
}

.mp-audit__step {
    display: none;
}

.mp-audit__step.is-active {
    display: block;
    animation: mpAuditStepIn 220ms ease both;
}

@keyframes mpAuditStepIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mp-audit__step h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    line-height: 1.15;
}

.mp-audit__step p {
    margin: 0 0 22px;
    color: var(--mp-muted);
    line-height: 1.65;
}

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

.mp-audit__field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.mp-audit__field + .mp-audit__button {
    margin-top: 10px;
}

.mp-audit__field span {
    color: #fff;
    font-weight: 700;
}

.mp-audit__field small {
    color: var(--mp-muted);
    font-weight: 600;
}

.mp-audit__platforms {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 18px;
}

.mp-audit__platform {
    position: relative;
    min-height: 88px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    padding: 16px;
    color: #fff;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mp-audit__platform:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 242, 0, 0.34);
    background: rgba(255, 242, 0, 0.07);
}

.mp-audit__platform input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.mp-audit__platform.is-selected,
.mp-audit__platform:has(input:checked) {
    border-color: rgba(255, 242, 0, 0.72);
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 242, 0, 0.18), transparent 12rem),
        rgba(118, 81, 244, 0.12);
    box-shadow: 0 0 26px rgba(255, 242, 0, 0.08);
}

.mp-audit__platform-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--mp-yellow);
    background: rgba(255, 242, 0, 0.09);
    border: 1px solid rgba(255, 242, 0, 0.22);
}

.mp-audit__platform-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-audit__platform > span:last-child {
    font-size: 15px;
    font-weight: 600;
}

.mp-audit__field--profile-url {
    max-width: 820px;
}

.mp-audit input[type="url"],
.mp-audit input[type="text"],
.mp-audit input[type="email"],
.mp-audit input[type="tel"],
.mp-audit select {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0 16px;
    font: inherit;
    font-weight: 500;
    letter-spacing: 0 !important;
    outline: none;
}

.mp-audit select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-position: right 30px center !important;
    background-repeat: no-repeat !important;
    background-size: 14px 14px !important;
    padding-right: 72px !important;
}

.mp-audit select::-ms-expand {
    display: none;
}

.mp-audit select option {
    color: #101014;
}

.mp-audit input:focus,
.mp-audit select:focus {
    border-color: var(--mp-purple);
    box-shadow: 0 0 0 3px rgba(118, 81, 244, 0.18);
}

.mp-audit input:focus-visible,
.mp-audit select:focus-visible,
.mp-audit .mp-audit__button:focus-visible,
.mp-audit__platform:focus-within {
    outline: 2px solid rgba(255, 242, 0, 0.7);
    outline-offset: 3px;
}

.mp-audit input.is-invalid,
.mp-audit select.is-invalid {
    border-color: var(--mp-danger) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.16) !important;
}

.mp-audit__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.mp-audit .mp-audit__button,
.mp-audit button.mp-audit__button,
.mp-audit a.mp-audit__button {
    --mp-button-bg: var(--mp-purple);
    --mp-button-color: #fff;
    --mp-button-shadow: rgba(118, 81, 244, 0.26);
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    color: var(--mp-button-color) !important;
    background: var(--mp-button-bg) !important;
    box-shadow: 0 0 26px var(--mp-button-shadow) !important;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.mp-audit .mp-audit__button:hover,
.mp-audit .mp-audit__button:focus,
.mp-audit button.mp-audit__button:hover,
.mp-audit button.mp-audit__button:focus,
.mp-audit a.mp-audit__button:hover,
.mp-audit a.mp-audit__button:focus {
    color: var(--mp-button-color) !important;
    background: var(--mp-button-bg) !important;
    transform: translateY(-1px);
    box-shadow: 0 0 34px var(--mp-button-shadow) !important;
}

.mp-audit__button--ghost {
    --mp-button-bg: rgba(118, 81, 244, 0.18);
    --mp-button-color: #fff;
    --mp-button-shadow: rgba(118, 81, 244, 0.16);
    color: #fff;
    border: 1px solid rgba(118, 81, 244, 0.7);
}

.mp-audit__button--ghost:hover,
.mp-audit__button--ghost:focus {
    color: #fff;
    background: rgba(118, 81, 244, 0.32);
    box-shadow: 0 0 22px rgba(118, 81, 244, 0.18);
}

.mp-audit__button--link {
    margin-top: 16px;
}

.mp-audit__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--mp-muted);
    margin-top: 6px;
}

.mp-audit__check input {
    margin-top: 6px;
}

.mp-audit__message {
    margin-bottom: 18px;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 500;
    line-height: 1.5;
}

.mp-audit__message--error {
    color: #fff;
    background: rgba(255, 107, 107, 0.16);
    border: 1px solid rgba(255, 107, 107, 0.35);
}

.mp-audit__message--info {
    color: #fff;
    background: rgba(118, 81, 244, 0.16);
    border: 1px solid rgba(118, 81, 244, 0.35);
}

.mp-audit__result {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background:
        radial-gradient(circle at 15% 5%, rgba(118, 81, 244, 0.16), transparent 28rem),
        rgba(0, 0, 0, 0.24);
    padding: 22px;
}

.mp-audit__empty-state,
.mp-audit__loading-state {
    min-height: 190px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
}

.mp-audit__empty-state > span,
.mp-audit__loader {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--mp-yellow);
    background: rgba(255, 242, 0, 0.08);
    border: 1px solid rgba(255, 242, 0, 0.22);
}

.mp-audit__empty-state > span::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 22px rgba(255, 242, 0, 0.34);
}

.mp-audit__loader {
    border-color: rgba(255, 242, 0, 0.22);
}

.mp-audit__loader::before {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--mp-yellow);
    animation: mpAuditSpin 760ms linear infinite;
}

@keyframes mpAuditSpin {
    to {
        transform: rotate(360deg);
    }
}

.mp-audit__empty-state h4,
.mp-audit__loading-state h4 {
    margin: 0 0 6px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

.mp-audit__empty-state p,
.mp-audit__loading-state p {
    margin: 0 !important;
    color: var(--mp-muted) !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.mp-audit__result h4 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.mp-audit__score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.mp-audit__score span {
    color: var(--mp-muted);
    font-weight: 800;
}

.mp-audit__score strong {
    color: var(--mp-yellow);
    font-size: clamp(42px, 8vw, 72px);
    line-height: 1;
}

.mp-audit__score-ring {
    --score: 0;
    width: clamp(126px, 18vw, 164px);
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    background:
        conic-gradient(var(--mp-yellow) calc(var(--score) * 1%), rgba(255, 255, 255, 0.1) 0),
        radial-gradient(circle, rgba(118, 81, 244, 0.26), rgba(0, 0, 0, 0.1));
    box-shadow: 0 0 34px rgba(255, 242, 0, 0.12), inset 0 0 26px rgba(118, 81, 244, 0.22);
}

.mp-audit__score-ring::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(16, 13, 26, 0.96), rgba(7, 7, 10, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-audit__score-ring span,
.mp-audit__score-ring small {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.mp-audit__score-ring span {
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--mp-yellow);
    font-size: clamp(42px, 7vw, 64px);
    font-weight: 700;
    line-height: 1;
}

.mp-audit__score-ring small {
    bottom: 17%;
    color: var(--mp-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.mp-audit__score-label {
    margin: 0 0 6px !important;
    color: var(--mp-yellow) !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.mp-audit__analysis-note {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    border: 1px solid rgba(255, 242, 0, 0.22);
    border-radius: 14px;
    background: rgba(255, 242, 0, 0.07);
    padding: 14px 16px;
}

.mp-audit__analysis-note strong {
    color: var(--mp-yellow);
    font-size: 14px;
    font-weight: 600;
}

.mp-audit__analysis-note span {
    color: var(--mp-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.mp-audit__mini-section {
    margin-top: 22px;
}

.mp-audit__bullets {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    color: #fff;
}

.mp-audit__bullets strong {
    font-weight: 600;
}

.mp-audit__category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.mp-audit__category {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mp-audit__category-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.mp-audit__category-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(118, 81, 244, 0.18);
    border: 1px solid rgba(118, 81, 244, 0.32);
    color: var(--mp-yellow);
}

.mp-audit__category-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-audit__category-label {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
}

.mp-audit__category strong {
    color: var(--mp-yellow);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.mp-audit__category i {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mp-yellow) var(--score), rgba(255, 255, 255, 0.12) var(--score));
}

.mp-audit__report-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(18px, 3vw, 30px);
    align-items: center;
    margin-bottom: 28px;
}

.mp-audit__report-section {
    margin-top: 24px;
}

.mp-audit__report-section h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

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

.mp-audit__priority-card,
.mp-audit__next-card {
    min-height: 138px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 242, 0, 0.2), transparent 16rem),
        linear-gradient(180deg, rgba(255, 242, 0, 0.12), rgba(255, 255, 255, 0.035));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 16px;
}

.mp-audit__priority-card {
    border-color: rgba(255, 242, 0, 0.24);
}

.mp-audit__priority-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
}

.mp-audit__priority-index {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: var(--mp-yellow);
    background: rgba(255, 242, 0, 0.1);
    border: 1px solid rgba(255, 242, 0, 0.28);
    font-size: 14px;
    font-weight: 700;
}

.mp-audit__priority-card h5 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.mp-audit__priority-card p,
.mp-audit__next-card p {
    margin: 0 !important;
    color: var(--mp-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.mp-audit__next-card {
    display: grid;
    gap: 12px;
    align-content: start;
}

.mp-audit__next-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--mp-yellow);
    background: rgba(255, 242, 0, 0.08);
    border: 1px solid rgba(255, 242, 0, 0.2);
}

.mp-audit__next-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-audit__report-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.mp-audit__report-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.mp-audit__report-card p {
    margin: 0 !important;
    color: var(--mp-muted);
    font-size: 14px;
    line-height: 1.55;
}

.mp-audit__category-list--report {
    margin-top: 24px;
}

.mp-audit__category-note {
    margin: 0 !important;
    color: var(--mp-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.mp-audit__report-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.mp-audit__print-header {
    display: none;
}

.mp-audit-dashboard {
    display: grid;
    gap: 16px;
}

.mp-audit.is-report-view .mp-audit-dashboard {
    gap: 20px;
}

.mp-audit-dashboard__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 16px;
    align-items: stretch;
}

.mp-audit.is-report-view .mp-audit-dashboard__hero {
    grid-template-columns: minmax(0, 1.16fr) minmax(410px, 0.84fr);
    gap: 20px;
}

.mp-audit-dashboard__hero-copy,
.mp-audit-dashboard__score-card,
.mp-audit-dashboard__panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
        rgba(5, 5, 8, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 18px 42px rgba(0, 0, 0, 0.22);
}

.mp-audit-dashboard__hero-copy {
    padding: clamp(22px, 3vw, 34px);
}

.mp-audit-dashboard__kicker {
    margin: 0 0 10px !important;
    color: var(--mp-yellow) !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.mp-audit-dashboard__hero h4 {
    max-width: 600px;
    margin: 0 0 14px !important;
    color: #fff;
    font-size: clamp(30px, 4.3vw, 54px) !important;
    font-weight: 600 !important;
    line-height: 1.06;
}

.mp-audit-dashboard__hero h4 span {
    color: var(--mp-yellow);
    font-weight: inherit;
}

.mp-audit-dashboard__hero-copy > p {
    max-width: 620px;
    margin: 0 !important;
    color: var(--mp-muted) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.mp-audit-dashboard__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.mp-audit-dashboard__chips span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    background: rgba(0, 0, 0, 0.24);
    color: #fff;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 400;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.mp-audit-dashboard__chips strong {
    color: var(--mp-yellow);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.mp-audit-dashboard__score-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(16px, 3vw, 28px);
    padding: clamp(22px, 3vw, 34px);
}

.mp-audit-dashboard__score-card .mp-audit__score-ring {
    width: clamp(146px, 17vw, 190px);
    margin: 0;
}

.mp-audit-dashboard__score-copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.mp-audit-dashboard__score-copy span {
    color: var(--mp-muted);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.mp-audit-dashboard__score-copy strong {
    color: var(--mp-yellow);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.1;
}

.mp-audit-dashboard__score-copy p {
    margin: 0 !important;
    color: var(--mp-muted) !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.mp-audit-dashboard__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.78fr);
    gap: 16px;
    align-items: start;
}

.mp-audit.is-report-view .mp-audit-dashboard__grid {
    grid-template-columns: minmax(0, 1.68fr) minmax(340px, 0.72fr);
    gap: 20px;
}

.mp-audit-dashboard__main,
.mp-audit-dashboard__side {
    display: grid;
    gap: 16px;
}

.mp-audit-dashboard__panel {
    padding: clamp(18px, 2.4vw, 24px);
}

.mp-audit-dashboard__section-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.mp-audit-dashboard__section-title h4 {
    margin: 0 !important;
    color: #fff;
    font-size: 19px !important;
    font-weight: 600 !important;
    line-height: 1.25;
}

.mp-audit-dashboard__section-title span {
    color: var(--mp-yellow);
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    text-transform: uppercase;
}

.mp-audit__category--strong {
    --mp-category-accent: #9be431;
}

.mp-audit__category--medium {
    --mp-category-accent: #ffd43b;
}

.mp-audit__category--weak {
    --mp-category-accent: #ff6b6b;
}

.mp-audit__category--strong .mp-audit__category-icon {
    color: #9be431;
    background: rgba(155, 228, 49, 0.11);
    border-color: rgba(155, 228, 49, 0.28);
}

.mp-audit__category--medium .mp-audit__category-icon {
    color: #ffd43b;
    background: rgba(255, 212, 59, 0.1);
    border-color: rgba(255, 212, 59, 0.26);
}

.mp-audit__category--weak .mp-audit__category-icon {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.28);
}

.mp-audit__category i {
    background: linear-gradient(90deg, var(--mp-category-accent, var(--mp-yellow)) var(--score), rgba(255, 255, 255, 0.12) var(--score));
}

.mp-audit-dashboard .mp-audit__category-list--report {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
}

.mp-audit-dashboard .mp-audit__category-list--report .mp-audit__category {
    gap: 10px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045);
    padding: 14px;
}

.mp-audit-dashboard .mp-audit__category-list--report .mp-audit__category-head {
    gap: 12px;
}

.mp-audit-dashboard .mp-audit__category-list--report .mp-audit__category-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
}

.mp-audit-dashboard .mp-audit__category-list--report .mp-audit__category-icon svg {
    width: 21px;
    height: 21px;
}

.mp-audit-dashboard .mp-audit__category-list--report .mp-audit__category-label {
    display: grid;
    gap: 4px;
    font-size: 15px;
    font-weight: 600;
}

.mp-audit-dashboard .mp-audit__category-list--report .mp-audit__category-label small {
    color: var(--mp-muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.mp-audit-dashboard .mp-audit__category-list--report .mp-audit__category strong {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.mp-audit-dashboard .mp-audit__category-list--report .mp-audit__category strong small {
    color: var(--mp-muted);
    font-size: 13px;
    font-weight: 400;
}

.mp-audit-dashboard__strategy p {
    margin: 0 0 14px !important;
    color: var(--mp-muted) !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.mp-audit-dashboard__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.mp-audit-dashboard__badges span {
    border: 1px solid rgba(255, 242, 0, 0.22);
    border-radius: 999px;
    background: rgba(255, 242, 0, 0.07);
    color: var(--mp-yellow);
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 500;
}

.mp-audit-dashboard__signals {
    display: grid;
    gap: 18px;
}

.mp-audit-dashboard__signal-group h5 {
    margin: 0 0 10px;
    color: var(--mp-yellow);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.mp-audit-dashboard__signal-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mp-audit-dashboard__signal-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.mp-audit-dashboard__signal-icon {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    margin-top: 1px;
}

.mp-audit-dashboard__signal-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-audit-dashboard__signal-icon--check {
    color: #9be431;
    background: rgba(155, 228, 49, 0.13);
}

.mp-audit-dashboard__signal-icon--warning {
    color: #ffd43b;
    background: rgba(255, 212, 59, 0.13);
}

.mp-audit-dashboard__empty {
    margin: 0 !important;
    color: var(--mp-muted) !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.mp-audit-dashboard__metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.mp-audit-dashboard__metric-grid div {
    display: grid;
    gap: 4px;
    min-height: 76px;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    padding: 12px;
}

.mp-audit-dashboard__metric-grid strong {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.mp-audit-dashboard__metric-grid span {
    color: var(--mp-muted);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
}

.mp-audit-dashboard__map-bars {
    height: 86px;
    display: flex;
    align-items: end;
    gap: 6px;
    margin-top: 16px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-audit-dashboard__map-bars span {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: end;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    overflow: hidden;
}

.mp-audit-dashboard__map-bars i {
    display: block;
    width: 100%;
    height: var(--score);
    min-height: 8px;
    border-radius: inherit;
    background: linear-gradient(180deg, var(--mp-yellow), var(--mp-purple));
}

.mp-audit-dashboard__manual {
    position: relative;
    overflow: hidden;
}

.mp-audit-dashboard__manual-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 242, 0, 0.24);
    border-radius: 14px;
    color: var(--mp-yellow);
    background: rgba(255, 242, 0, 0.08);
    margin-bottom: 14px;
}

.mp-audit-dashboard__manual-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mp-audit-dashboard__manual h4 {
    margin: 0 0 10px !important;
    color: #fff;
    font-size: 19px !important;
    font-weight: 600 !important;
}

.mp-audit-dashboard__manual p {
    margin: 0 !important;
    color: var(--mp-muted) !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.mp-audit-dashboard__recommendation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mp-audit-dashboard__recommendation-grid article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px;
}

.mp-audit-dashboard__recommendation-grid article > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--mp-yellow);
    background: rgba(255, 242, 0, 0.09);
    border: 1px solid rgba(255, 242, 0, 0.22);
    font-size: 12px;
    font-weight: 600;
}

.mp-audit-dashboard__recommendation-grid h5 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.mp-audit-dashboard__recommendation-grid p {
    margin: 0 !important;
    color: var(--mp-muted) !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.mp-audit-dashboard__cta {
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 242, 0, 0.2);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 242, 0, 0.1), rgba(118, 81, 244, 0.12)),
        rgba(255, 255, 255, 0.035);
    padding: clamp(18px, 2.4vw, 24px);
    text-align: left;
}

.mp-audit-dashboard__cta h4 {
    margin: 0 0 6px !important;
    color: #fff;
    font-size: 20px !important;
    font-weight: 600 !important;
}

.mp-audit-dashboard__cta p {
    max-width: 620px;
    margin: 0 !important;
    color: var(--mp-muted) !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.mp-audit-dashboard__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.mp-audit__button[disabled] {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.mp-audit__button.is-loading::after {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: mpAuditSpin 760ms linear infinite;
}

@media (min-width: 1180px) {
    .mp-audit__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .mp-audit__step[data-step="3"] .mp-audit__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mp-audit__category-list:not(.mp-audit__category-list--report) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .mp-audit-dashboard__hero,
    .mp-audit.is-report-view .mp-audit-dashboard__hero,
    .mp-audit-dashboard__grid {
        grid-template-columns: 1fr;
    }

    .mp-audit.is-report-view .mp-audit-dashboard__grid {
        grid-template-columns: 1fr;
    }

    .mp-audit-dashboard__score-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .mp-audit-dashboard__cta {
        align-items: flex-start;
    }

    .mp-audit-dashboard__cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .mp-audit__platforms {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mp-audit__platform {
        min-height: 78px;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 8px;
        padding: 14px 10px;
    }

    .mp-audit__field--profile-url {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .mp-audit {
        padding: 34px 12px;
    }

    .mp-audit__progress {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 8px;
        background: rgba(0, 0, 0, 0.2);
        scroll-snap-type: x proximity;
    }

    .mp-audit__progress span {
        min-width: max-content;
        min-height: 40px;
        border-radius: 10px;
        justify-content: center;
        padding: 0 13px;
        scroll-snap-align: start;
        font-size: 12px;
        font-weight: 600;
    }

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

    .mp-audit__platforms {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .mp-audit__platform {
        min-height: 72px;
        border-radius: 13px;
        padding: 10px 8px;
    }

    .mp-audit__platform-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .mp-audit__platform-icon svg {
        width: 18px;
        height: 18px;
    }

    .mp-audit__platform > span:last-child {
        font-size: 12px;
    }

    .mp-audit__field--profile-url {
        max-width: none;
    }

    .mp-audit__panel {
        border-radius: 14px;
    }

    .mp-audit__form {
        padding: 20px 14px;
    }

    .mp-audit__step h3 {
        font-size: 27px;
    }

    .mp-audit__step p {
        font-size: 14px;
        line-height: 1.55;
    }

    .mp-audit__empty-state,
    .mp-audit__loading-state {
        min-height: 160px;
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .mp-audit__category-list {
        grid-template-columns: 1fr;
    }

    .mp-audit__report-hero {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .mp-audit__report-list {
        grid-template-columns: 1fr;
    }

    .mp-audit__priority-grid,
    .mp-audit__next-grid {
        grid-template-columns: 1fr;
    }

    .mp-audit-dashboard__score-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .mp-audit-dashboard__section-title {
        display: grid;
        gap: 6px;
    }

    .mp-audit-dashboard__section-title span {
        text-align: left;
    }

    .mp-audit-dashboard__metric-grid,
    .mp-audit-dashboard__recommendation-grid {
        grid-template-columns: 1fr;
    }

    .mp-audit-dashboard .mp-audit__category-list--report .mp-audit__category-head {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .mp-audit-dashboard .mp-audit__category-list--report .mp-audit__category strong {
        grid-column: 2;
        justify-self: start;
    }

    .mp-audit-dashboard__cta,
    .mp-audit-dashboard__cta-actions {
        width: 100%;
    }

    .mp-audit__actions,
    .mp-audit__button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .mp-audit__platforms {
        grid-template-columns: 1fr;
    }

    .mp-audit__platform {
        grid-template-columns: auto minmax(0, 1fr);
        justify-items: start;
        text-align: left;
    }

    .mp-audit-dashboard__chips span {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mp-audit__step.is-active,
    .mp-audit__loader::before,
    .mp-audit__button.is-loading::after {
        animation: none;
    }

    .mp-audit .mp-audit__button,
    .mp-audit__platform {
        transition: none;
    }
}

@media print {
    body.mp-audit-printing * {
        visibility: hidden !important;
    }

    body.mp-audit-printing .mp-audit,
    body.mp-audit-printing .mp-audit [data-step="4"],
    body.mp-audit-printing .mp-audit [data-step="4"] * {
        visibility: visible !important;
    }

    body.mp-audit-printing .mp-audit {
        position: absolute;
        inset: 0 auto auto 0;
        width: 100%;
        min-height: 0;
        background: #ffffff !important;
        color: #111111 !important;
        padding: 0 !important;
    }

    body.mp-audit-printing .mp-audit__shell,
    body.mp-audit-printing .mp-audit__panel,
    body.mp-audit-printing .mp-audit__form,
    body.mp-audit-printing .mp-audit__step,
    body.mp-audit-printing .mp-audit__result {
        max-width: none !important;
        width: 100% !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #ffffff !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    body.mp-audit-printing .mp-audit__intro,
    body.mp-audit-printing .mp-audit__progress,
    body.mp-audit-printing .mp-audit__actions,
    body.mp-audit-printing .mp-audit__report-cta {
        display: none !important;
    }

    body.mp-audit-printing .mp-audit__print-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        border-bottom: 2px solid #111111;
        margin: 0 0 24px;
        padding: 0 0 16px;
    }

    body.mp-audit-printing .mp-audit__print-header strong,
    body.mp-audit-printing .mp-audit__print-header span {
        color: #111111 !important;
        font-weight: 700;
    }

    body.mp-audit-printing .mp-audit__print-header small {
        display: block;
        color: #555555 !important;
        margin-top: 4px;
    }

    body.mp-audit-printing .mp-audit__print-logo {
        max-width: 190px;
        max-height: 68px;
        object-fit: contain;
    }

    body.mp-audit-printing .mp-audit__result h4,
    body.mp-audit-printing .mp-audit__result h5,
    body.mp-audit-printing .mp-audit__result p,
    body.mp-audit-printing .mp-audit__category-label,
    body.mp-audit-printing .mp-audit__category-label small,
    body.mp-audit-printing .mp-audit__category strong,
    body.mp-audit-printing .mp-audit__score-label,
    body.mp-audit-printing .mp-audit-dashboard__section-title span,
    body.mp-audit-printing .mp-audit-dashboard__chips span,
    body.mp-audit-printing .mp-audit-dashboard__score-copy span,
    body.mp-audit-printing .mp-audit-dashboard__score-copy strong {
        color: #111111 !important;
    }

    body.mp-audit-printing .mp-audit__analysis-note,
    body.mp-audit-printing .mp-audit__priority-card,
    body.mp-audit-printing .mp-audit__next-card,
    body.mp-audit-printing .mp-audit__category,
    body.mp-audit-printing .mp-audit-dashboard__hero-copy,
    body.mp-audit-printing .mp-audit-dashboard__score-card,
    body.mp-audit-printing .mp-audit-dashboard__panel {
        break-inside: avoid;
        border-color: #dddddd !important;
        background: #f7f7f7 !important;
        box-shadow: none !important;
    }

    body.mp-audit-printing .mp-audit__score-ring {
        box-shadow: none !important;
    }
}
