.mz-home {
    --mz-blue-950: #08264a;
    --mz-blue-800: #0d477f;
    --mz-blue-700: #1261a0;
    --mz-blue-100: #dcecf8;
    --mz-blue-050: #eff7fc;
    --mz-ink: #14283d;
    --mz-muted: #5d7184;
    --mz-line: #d6e2eb;
    --mz-white: #ffffff;
    --mz-shell: 1180px;
    --mz-radius: 8px;
    box-sizing: border-box;
    width: 100%;
    color: var(--mz-ink);
    font-size: 16px;
    line-height: 1.65;
}

.home .site-content {
    background: #ffffff;
}

.home .site-content > .ast-container {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0;
}

.mz-home * {
    box-sizing: border-box;
}

.mz-home h1,
.mz-home h2,
.mz-home h3,
.mz-home p {
    margin-top: 0;
}

.mz-home h1,
.mz-home h2,
.mz-home h3 {
    color: var(--mz-blue-950);
    font-weight: 700;
    line-height: 1.18;
}

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

.mz-section {
    padding: 92px 0;
}

.mz-section--tinted {
    background: var(--mz-blue-050);
    border-block: 1px solid #e2edf5;
}

.mz-eyebrow {
    margin-bottom: 14px;
    color: var(--mz-blue-700);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mz-eyebrow--light {
    color: #9ed4f4;
}

.mz-section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.mz-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 56px;
    max-width: none;
    align-items: end;
}

.mz-section-heading h2,
.mz-about h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.035em;
}

.mz-section-heading p:last-child {
    margin-bottom: 0;
    color: var(--mz-muted);
}

.mz-hero {
    position: relative;
    overflow: hidden;
    padding: 112px 0 104px;
    background:
        linear-gradient(rgba(18, 97, 160, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 97, 160, 0.055) 1px, transparent 1px),
        linear-gradient(135deg, #f8fcff 0%, #eef7fc 58%, #e1f0f9 100%);
    background-size: 32px 32px, 32px 32px, auto;
    border-bottom: 1px solid var(--mz-line);
}

.mz-hero::after {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 90px solid rgba(18, 97, 160, 0.06);
    border-radius: 50%;
    content: '';
}

.mz-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 72px;
    align-items: center;
}

.mz-hero h1 {
    margin-bottom: 8px;
    font-size: clamp(3.5rem, 7vw, 6.4rem);
    letter-spacing: -0.065em;
}

.mz-hero__role {
    margin-bottom: 2px;
    color: var(--mz-blue-800);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 700;
}

