@charset "utf-8";

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

:root {
    --mp-ink: #121c2f;
    --mp-muted: #5d6a7f;
    --mp-line: #dbe5f0;
    --mp-bg: #f3f7fb;
    --mp-card: #ffffff;
    --mp-blue: #2367d8;
    --mp-blue-dark: #071b33;
    --mp-green: #13a474;
    --mp-coral: #f06b42;
    --mp-gold: #dca12f;
    --mp-purple: #6b5dd3;
    --mp-shadow: 0 18px 44px rgba(23, 32, 51, 0.12);
    --mp-radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--mp-bg);
    color: var(--mp-ink);
    font-family: "Pretendard Variable", "Pretendard", "SUIT", "Noto Sans KR", "Inter", "Malgun Gothic", "맑은 고딕", AppleGothic, Dotum, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
    letter-spacing: 0;
}

.mp-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 78px;
    padding: 0 42px;
    color: #fff;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mp-header.is-scrolled,
.mp-header.is-open {
    border-bottom: 1px solid rgba(223, 230, 239, 0.92);
    background: rgba(255, 255, 255, 0.96);
    color: var(--mp-ink);
    box-shadow: 0 10px 30px rgba(23, 32, 51, 0.08);
}

.mp-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 408px;
}

.mp-brand span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 304px;
    width: 304px;
    height: 50px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--mp-blue);
    font-size: 15px;
    font-weight: 900;
    box-shadow: none;
}

.mp-brand span img {
    width: 100%;
    max-height: 44px;
    object-fit: contain;
}

.mp-header.is-scrolled .mp-brand span,
.mp-header.is-open .mp-brand span {
    border: 0;
    background: transparent;
    color: var(--mp-blue);
    box-shadow: none;
}

.mp-header.is-scrolled .mp-brand span img,
.mp-header.is-open .mp-brand span img {
    content: url("/assets/img/msu-anchor-logo-horizontal.png");
}

.mp-brand strong {
    color: inherit;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
    white-space: nowrap;
}

.mp-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.mp-nav a {
    color: inherit;
    font-size: 14px;
    font-weight: 800;
}

.mp-nav a:hover {
    color: var(--mp-green);
}

.mp-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-icon-btn,
.mp-link-btn,
.mp-primary,
.mp-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border-radius: var(--mp-radius);
    font-weight: 850;
}

.mp-icon-btn {
    width: 42px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

.mp-header.is-scrolled .mp-icon-btn,
.mp-header.is-open .mp-icon-btn {
    border-color: var(--mp-line);
    background: #fff;
}

.mp-link-btn {
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.13);
    font-size: 13px;
}

.mp-header.is-scrolled .mp-link-btn,
.mp-header.is-open .mp-link-btn {
    border-color: var(--mp-line);
    background: #fff;
}

.mp-primary {
    min-width: 168px;
    padding: 0 18px;
    border: 1px solid var(--mp-coral);
    background: var(--mp-coral);
    color: #fff;
}

.mp-primary:hover {
    border-color: #da5931;
    background: #da5931;
}

.mp-secondary {
    min-width: 154px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mp-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.mp-hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    background: var(--mp-blue-dark);
}

.mp-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%);
    background-size: 86px 86px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.6) 35%, transparent 72%);
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.6) 35%, transparent 72%);
    opacity: 0.28;
    pointer-events: none;
}

.mp-hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.mp-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06) translateX(14px);
    transition: opacity 1.35s ease, transform 7.2s ease;
    will-change: opacity, transform;
}

.mp-hero-img.is-active {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.mp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 17, 34, 0.96) 0%, rgba(5, 17, 34, 0.84) 34%, rgba(5, 17, 34, 0.32) 66%, rgba(5, 17, 34, 0.04) 100%),
        linear-gradient(180deg, rgba(5, 17, 34, 0.46) 0%, rgba(5, 17, 34, 0.08) 57%, rgba(243, 247, 251, 0.98) 100%);
}

.mp-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(1180px, calc(100% - 56px));
    min-height: 92vh;
    margin: 0 auto;
    padding: 130px 0 112px;
    color: #fff;
}

.mp-kicker,
.mp-section-head span,
.mp-showcase-copy span,
.mp-cta span {
    display: block;
    margin: 0 0 10px;
    color: var(--mp-green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.mp-hero h1 {
    max-width: 740px;
    margin: 0;
    font-size: 64px;
    line-height: 1.06;
    font-weight: 900;
    word-break: keep-all;
}

.mp-title-mobile {
    display: none;
}

.mp-copy-mobile {
    display: none;
}

.mp-title-desktop,
.mp-title-mobile,
.mp-copy-desktop,
.mp-copy-mobile {
    max-width: 100%;
}

.mp-hero-copy {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
    line-height: 1.7;
    word-break: keep-all;
}

.mp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.mp-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(850px, 100%);
    margin-top: 54px;
}

.mp-hero-stats article {
    min-height: 114px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--mp-radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.mp-hero-stats article:hover {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.mp-hero-stats strong,
.mp-hero-stats span {
    display: block;
}

.mp-hero-stats strong {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 900;
}

.mp-hero-stats span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.55;
}

.mp-intro,
.mp-purpose,
.mp-effects,
.mp-flow {
    scroll-margin-top: 104px;
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    padding: 86px 0;
}

.mp-intro {
    position: relative;
}

.mp-intro:before {
    content: "";
    position: absolute;
    top: 44px;
    right: 50%;
    left: 50%;
    z-index: -1;
    height: 520px;
    margin-right: -50vw;
    margin-left: -50vw;
    background:
        linear-gradient(180deg, rgba(222, 235, 251, 0.88), rgba(243, 247, 251, 0)),
        linear-gradient(90deg, rgba(35, 103, 216, 0.08), rgba(19, 164, 116, 0.08), rgba(240, 107, 66, 0.06));
}

.mp-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.mp-section-head h2 {
    max-width: 760px;
    margin: 0;
    color: var(--mp-ink);
    font-size: 40px;
    line-height: 1.16;
    font-weight: 900;
    word-break: keep-all;
}

.mp-section-head p {
    max-width: 520px;
    margin: 0;
    color: var(--mp-muted);
    font-size: 16px;
    word-break: keep-all;
}

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

.mp-overview-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 24px;
    align-items: stretch;
    padding: 24px;
    border: 1px solid rgba(219, 229, 240, 0.96);
    border-radius: var(--mp-radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(18, 28, 47, 0.1);
    overflow: hidden;
}

.mp-overview-panel:before {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;
    left: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(35, 103, 216, 0.46), rgba(19, 164, 116, 0.46), transparent);
    animation: mpLineSweep 4.8s ease-in-out infinite;
}

.mp-overview-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 12px 18px 6px;
}

.mp-overview-copy i,
.mp-mini-card i,
.mp-purpose-grid i,
.mp-flow-line i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--mp-radius);
    background: #eaf2ff;
    color: var(--mp-blue);
    font-size: 22px;
}

.mp-overview-copy h3 {
    margin: 26px 0 12px;
    font-size: 30px;
    line-height: 1.24;
    font-weight: 900;
}

.mp-overview-copy p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 17px;
    word-break: keep-all;
}

.mp-overview-points {
    display: grid;
    gap: 9px;
    margin-top: 24px;
}

.mp-overview-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid #e4ebf4;
    border-radius: var(--mp-radius);
    background: #f8fbff;
    color: #344054;
    font-size: 14px;
    font-weight: 800;
}

.mp-overview-points b {
    color: var(--mp-blue);
    font-size: 12px;
}

.mp-overview-visual {
    position: relative;
    min-height: 392px;
    overflow: hidden;
    border-radius: var(--mp-radius);
    background: #eef5ff;
}

.mp-overview-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.mp-visual-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--mp-radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 30px rgba(18, 28, 47, 0.14);
    color: #1d2a3f;
    font-size: 13px;
    font-weight: 900;
}

.mp-chip-a {
    top: 22px;
    left: 22px;
}

.mp-chip-b {
    right: 26px;
    bottom: 30px;
}

.mp-chip-c {
    left: 30px;
    bottom: 26px;
}

.mp-intro-card,
.mp-mini-card,
.mp-purpose-grid article,
.mp-effect-grid article,
.mp-flow-line article {
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    background: var(--mp-card);
    box-shadow: 0 14px 34px rgba(23, 32, 51, 0.07);
}