.mz-hero__specialism {
    margin-bottom: 28px;
    color: var(--mz-blue-700);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mz-hero__intro {
    max-width: 720px;
    margin-bottom: 12px;
    color: #354e65;
    font-size: 1.08rem;
}

.mz-hero__intro--cn {
    color: var(--mz-muted);
    font-size: 0.98rem;
}

.mz-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.mz-button {
    display: inline-flex;
    min-height: 48px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.mz-button--primary {
    background: var(--mz-blue-800);
    color: var(--mz-white);
}

.mz-button--primary:hover,
.mz-button--primary:focus {
    background: var(--mz-blue-950);
    color: var(--mz-white);
}

.mz-button--secondary {
    border-color: var(--mz-blue-700);
    background: transparent;
    color: var(--mz-blue-800);
}

.mz-button--secondary:hover,
.mz-button--secondary:focus {
    background: var(--mz-blue-100);
    color: var(--mz-blue-950);
}

.mz-button:focus-visible,
.mz-home a:focus-visible {
    outline: 3px solid #f1b24a;
    outline-offset: 3px;
}

.mz-hero__visual {
    padding: 28px;
    border: 1px solid rgba(13, 71, 127, 0.24);
    border-radius: var(--mz-radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 60px rgba(8, 38, 74, 0.1);
}

.mz-frame-diagram {
    position: relative;
    height: 300px;
    border-bottom: 2px solid var(--mz-blue-950);
}

.mz-frame-diagram__column,
.mz-frame-diagram__beam,
.mz-frame-diagram__brace {
    position: absolute;
    display: block;
    background: var(--mz-blue-800);
}

.mz-frame-diagram__column {
    bottom: 0;
    width: 6px;
    height: 84%;
}

.mz-frame-diagram__column--left {
    left: 18%;
}

.mz-frame-diagram__column--right {
    right: 18%;
}

.mz-frame-diagram__beam {
    left: 18%;
    width: 64%;
    height: 6px;
}

.mz-frame-diagram__beam--top {
    top: 16%;
}

.mz-frame-diagram__beam--middle {
    top: 52%;
}

.mz-frame-diagram__brace {
    top: 51%;
    left: 50%;
    width: 46%;
    height: 3px;
    transform-origin: left center;
}

.mz-frame-diagram__brace--left {
    transform: rotate(37deg);
}

.mz-frame-diagram__brace--right {
    transform: rotate(143deg);
}

.mz-frame-diagram__node {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid var(--mz-blue-700);
    border-radius: 50%;
    background: var(--mz-white);
    transform: translate(-50%, -50%);
}

.mz-frame-diagram__node--one {
    top: 16%;
    left: 18%;
}

.mz-frame-diagram__node--two {
    top: 16%;
    left: 82%;
}

.mz-frame-diagram__node--three {
    top: 52%;
    left: 18%;
}

.mz-frame-diagram__node--four {
    top: 52%;
    left: 82%;
}

.mz-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 22px;
    background: var(--mz-line);
}

.mz-hero__metrics div {
    padding: 14px 10px;
    background: var(--mz-white);
    text-align: center;
}

.mz-hero__metrics strong,
.mz-hero__metrics span {
    display: block;
}

.mz-hero__metrics strong {
    color: var(--mz-blue-950);
    font-size: 1rem;
}

.mz-hero__metrics span {
    color: var(--mz-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mz-expertise-grid,
.mz-work-grid,
.mz-article-grid,
.mz-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mz-expertise-card,
.mz-work-card,
.mz-article-card,
.mz-journey-card {
    border: 1px solid var(--mz-line);
    border-radius: var(--mz-radius);
    background: var(--mz-white);
}

.mz-expertise-card {
    min-height: 190px;
    padding: 26px;
    border-top: 3px solid var(--mz-blue-700);
}

.mz-card-number {
    display: block;
    margin-bottom: 28px;
    color: var(--mz-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.78rem;
}

.mz-expertise-card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
}

.mz-expertise-card p {
    margin-bottom: 0;
    color: var(--mz-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.mz-work-card,
.mz-article-card {
    display: flex;
    min-height: 290px;
    padding: 28px;
    flex-direction: column;
}

.mz-work-card--linked,
.mz-article-card {
    border-top-color: var(--mz-blue-700);
}

.mz-work-card__meta,
.mz-article-card__meta {
    color: var(--mz-blue-700);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mz-work-card h3,
.mz-article-card h3 {
    margin-bottom: 18px;
    font-size: 1.35rem;
}

.mz-work-card h3 a,
.mz-article-card h3 a {
    color: inherit;
    text-decoration: none;
}

.mz-work-card h3 a:hover,
.mz-article-card h3 a:hover {
    color: var(--mz-blue-700);
}

.mz-work-card > p:not(.mz-work-card__meta),
.mz-article-card > p {
    color: var(--mz-muted);
}

.mz-text-link {
    margin-top: auto;
    padding-top: 20px;
    color: var(--mz-blue-700);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-decoration: none;
}

.mz-text-link:hover {
    color: var(--mz-blue-950);
}

.mz-journey-card {
    position: relative;
    min-height: 260px;
    padding: 34px;
    overflow: hidden;
}

.mz-journey-card > span {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #dbe8f1;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.mz-journey-card h3 {
    position: relative;
    max-width: 210px;
    margin-bottom: 34px;
    font-size: 1.35rem;
}

.mz-journey-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mz-journey-card li {
    padding: 10px 0;
    border-top: 1px solid var(--mz-line);
    color: var(--mz-muted);
}

.mz-article-card__meta {
    display: flex;
    margin-bottom: 22px;
    justify-content: space-between;
    gap: 16px;
}

.mz-article-card__meta time {
    color: var(--mz-muted);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.mz-section-action {
    margin-top: 36px;
    text-align: center;
}

.mz-empty-state {
    padding: 28px;
    border: 1px solid var(--mz-line);
    border-radius: var(--mz-radius);
    background: var(--mz-white);
    color: var(--mz-muted);
}

.mz-about {
    padding: 92px 0;
    background: var(--mz-blue-950);
}

.mz-about__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 80px;
}

.mz-about h2 {
    color: var(--mz-white);
}

.mz-about__copy {
    margin-bottom: 30px;
    color: #d7e7f4;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.7;
}

.mz-skill-list {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.mz-skill-list li {
    padding: 8px 13px;
    border: 1px solid rgba(158, 212, 244, 0.4);
    border-radius: 3px;
    color: #d9effc;
    font-size: 0.82rem;
}

@media (max-width: 1024px) {
    .mz-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
        gap: 42px;
    }

    .mz-expertise-grid,
    .mz-work-grid,
    .mz-article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mz-journey-grid {
        gap: 16px;
    }
}

@media (min-width: 922px) {
    .home .ast-primary-header-bar,
    .home .ast-primary-header-bar .site-primary-header-wrap,
    .home .ast-primary-header-bar .ast-builder-grid-row,
    .home .ast-primary-header-bar .main-header-menu > .menu-item > .menu-link {
        min-height: 48px;
    }

    .home .ast-primary-header-bar,
    .home .ast-primary-header-bar .site-primary-header-wrap,
    .home .ast-primary-header-bar .ast-builder-grid-row {
        padding-top: 0;
        padding-bottom: 0;
    }

    .home .ast-primary-header-bar .site-branding.ast-site-identity {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .home .ast-primary-header-bar .site-logo-img,
    .home .ast-primary-header-bar .custom-logo-link {
        line-height: 0;
    }

    .home .ast-primary-header-bar .site-logo-img img.custom-logo {
        width: auto;
        height: auto;
        max-height: 64px;
    }

    .home .ast-primary-header-bar .site-title,
    .home .ast-primary-header-bar .site-title a {
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.1;
    }

    .home .ast-primary-header-bar .main-header-menu > .menu-item > .menu-link {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .mz-shell {
        width: min(calc(100% - 32px), var(--mz-shell));
    }

    .mz-section,
    .mz-about {
        padding: 68px 0;
    }

    .mz-hero {
        padding: 76px 0 68px;
    }

    .mz-hero__grid,
    .mz-section-heading--split,
    .mz-about__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .mz-hero h1 {
        font-size: clamp(3.15rem, 16vw, 4.6rem);
    }

    .mz-hero__visual {
        padding: 20px;
    }

    .mz-frame-diagram {
        height: 230px;
    }

    .mz-expertise-grid,
    .mz-work-grid,
    .mz-article-grid,
    .mz-journey-grid {
        grid-template-columns: 1fr;
    }

    .mz-section-heading {
        margin-bottom: 32px;
    }

    .mz-work-card,
    .mz-article-card,
    .mz-journey-card {
        min-height: 0;
    }

    .mz-text-link {
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .mz-actions {
        flex-direction: column;
    }

    .mz-button {
        width: 100%;
    }

    .mz-hero__metrics {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mz-button {
        transition: none;
    }
}