.mp-mini-card {
    display: flex;
    flex-direction: column;
    min-height: 178px;
    padding: 22px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mp-mini-card:hover,
.mp-purpose-grid article:hover,
.mp-effect-grid article:hover,
.mp-flow-line article:hover {
    border-color: rgba(35, 103, 216, 0.26);
    box-shadow: 0 18px 42px rgba(18, 28, 47, 0.11);
    transform: translateY(-4px);
}

.mp-mini-card:nth-child(2) i {
    background: #e6f8f1;
    color: var(--mp-green);
}

.mp-mini-card:nth-child(3) i {
    background: #fff0e9;
    color: var(--mp-coral);
}

.mp-mini-card:nth-child(4) i {
    background: #fff7e3;
    color: var(--mp-gold);
}

.mp-mini-card strong {
    margin-top: 24px;
    color: var(--mp-ink);
    font-size: 20px;
    font-weight: 900;
}

.mp-mini-card span {
    display: block;
    margin-top: 8px;
    color: var(--mp-muted);
    font-size: 14px;
    line-height: 1.55;
    word-break: keep-all;
}

.mp-purpose {
    padding-top: 42px;
}

.mp-section-visual {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid rgba(219, 229, 240, 0.96);
    border-radius: var(--mp-radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 54px rgba(18, 28, 47, 0.09);
    overflow: hidden;
}

.mp-section-visual-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 8px;
}

.mp-section-visual-copy span {
    display: block;
    margin-bottom: 10px;
    color: var(--mp-green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.mp-section-visual-copy h3 {
    max-width: 440px;
    margin: 0;
    color: var(--mp-ink);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    word-break: keep-all;
}

.mp-section-visual-copy p {
    max-width: 500px;
    margin: 14px 0 0;
    color: var(--mp-muted);
    font-size: 16px;
    line-height: 1.68;
    word-break: keep-all;
}

.mp-section-visual-img {
    min-height: 318px;
    overflow: hidden;
    border-radius: var(--mp-radius);
    background: #eef5ff;
}

.mp-section-visual-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.36s ease;
}

.mp-section-visual:hover .mp-section-visual-img img {
    transform: scale(1.025);
}

.mp-outcome-visual {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.mp-purpose-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.mp-purpose-grid article {
    position: relative;
    min-height: 254px;
    padding: 22px;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mp-purpose-grid b {
    position: absolute;
    top: 16px;
    right: 18px;
    color: #d5dde9;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.mp-purpose-grid i {
    margin-bottom: 30px;
}

.mp-purpose-grid article:nth-child(2) i,
.mp-purpose-grid article:nth-child(5) i {
    background: #e6f8f1;
    color: var(--mp-green);
}

.mp-purpose-grid article:nth-child(3) i {
    background: #fff7e3;
    color: var(--mp-gold);
}

.mp-purpose-grid article:nth-child(4) i {
    background: #fff0e9;
    color: var(--mp-coral);
}

.mp-purpose-grid h3,
.mp-effect-grid h3,
.mp-flow-line h3 {
    margin: 0 0 9px;
    color: var(--mp-ink);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 900;
}

.mp-purpose-grid p,
.mp-effect-grid p,
.mp-flow-line p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 14px;
    line-height: 1.58;
    word-break: keep-all;
}

.mp-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: center;
    padding: 74px max(28px, calc((100vw - 1180px) / 2));
    background: #10243a;
    color: #fff;
}

.mp-showcase-copy h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 900;
    word-break: keep-all;
}

.mp-showcase-copy p {
    max-width: 520px;
    margin: 18px 0 26px;
    color: rgba(255, 255, 255, 0.72);
    word-break: keep-all;
}

.mp-showcase-copy a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--mp-radius);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 850;
}

.mp-dashboard-shot {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--mp-radius);
    background: #eef3f9;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.mp-dashboard-shot:before {
    content: "";
    position: absolute;
    inset: 42px 0 auto 170px;
    height: 220px;
    background:
        radial-gradient(circle at 20% 18%, rgba(35, 103, 216, 0.16), transparent 38%),
        radial-gradient(circle at 86% 8%, rgba(19, 164, 116, 0.12), transparent 34%);
    pointer-events: none;
}

.mp-shot-top {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 42px;
    padding: 0 16px;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.mp-shot-top strong {
    margin-left: 8px;
    color: #5b6680;
    font-size: 12px;
    font-weight: 900;
}

.mp-shot-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mp-shot-top span:nth-child(1) {
    background: var(--mp-coral);
}

.mp-shot-top span:nth-child(2) {
    background: var(--mp-gold);
}

.mp-shot-top span:nth-child(3) {
    background: var(--mp-green);
}

.mp-shot-body {
    position: relative;
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    min-height: 430px;
}

.mp-shot-body aside {
    position: relative;
    z-index: 1;
    padding: 24px 16px;
    background: linear-gradient(180deg, #1e2735 0%, #172130 100%);
}

.mp-shot-side-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
}

.mp-shot-side-brand i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #8fc2ff;
}

.mp-shot-body aside b {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    margin-bottom: 10px;
    padding: 0 10px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 800;
    background: transparent;
}

.mp-shot-body aside b.active {
    background: var(--mp-blue);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(35, 103, 216, 0.32);
}

.mp-shot-body aside b i {
    flex: 0 0 16px;
    color: inherit;
    font-size: 13px;
}

.mp-shot-body section {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.mp-shot-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
}

.mp-shot-title span {
    color: var(--mp-blue);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.mp-shot-title strong {
    display: block;
    margin-top: 4px;
    color: #152033;
    font-size: 22px;
    font-weight: 950;
}

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

.mp-shot-stats article {
    position: relative;
    min-height: 110px;
    padding: 16px;
    border-radius: var(--mp-radius);
    background: #fff;
    box-shadow: 0 10px 22px rgba(23, 32, 51, 0.08);
}

.mp-shot-stats article:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--mp-radius) var(--mp-radius) 0 0;
}

.mp-shot-stats article.is-blue:before {
    background: var(--mp-blue);
}

.mp-shot-stats article.is-green:before {
    background: var(--mp-green);
}

.mp-shot-stats article.is-coral:before {
    background: var(--mp-coral);
}

.mp-shot-stats article > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.mp-shot-stats .is-blue > i {
    background: var(--mp-blue);
}

.mp-shot-stats .is-green > i {
    background: var(--mp-green);
}

.mp-shot-stats .is-coral > i {
    background: var(--mp-coral);
}

.mp-shot-stats article span,
.mp-shot-stats article strong,
.mp-shot-stats article em {
    display: block;
}

.mp-shot-stats article span {
    margin-top: 10px;
    color: #5d6a7f;
    font-size: 12px;
    font-weight: 800;
}

.mp-shot-stats article strong {
    margin-top: 1px;
    color: #101827;
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
}

.mp-shot-stats article em {
    margin-top: 7px;
    color: #768397;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.mp-shot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 14px;
    margin-top: 16px;
}

.mp-shot-chart,
.mp-shot-donut {
    border-radius: var(--mp-radius);
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(23, 32, 51, 0.08);
}

.mp-shot-chart {
    min-height: 164px;
    padding: 16px 18px 14px;
}

.mp-shot-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mp-shot-chart-head strong {
    color: #182236;
    font-size: 14px;
    font-weight: 950;
}

.mp-shot-chart-head span {
    color: #7c8798;
    font-size: 11px;
    font-weight: 800;
}

.mp-shot-bars {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    gap: 12px;
    height: 104px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #edf2f7;
}

.mp-shot-bars span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    height: 100%;
    min-width: 0;
}

.mp-shot-bars span b {
    display: block;
    width: min(100%, 30px);
    height: var(--h);
    min-height: 24px;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, #2d7cf6 0%, #19b892 100%);
    box-shadow: 0 10px 18px rgba(35, 103, 216, 0.18);
    transform-origin: bottom;
    animation: mpBarRise 0.85s ease both;
}

.mp-shot-bars span:nth-child(2) b {
    animation-delay: 0.08s;
}

.mp-shot-bars span:nth-child(3) b {
    animation-delay: 0.16s;
}

.mp-shot-bars span:nth-child(4) b {
    animation-delay: 0.24s;
}

.mp-shot-bars span:nth-child(5) b {
    animation-delay: 0.32s;
}

.mp-shot-bars em {
    color: #7c8798;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.mp-shot-donut {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 164px;
    padding: 16px;
    text-align: center;
}

.mp-shot-donut > span {
    display: grid;
    place-items: center;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #fff 0 50%, transparent 51%),
        conic-gradient(var(--mp-blue) 0 32%, var(--mp-green) 32% 72%, var(--mp-coral) 72% 100%);
}

.mp-shot-donut strong,
.mp-shot-donut em {
    display: block;
    grid-area: 1 / 1;
}

.mp-shot-donut strong {
    margin-top: -8px;
    color: #172033;
    font-size: 24px;
    font-weight: 950;
}

.mp-shot-donut em {
    margin-top: 32px;
    color: #7b8796;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.mp-shot-donut p {
    margin: 12px 0 0;
    color: #5f6c7f;
    font-size: 12px;
    font-weight: 900;
}

.mp-shot-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.mp-shot-list div {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid #e6edf6;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
}

.mp-shot-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: #edf4ff;
    color: var(--mp-blue);
    font-size: 12px;
}

.mp-shot-list span {
    min-width: 0;
    overflow: hidden;
    color: #26344b;
    font-size: 12px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mp-shot-list em {
    color: #7a8798;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.mp-effect-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.mp-effect-grid article {
    min-height: 218px;
    padding: 24px;
    border-top: 4px solid var(--mp-blue);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mp-effect-grid article:nth-child(2) {
    border-top-color: var(--mp-green);
}

.mp-effect-grid article:nth-child(3) {
    border-top-color: var(--mp-gold);
}

.mp-effect-grid article:nth-child(4) {
    border-top-color: var(--mp-coral);
}

.mp-effect-grid article:nth-child(5) {
    border-top-color: #6b5dd3;
}

.mp-effect-grid strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 28px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: #edf3ff;
    color: var(--mp-blue);
    font-size: 12px;
    font-weight: 900;
}

.mp-flow {
    padding-top: 42px;
}

.mp-flow-line {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mp-flow-line article {
    position: relative;
    min-height: 246px;
    padding: 24px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mp-flow-line article:after {
    content: "";
    position: absolute;
    top: 47px;
    right: -14px;
    width: 14px;
    height: 2px;
    background: var(--mp-line);
}

.mp-flow-line article:last-child:after {
    display: none;
}

.mp-flow-line i {
    margin-bottom: 34px;
}

.mp-flow-line article:nth-child(2) i {
    background: #e6f8f1;
    color: var(--mp-green);
}

.mp-flow-line article:nth-child(3) i {
    background: #fff7e3;
    color: var(--mp-gold);
}

.mp-flow-line article:nth-child(4) i {
    background: #fff0e9;
    color: var(--mp-coral);
}

.mp-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: min(1180px, calc(100% - 56px));
    margin: 20px auto 86px;
    padding: 34px;
    border-radius: var(--mp-radius);
    background: #fff;
    box-shadow: var(--mp-shadow);
}

.mp-cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: 34px;
    line-height: 1.24;
    font-weight: 900;
    word-break: keep-all;
}

.mp-cta p {
    margin: 12px 0 0;
    color: var(--mp-muted);
    word-break: keep-all;
}

.mp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 86px;
    padding: 0 max(28px, calc((100vw - 1180px) / 2));
    background: #101724;
    color: rgba(255, 255, 255, 0.76);
}

.mp-footer strong {
    color: #fff;
}

.mp-footer-logo {
    display: block;
    width: 304px;
    max-width: 58vw;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.js-ready .mp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .mp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes mpLineSweep {
    0% {
        opacity: 0.2;
        transform: translateX(-18%);
    }
    45% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
        transform: translateX(18%);
    }
}

@keyframes mpBarRise {
    0% {
        opacity: 0.35;
        transform: scaleY(0.28);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@media (max-width: 1080px) {
    .mp-header {
        padding: 0 24px;
    }

    .mp-brand {
        min-width: auto;
    }

    .mp-brand span {
        flex-basis: 250px;
        width: 250px;
        height: 44px;
    }

    .mp-nav {
        gap: 16px;
    }

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

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

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

    .mp-overview-visual {
        min-height: 360px;
    }

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

@media (max-width: 820px) {
    .mp-header {
        height: auto;
        min-height: 68px;
        flex-wrap: wrap;
        padding: 12px 16px;
    }

    .mp-brand strong {
        font-size: 13px;
    }

    .mp-brand span {
        flex-basis: 220px;
        width: 220px;
        height: 40px;
        padding: 0;
    }

    .mp-brand span img {
        max-height: 36px;
    }

    .mp-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .mp-header.is-scrolled .mp-nav,
    .mp-header.is-open .mp-nav {
        border-top-color: var(--mp-line);
    }

    .mp-nav a {
        flex: 0 0 auto;
        font-size: 13px;
    }

    .mp-actions {
        margin-left: auto;
    }

    .mp-link-btn {
        display: none;
    }

    .mp-hero,
    .mp-hero-inner {
        min-height: 860px;
    }

    .mp-hero-img {
        object-position: 62% center;
    }

    .mp-hero-overlay {
        background:
            linear-gradient(180deg, rgba(7, 22, 42, 0.93) 0%, rgba(7, 22, 42, 0.72) 52%, rgba(7, 22, 42, 0.18) 100%),
            linear-gradient(180deg, rgba(7, 22, 42, 0) 72%, rgba(245, 248, 252, 0.98) 100%);
    }

    .mp-hero:after {
        opacity: 0.18;
    }

    .mp-hero-inner {
        width: min(100% - 32px, 620px);
        padding-top: 150px;
        padding-bottom: 84px;
    }

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

    .mp-title-desktop {
        display: none;
    }

    .mp-title-mobile {
        display: block;
    }

    .mp-copy-desktop {
        display: none;
    }

    .mp-copy-mobile {
        display: block;
    }

    .mp-hero-copy {
        font-size: 17px;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .mp-hero-stats,
    .mp-purpose-grid,
    .mp-effect-grid,
    .mp-flow-line {
        grid-template-columns: 1fr;
    }

    .mp-section-visual,
    .mp-outcome-visual {
        grid-template-columns: 1fr;
    }

    .mp-section-visual-img {
        min-height: 300px;
    }

    .mp-flow-line article:after {
        display: none;
    }

    .mp-intro,
    .mp-purpose,
    .mp-effects,
    .mp-flow,
    .mp-cta {
        width: min(100% - 32px, 620px);
    }

    .mp-intro,
    .mp-purpose,
    .mp-effects,
    .mp-flow {
        scroll-margin-top: 158px;
        padding: 64px 0;
    }

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

    .mp-overview-panel {
        padding: 18px;
    }

    .mp-overview-copy {
        padding: 8px 2px 2px;
    }

    .mp-overview-copy h3 {
        font-size: 26px;
    }

    .mp-overview-copy p {
        font-size: 16px;
    }

    .mp-overview-visual {
        min-height: 310px;
    }

    .mp-section-visual {
        gap: 14px;
        margin-bottom: 16px;
        padding: 16px;
    }

    .mp-section-visual-copy {
        padding: 4px 2px;
    }

    .mp-section-visual-copy h3 {
        font-size: 24px;
    }

    .mp-section-visual-copy p {
        font-size: 15px;
    }

    .mp-section-visual-img {
        min-height: 238px;
    }

    .mp-visual-chip {
        min-height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }

    .mp-mini-card,
    .mp-purpose-grid article,
    .mp-effect-grid article,
    .mp-flow-line article {
        min-height: auto;
    }

    .mp-mini-card strong {
        margin-top: 20px;
    }

    .mp-showcase {
        padding: 58px 16px;
    }

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

    .mp-shot-body aside {
        display: none;
    }

    .mp-dashboard-shot:before {
        left: 0;
    }

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

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

    .mp-shot-donut {
        min-height: 138px;
    }

    .mp-cta {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 64px;
        padding: 26px;
    }

    .mp-cta .mp-primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .mp-brand {
        gap: 10px;
    }

    .mp-brand span {
        flex-basis: 190px;
        width: 190px;
    }

    .mp-brand strong {
        font-size: 12px;
    }

    .mp-hero h1 {
        font-size: 34px;
    }

    .mp-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mp-primary,
    .mp-secondary {
        width: 100%;
    }

    .mp-section-head h2,
    .mp-showcase-copy h2 {
        font-size: 28px;
    }

    .mp-overview-copy h3 {
        font-size: 24px;
    }

    .mp-overview-copy p {
        font-size: 15px;
    }

    .mp-cta h2 {
        font-size: 25px;
    }

    .mp-overview-panel {
        padding: 14px;
    }

    .mp-overview-points span {
        align-items: flex-start;
        font-size: 13px;
        line-height: 1.45;
    }

    .mp-overview-visual {
        min-height: 238px;
    }

    .mp-section-visual-img {
        min-height: 210px;
    }

    .mp-chip-a {
        top: 12px;
        left: 12px;
    }

    .mp-chip-b {
        right: 12px;
        bottom: 12px;
    }

    .mp-chip-c {
        left: 12px;
        bottom: 52px;
    }

    .mp-footer {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
