:root {
    --mk-forest: #0d3a2f;
    --mk-forest-deep: #08271f;
    --mk-moss: #1f5c4b;
    --mk-sage: #cad7cf;
    --mk-oat: #efe8dc;
    --mk-cream: #fbf7f0;
    --mk-sand: #f4ecde;
    --mk-stone: #6e675b;
    --mk-ink: #18211e;
    --mk-amber: #b98941;
    --mk-line: rgba(24, 33, 30, 0.12);
    --mk-line-soft: rgba(24, 33, 30, 0.08);
    --mk-shadow: 0 28px 80px rgba(3, 12, 10, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.mk-site {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--mk-ink);
    background:
        radial-gradient(circle at top left, rgba(202, 215, 207, 0.46), transparent 32%),
        linear-gradient(180deg, #efe8dc 0%, #fbf7f0 18%, #f8f2e8 100%);
    overflow-x: hidden;
}

body.mk-site.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button {
    font: inherit;
}

.mk-shell {
    width: min(1240px, calc(100vw - 32px));
    margin: 0 auto;
}

.mk-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mk-skip-link {
    position: fixed;
    left: 16px;
    top: -48px;
    z-index: 200;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--mk-cream);
    color: var(--mk-forest-deep);
    font-weight: 800;
    transition: top 0.2s ease;
}

.mk-skip-link:focus {
    top: 16px;
}

.mk-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 140;
    background: linear-gradient(180deg, rgba(9, 35, 30, 0.55), rgba(9, 35, 30, 0));
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.mk-header.is-scrolled {
    background: rgba(9, 35, 30, 0.88);
    box-shadow: 0 18px 36px rgba(7, 26, 22, 0.16);
    backdrop-filter: blur(14px);
}

.mk-header-inner {
    width: min(1240px, calc(100vw - 32px));
    margin: 0 auto;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mk-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

.mk-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.mk-brand-word {
    font-family: "Manrope", sans-serif;
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: 0.04em;
    font-weight: 800;
}

.mk-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mk-nav .mk-button-primary {
    margin-left: 4px;
}

.mk-nav-link,
.mk-nav-trigger {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.mk-nav-link:hover,
.mk-nav-link:focus-visible,
.mk-nav-link[aria-current="page"],
.mk-nav-trigger:hover,
.mk-nav-trigger:focus-visible,
.mk-dropdown.is-active .mk-nav-trigger {
    color: #fff;
}

.mk-dropdown {
    position: relative;
}

.mk-nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mk-nav-link::after,
.mk-nav-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.mk-nav-link:hover::after,
.mk-nav-link:focus-visible::after,
.mk-nav-link[aria-current="page"]::after,
.mk-dropdown:hover .mk-nav-trigger::after,
.mk-dropdown:focus-within .mk-nav-trigger::after,
.mk-dropdown.is-active .mk-nav-trigger::after,
.mk-nav-trigger:focus-visible::after {
    transform: scaleX(1);
}

.mk-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 240px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    background: rgba(12, 52, 42, 0.96);
    box-shadow: 0 26px 60px rgba(3, 12, 10, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mk-dropdown:hover .mk-dropdown-menu,
.mk-dropdown:focus-within .mk-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mk-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.mk-dropdown-menu a:hover,
.mk-dropdown-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.mk-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mk-signin-link {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.mk-signin-link:hover,
.mk-signin-link:focus-visible {
    color: #fff;
}

.mk-button-primary,
.mk-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mk-button-primary:hover,
.mk-button-secondary:hover {
    transform: translateY(-1px);
}

.mk-button-primary {
    border: 1px solid transparent;
    background: #f5ecde;
    color: var(--mk-forest-deep);
}

.mk-button-primary:hover,
.mk-button-primary:focus-visible {
    background: #fff;
}

.mk-header .mk-button-primary {
    gap: 12px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #f4eee3 0%, #fff9f1 100%);
    box-shadow: 0 18px 36px rgba(7, 26, 22, 0.18);
}

.mk-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: #fff;
}

.mk-button-secondary:hover,
.mk-button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.06);
}

.mk-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 36px rgba(7, 26, 22, 0.18);
    align-items: center;
    justify-content: center;
    transition:
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.mk-menu-toggle:hover,
.mk-menu-toggle:focus-visible {
    transform: translateY(-1px) scale(1.02);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.mk-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 170;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        visibility 0s linear 0.28s;
}

.mk-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity 0.34s ease,
        visibility 0s linear 0s;
}

.mk-mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 20, 17, 0.64);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mk-mobile-overlay.is-open .mk-mobile-backdrop {
    opacity: 1;
}

.mk-mobile-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: min(100%, 380px);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top right, rgba(185, 137, 65, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(11, 48, 39, 0.99), rgba(8, 39, 31, 0.985));
    color: #fff;
    box-shadow: -28px 0 72px rgba(2, 10, 9, 0.42);
    transform: translateX(104%) scale(0.985) rotate(-1.2deg);
    transform-origin: right center;
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;
    opacity: 0.98;
}

.mk-mobile-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 20%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 34%);
    pointer-events: none;
}

.mk-mobile-overlay.is-open .mk-mobile-panel {
    transform: translateX(0) scale(1) rotate(0deg);
    opacity: 1;
}

.mk-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(18px);
    transition:
        opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.mk-mobile-overlay.is-open .mk-mobile-top {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.04s;
}

.mk-mobile-close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.22s ease,
        border-color 0.22s ease;
}

.mk-mobile-close:hover,
.mk-mobile-close:focus-visible {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.mk-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 18px 16px;
}

.mk-mobile-links > *,
.mk-mobile-actions > * {
    opacity: 0;
    transform: translate3d(22px, 0, 0);
    transition:
        opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.mk-mobile-overlay.is-open .mk-mobile-links > *,
.mk-mobile-overlay.is-open .mk-mobile-actions > * {
    opacity: 1;
    transform: translateX(0);
}

.mk-mobile-overlay.is-open .mk-mobile-links > *:nth-child(1) { transition-delay: 0.04s; }
.mk-mobile-overlay.is-open .mk-mobile-links > *:nth-child(2) { transition-delay: 0.08s; }
.mk-mobile-overlay.is-open .mk-mobile-links > *:nth-child(3) { transition-delay: 0.12s; }
.mk-mobile-overlay.is-open .mk-mobile-links > *:nth-child(4) { transition-delay: 0.16s; }
.mk-mobile-overlay.is-open .mk-mobile-links > *:nth-child(5) { transition-delay: 0.20s; }
.mk-mobile-overlay.is-open .mk-mobile-links > *:nth-child(6) { transition-delay: 0.24s; }
.mk-mobile-overlay.is-open .mk-mobile-links > *:nth-child(7) { transition-delay: 0.28s; }
.mk-mobile-overlay.is-open .mk-mobile-actions > *:nth-child(1) { transition-delay: 0.22s; }
.mk-mobile-overlay.is-open .mk-mobile-actions > *:nth-child(2) { transition-delay: 0.26s; }

.mk-mobile-links a,
.mk-mobile-accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    text-align: left;
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.22s ease,
        border-color 0.22s ease;
}

.mk-mobile-links a:hover,
.mk-mobile-links a:focus-visible,
.mk-mobile-accordion:hover,
.mk-mobile-accordion:focus-visible {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.mk-mobile-links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.mk-mobile-accordion-panel {
    display: grid;
    gap: 8px;
    max-height: 0;
    margin-top: 0;
    padding: 0 0 0 12px;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.22s ease,
        margin-top 0.22s ease;
}

.mk-mobile-accordion-panel.is-open {
    max-height: 220px;
    margin-top: 6px;
    opacity: 1;
}

.mk-mobile-accordion-panel a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
}

.mk-mobile-accordion[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.mk-mobile-accordion svg {
    transition: transform 0.22s ease;
}

.mk-mobile-actions {
    display: grid;
    gap: 12px;
    padding: 18px 18px 22px;
}

.mk-mobile-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 700;
}

.mk-page {
    position: relative;
    z-index: 1;
}

.mk-hero {
    position: relative;
    min-height: 100svh;
    padding: 126px 0 54px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 14%, rgba(185, 137, 65, 0.18), transparent 23%),
        radial-gradient(circle at 88% 18%, rgba(202, 215, 207, 0.12), transparent 20%),
        linear-gradient(135deg, #08271f 0%, #0d3a2f 48%, #17624f 100%);
    overflow: clip;
}

.mk-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 72%);
    pointer-events: none;
}

.mk-hero-grid,
.mk-two-col {
    display: grid;
    gap: 36px;
    align-items: center;
}

.mk-hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.mk-hero.mk-hero-editorial,
.mk-hero.mk-hero-journal,
.mk-hero.mk-hero-process,
.mk-hero.mk-hero-showroom,
.mk-hero.mk-hero-utility,
.mk-hero.mk-hero-consulting,
.mk-hero.mk-hero-resource {
    min-height: auto;
    padding-bottom: 72px;
}

.mk-hero.mk-hero-editorial .mk-hero-grid,
.mk-hero.mk-hero-journal .mk-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    align-items: end;
}

.mk-hero.mk-hero-showroom .mk-hero-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    align-items: stretch;
}

.mk-hero.mk-hero-process .mk-hero-grid,
.mk-hero.mk-hero-consulting .mk-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: start;
}

.mk-hero.mk-hero-utility .mk-hero-grid,
.mk-hero.mk-hero-resource .mk-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 920px;
}

.mk-hero.mk-hero-resource {
    background:
        radial-gradient(circle at 10% 12%, rgba(185, 137, 65, 0.14), transparent 20%),
        linear-gradient(135deg, #08271f 0%, #103c31 56%, #17624f 100%);
}

.mk-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.76rem;
    font-weight: 800;
}

.mk-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--mk-amber);
    box-shadow: 0 0 0 7px rgba(185, 137, 65, 0.14);
}

.mk-display-xl,
.mk-display-lg,
.mk-display-md,
.mk-quote {
    margin: 18px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.mk-display-xl {
    font-size: clamp(3.7rem, 7vw, 7rem);
}

.mk-display-lg {
    font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.mk-display-md {
    font-size: clamp(2rem, 3vw, 3rem);
}

.mk-lead,
.mk-body,
.mk-list li {
    font-size: 1.05rem;
    line-height: 1.72;
}

.mk-lead {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
}

.mk-body {
    color: rgba(24, 33, 30, 0.8);
}

.mk-body-light {
    color: rgba(255, 255, 255, 0.82);
}

.mk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 30px;
}

.mk-panel,
.mk-card,
.mk-proof-card,
.mk-media-frame,
.mk-cta-band {
    border: 1px solid var(--mk-line-soft);
    box-shadow: var(--mk-shadow);
}

.mk-panel,
.mk-card,
.mk-proof-card,
.mk-media-frame {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
}

.mk-panel {
    padding: 28px;
}

.mk-card {
    position: relative;
    padding: 26px 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46));
    backdrop-filter: none;
    box-shadow: none;
}

.mk-card::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(23, 98, 79, 0), rgba(23, 98, 79, 0.36), rgba(23, 98, 79, 0));
}

.mk-proof-card {
    padding: 24px;
}

.mk-section {
    padding: 88px 0;
}

.mk-section-stone {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, #f3ebde 0%, #f6efe5 100%);
}

.mk-section-cream {
    background: linear-gradient(180deg, #fbf7f0 0%, #f7f2ea 100%);
}

.mk-section-forest {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(185, 137, 65, 0.11), transparent 28%),
        linear-gradient(135deg, #08271f 0%, #0f4336 100%);
}

.mk-section-forest .mk-body,
.mk-section-forest .mk-title,
.mk-section-forest .mk-kicker {
    color: #fff;
}

.mk-title {
    margin: 18px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
    color: var(--mk-forest-deep);
}

.mk-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding-left: 20px;
}

.mk-list li {
    color: rgba(24, 33, 30, 0.8);
}

.mk-section-forest .mk-list li {
    color: rgba(255, 255, 255, 0.82);
}

.mk-grid-3,
.mk-grid-4,
.mk-grid-auto {
    display: grid;
    gap: 22px;
}

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

.mk-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.mk-media-frame {
    overflow: hidden;
    position: relative;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-color: rgba(24, 33, 30, 0.08);
}

.mk-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.mk-media-frame img,
.mk-showroom-target {
    cursor: zoom-in;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}

.mk-media-frame:hover img,
.mk-showroom-target:hover {
    transform: scale(1.02);
    filter: saturate(1.03);
}

.mk-device-shot-frame {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
    min-height: 0 !important;
}

.mk-device-shot-frame img,
.mk-device-shot {
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.mk-metric-strip {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.mk-metric-line {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mk-metric-line:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mk-metric-number {
    color: rgba(255, 255, 255, 0.52);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
}

.mk-metric-copy {
    display: grid;
    gap: 6px;
}

.mk-metric-copy strong {
    color: #fff;
    font-size: 1rem;
}

.mk-metric-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.mk-slat-list {
    display: grid;
    margin-top: 26px;
    border-top: 1px solid var(--mk-line);
}

.mk-slat {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--mk-line);
}

.mk-slat-index {
    color: rgba(24, 33, 30, 0.42);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mk-slat-copy {
    display: grid;
    gap: 8px;
}

.mk-slat-copy h3,
.mk-slat-copy p {
    margin: 0;
}

.mk-slat-copy h3 {
    color: var(--mk-forest-deep);
    font-size: 1.05rem;
}

.mk-slat-copy p {
    color: rgba(24, 33, 30, 0.8);
    line-height: 1.72;
}

.mk-slat-link {
    display: block;
    color: inherit;
}

.mk-slat-link .mk-slat {
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
    border-radius: 22px;
    transition:
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.24s ease,
        border-color 0.24s ease;
}

.mk-slat-link:hover .mk-slat,
.mk-slat-link:focus-visible .mk-slat {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.48);
}

.mk-hero .mk-slat,
.mk-section-forest .mk-slat {
    border-color: rgba(255, 255, 255, 0.14);
}

.mk-hero .mk-slat-index,
.mk-section-forest .mk-slat-index {
    color: rgba(255, 255, 255, 0.42);
}

.mk-hero .mk-slat-copy h3,
.mk-section-forest .mk-slat-copy h3 {
    color: #fff;
}

.mk-hero .mk-slat-copy p,
.mk-section-forest .mk-slat-copy p {
    color: rgba(255, 255, 255, 0.8);
}

.mk-showcase-stack {
    display: grid;
    gap: 16px;
}

.mk-showcase-stack > *:nth-child(2) {
    margin-left: 34px;
}

.mk-showcase-stack > *:nth-child(3) {
    margin-right: 34px;
}

.mk-side-note {
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    line-height: 1.75;
}

.mk-media-copy {
    padding: 24px;
}

.mk-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mk-stat-value {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--mk-forest-deep);
}

.mk-section-forest .mk-stat-value {
    color: #fff;
}

.mk-cta-band {
    padding: 54px min(6vw, 68px);
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(185, 137, 65, 0.2), transparent 24%),
        linear-gradient(135deg, #08271f 0%, #0d3a2f 48%, #17624f 100%);
    color: #fff;
}

.mk-highlight-band {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.mk-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.mk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--mk-line);
    background: rgba(255, 255, 255, 0.74);
    color: var(--mk-forest-deep);
    font-size: 0.88rem;
    font-weight: 700;
}

.mk-section-forest .mk-badge {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mk-compare-table {
    display: grid;
    gap: 0;
    margin-top: 34px;
    border: 1px solid var(--mk-line);
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--mk-shadow);
}

.mk-compare-head,
.mk-compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.mk-compare-head {
    background: rgba(8, 39, 31, 0.04);
    color: var(--mk-stone);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.mk-compare-head > div,
.mk-compare-row > div {
    padding: 22px 24px;
    border-right: 1px solid var(--mk-line-soft);
}

.mk-compare-head > div:last-child,
.mk-compare-row > div:last-child {
    border-right: 0;
}

.mk-compare-row + .mk-compare-row {
    border-top: 1px solid var(--mk-line-soft);
}

.mk-compare-row strong {
    display: block;
    margin-bottom: 8px;
    color: var(--mk-forest-deep);
    font-size: 1rem;
}

.mk-compare-row p {
    margin: 0;
    color: rgba(24, 33, 30, 0.8);
    line-height: 1.65;
}

.mk-feature-list {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.mk-feature-item {
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 28px;
    border: 1px solid var(--mk-line-soft);
    background: rgba(255, 255, 255, 0.7);
}

.mk-feature-item h3,
.mk-media-copy h3,
.mk-panel h3,
.mk-card h3 {
    margin: 0;
    color: var(--mk-forest-deep);
    font-size: 1.15rem;
    font-weight: 800;
}

.mk-feature-item p,
.mk-media-copy p,
.mk-panel p,
.mk-card p {
    margin: 0;
    color: rgba(24, 33, 30, 0.8);
    line-height: 1.7;
}

.mk-note {
    margin-top: 18px;
    color: var(--mk-stone);
    font-size: 0.92rem;
    line-height: 1.7;
}

.mk-inline-note {
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid var(--mk-line-soft);
    background: rgba(255, 255, 255, 0.54);
    color: rgba(24, 33, 30, 0.78);
    line-height: 1.75;
}

.mk-inline-note a {
    color: #17624f;
    font-weight: 700;
}

.mk-consent-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--mk-line);
}

.mk-consent-row a {
    color: #17624f;
    font-weight: 700;
}

.mk-form-wrap {
    padding: 32px;
    border-radius: 34px;
    border: 1px solid var(--mk-line-soft);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--mk-shadow);
}

.mk-status-banner {
    display: none;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
}

.mk-status-banner.is-visible {
    display: block;
}

.mk-status-banner.is-error {
    border-color: rgba(220, 38, 38, 0.18);
    background: rgba(254, 242, 242, 0.92);
    color: #b91c1c;
}

.mk-status-banner.is-success {
    border-color: rgba(22, 163, 74, 0.16);
    background: rgba(240, 253, 244, 0.94);
    color: #166534;
}

.mk-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mk-field {
    display: grid;
    gap: 10px;
}

.mk-label {
    color: rgba(24, 33, 30, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mk-input,
.mk-select,
.mk-textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(24, 33, 30, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--mk-ink);
    font-family: inherit;
    font-size: 0.98rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mk-input:focus,
.mk-select:focus,
.mk-textarea:focus {
    border-color: #17624f;
    box-shadow: 0 0 0 4px rgba(23, 98, 79, 0.08);
    transform: translateY(-1px);
}

.mk-input.mk-field-error,
.mk-select.mk-field-error,
.mk-textarea.mk-field-error {
    border-color: rgba(220, 38, 38, 0.62);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.mk-textarea {
    min-height: 160px;
    resize: vertical;
}

.mk-search-shell {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--mk-line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--mk-shadow);
}

.mk-search-shell input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--mk-ink);
    font: inherit;
    outline: none;
}

.mk-prose,
.mk-legal-prose {
    color: rgba(24, 33, 30, 0.84);
    font-size: 1rem;
    line-height: 1.85;
}

.mk-prose > *:first-child,
.mk-legal-prose > *:first-child {
    margin-top: 0;
}

.mk-prose h2,
.mk-prose h3,
.mk-legal-prose h2,
.mk-legal-prose h3 {
    margin: 2.5rem 0 0.85rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--mk-forest-deep);
}

.mk-prose h2,
.mk-legal-prose h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.mk-prose h3,
.mk-legal-prose h3 {
    font-size: clamp(1.55rem, 2.6vw, 2.1rem);
}

.mk-prose p,
.mk-legal-prose p,
.mk-prose ul,
.mk-prose ol,
.mk-legal-prose ul,
.mk-legal-prose ol,
.mk-prose blockquote,
.mk-legal-prose blockquote {
    margin: 0 0 1rem;
}

.mk-prose ul,
.mk-prose ol,
.mk-legal-prose ul,
.mk-legal-prose ol {
    padding-left: 1.4rem;
}

.mk-prose a,
.mk-legal-prose a {
    color: #17624f;
    font-weight: 700;
}

.mk-prose blockquote,
.mk-legal-prose blockquote {
    padding: 18px 20px;
    border-left: 3px solid rgba(23, 98, 79, 0.26);
    background: rgba(23, 98, 79, 0.04);
    border-radius: 20px;
}

.mk-prose pre,
.mk-code-block {
    overflow-x: auto;
    padding: 20px 22px;
    border-radius: 28px;
    background: #0a221c;
    color: #e6f4ec;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.9rem;
    line-height: 1.75;
}

.mk-code-inline {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(8, 39, 31, 0.08);
    color: var(--mk-forest-deep);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.9em;
}

.mk-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.mk-aside-stack {
    display: grid;
    gap: 18px;
}

.mk-aside-card {
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--mk-line-soft);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 20px 48px rgba(3, 12, 10, 0.08);
}

.mk-aside-card h3,
.mk-aside-card p {
    margin: 0;
}

.mk-collection-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mk-collection-card {
    display: grid;
    gap: 16px;
    border-radius: 30px;
    border: 1px solid var(--mk-line-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.5));
    box-shadow: none;
    overflow: hidden;
}

.mk-collection-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.mk-step-shell {
    display: grid;
    gap: 18px;
}

.mk-progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(24, 33, 30, 0.08);
    overflow: hidden;
}

.mk-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #0d3a2f 0%, #17624f 100%);
    transition: width 0.32s ease;
}

.mk-step-dots {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mk-step-dot {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid var(--mk-line-soft);
    background: rgba(255, 255, 255, 0.74);
    color: var(--mk-stone);
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mk-step-dot:hover {
    transform: translateY(-1px);
}

.mk-step-dot.active {
    border-color: rgba(13, 58, 47, 0.36);
    background: rgba(13, 58, 47, 0.08);
    color: var(--mk-forest-deep);
}

.mk-step-dot.complete {
    border-color: rgba(23, 98, 79, 0.2);
    background: rgba(202, 215, 207, 0.46);
    color: var(--mk-forest-deep);
}

.mk-step-track {
    display: block;
}

.mk-step-panel {
    width: 100%;
    display: none;
}

.mk-step-panel.is-active {
    display: block;
}

.mk-collection-copy {
    display: grid;
    gap: 12px;
    padding: 0 24px 24px;
}

.mk-collection-copy h3,
.mk-collection-copy p {
    margin: 0;
}

.mk-empty {
    padding: 24px;
    border-radius: 26px;
    border: 1px dashed rgba(24, 33, 30, 0.16);
    background: rgba(255, 255, 255, 0.58);
    color: var(--mk-stone);
}

.mk-status-grid {
    display: grid;
    gap: 16px;
}

.mk-status-timeline {
    display: grid;
    gap: 0;
    margin-top: 22px;
    border-top: 1px solid var(--mk-line);
}

.mk-status-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--mk-line);
}

.mk-status-label {
    color: rgba(24, 33, 30, 0.42);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mk-status-copy {
    display: grid;
    gap: 8px;
}

.mk-status-copy h3,
.mk-status-copy p {
    margin: 0;
}

.mk-status-copy h3 {
    color: var(--mk-forest-deep);
    font-size: 1.05rem;
}

.mk-status-copy p {
    color: rgba(24, 33, 30, 0.8);
    line-height: 1.72;
}

.mk-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(23, 98, 79, 0.16);
    background: rgba(23, 98, 79, 0.08);
    color: #17624f;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.mk-status-pill.is-operational {
    border-color: rgba(23, 98, 79, 0.16);
    background: rgba(23, 98, 79, 0.08);
    color: #17624f;
}

.mk-status-pill.is-monitoring {
    border-color: rgba(245, 158, 11, 0.18);
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
}

.mk-status-pill.is-degraded,
.mk-status-pill.is-outage {
    border-color: rgba(220, 38, 38, 0.18);
    background: rgba(254, 242, 242, 0.92);
    color: #b91c1c;
}

.mk-status-pill.is-unknown {
    border-color: rgba(24, 33, 30, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: rgba(24, 33, 30, 0.62);
}

.mk-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 28px;
    border: 1px solid var(--mk-line-soft);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 48px rgba(3, 12, 10, 0.06);
}

.mk-status-meta {
    display: grid;
    gap: 6px;
}

.mk-status-state {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 84, 0.12);
    color: #166534;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mk-status-state::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(22, 101, 52, 0.12);
}

.mk-faq-item {
    padding: 22px 24px;
    border-radius: 26px;
    border: 1px solid var(--mk-line-soft);
    background: rgba(255, 255, 255, 0.76);
    overflow: clip;
    transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.mk-faq-item[open] {
    border-color: rgba(13, 58, 47, 0.16);
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
}

.mk-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--mk-forest-deep);
    font-weight: 800;
}

.mk-faq-item summary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(13, 58, 47, 0.08);
    transition: transform 0.24s ease, background 0.24s ease;
}

.mk-faq-item[open] summary span {
    transform: rotate(45deg);
    background: rgba(13, 58, 47, 0.14);
}

.mk-faq-item summary::-webkit-details-marker {
    display: none;
}

.mk-faq-item div {
    margin-top: 16px;
    color: rgba(24, 33, 30, 0.8);
    line-height: 1.75;
    overflow: hidden;
}

.mk-toc {
    display: grid;
    gap: 10px;
    position: sticky;
    top: 112px;
}

.mk-toc-label {
    color: rgba(24, 33, 30, 0.44);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.mk-toc-link {
    display: block;
    padding: 10px 0 10px 14px;
    border-left: 2px solid transparent;
    color: rgba(24, 33, 30, 0.56);
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mk-toc-link:hover,
.mk-toc-link:focus-visible,
.mk-toc-link.active {
    border-left-color: #17624f;
    color: var(--mk-forest-deep);
    transform: translateX(2px);
}

.mk-footer {
    margin-top: 88px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--mk-forest-deep);
    color: rgba(255, 255, 255, 0.72);
}

.mk-footer-grid {
    display: grid;
    gap: 14px 42px;
    grid-template-columns: 1.7fr repeat(4, minmax(0, 1fr));
}

.mk-footer-title {
    margin: 0 0 18px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #fff;
}

.mk-footer-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mk-footer-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px;
}

.mk-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 0 0;
    margin-top: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
}

.mk-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.mk-footer-legal a {
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.2s ease;
}

.mk-footer-legal a:hover,
.mk-footer-legal a:focus-visible {
    color: #fff;
}

.mk-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal].delay-1 {
    transition-delay: 0.08s;
}

[data-reveal].delay-2 {
    transition-delay: 0.16s;
}

.mk-showroom {
    position: fixed;
    inset: 0;
    z-index: 240;
    display: none;
    padding: 20px;
}

.mk-showroom.is-open {
    display: grid;
    place-items: center;
}

.mk-showroom-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 10, 9, 0.82);
    backdrop-filter: blur(12px);
}

.mk-showroom-dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 40px));
    max-height: calc(100vh - 40px);
    display: grid;
    gap: 18px;
    padding: 18px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 39, 31, 0.92);
    box-shadow: 0 32px 96px rgba(2, 10, 9, 0.42);
}

.mk-showroom-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mk-showroom-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mk-showroom-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.mk-showroom-close svg {
    display: block;
}

.mk-showroom-frame {
    overflow: auto;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.mk-showroom.is-device-shot .mk-showroom-frame {
    background: transparent;
    border-radius: 0;
}

.mk-showroom-frame img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 180px);
    object-fit: contain;
}

.mk-showroom-caption {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.65;
}

.mk-manifesto {
    display: grid;
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--mk-line);
}

.mk-manifesto-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--mk-line);
}

.mk-manifesto-line strong,
.mk-manifesto-line p {
    margin: 0;
}

.mk-manifesto-line strong {
    color: var(--mk-forest-deep);
    font-size: 1.12rem;
    line-height: 1.45;
}

.mk-manifesto-line p {
    color: rgba(24, 33, 30, 0.74);
    line-height: 1.7;
}

.mk-manifesto-tag,
.mk-process-count {
    color: rgba(24, 33, 30, 0.42);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mk-hero .mk-manifesto {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.mk-hero .mk-manifesto-line {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.mk-hero .mk-manifesto-line strong {
    color: #fff;
}

.mk-hero .mk-manifesto-line p {
    color: rgba(255, 255, 255, 0.76);
}

.mk-hero .mk-manifesto-tag {
    color: rgba(255, 255, 255, 0.48);
}

.mk-split-spotlight,
.mk-demo-shell {
    display: grid;
    gap: 34px;
    align-items: start;
}

.mk-split-spotlight {
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}

.mk-demo-shell {
    grid-template-columns: minmax(0, 0.84fr) minmax(380px, 1.16fr);
}

.mk-story-band,
.mk-process-list {
    display: grid;
    gap: 0;
    margin-top: 26px;
    border-top: 1px solid var(--mk-line);
}

.mk-story-band {
    padding: 0;
}

.mk-story-band article,
.mk-process-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--mk-line);
}

.mk-story-band h3,
.mk-process-copy h3,
.mk-story-band p,
.mk-process-copy p {
    margin: 0;
}

.mk-story-band h3,
.mk-process-copy h3 {
    color: var(--mk-forest-deep);
    font-size: 1.08rem;
    font-weight: 800;
}

.mk-story-band p,
.mk-process-copy p {
    color: rgba(24, 33, 30, 0.78);
    line-height: 1.72;
}

.mk-demo-brief {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.mk-plain-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mk-plain-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: rgba(24, 33, 30, 0.8);
    line-height: 1.72;
}

.mk-plain-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--mk-moss);
    box-shadow: 0 0 0 7px rgba(23, 98, 79, 0.1);
}

.mk-status-board {
    display: grid;
    gap: 22px;
    padding: 30px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(2, 10, 9, 0.24);
}

.mk-status-board-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.mk-status-board-top p,
.mk-status-card p,
.mk-status-card strong {
    margin: 0;
}

.mk-status-board-top p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.72;
}

.mk-live-pill,
.mk-state-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mk-live-pill {
    min-height: 40px;
    padding: 0 14px;
}

.mk-state-pill {
    min-height: 36px;
    padding: 0 12px;
}

.mk-live-pill::before,
.mk-state-pill::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.mk-live-pill.is-operational,
.mk-state-pill.is-operational {
    border-color: rgba(187, 247, 208, 0.24);
    background: rgba(22, 163, 74, 0.14);
    color: #d3fbe2;
}

.mk-live-pill.is-monitoring,
.mk-state-pill.is-monitoring {
    border-color: rgba(251, 191, 36, 0.24);
    background: rgba(245, 158, 11, 0.16);
    color: #fde7b0;
}

.mk-live-pill.is-degraded,
.mk-state-pill.is-degraded {
    border-color: rgba(248, 113, 113, 0.24);
    background: rgba(220, 38, 38, 0.14);
    color: #fecaca;
}

.mk-live-pill.is-outage,
.mk-state-pill.is-outage {
    border-color: rgba(252, 165, 165, 0.26);
    background: rgba(153, 27, 27, 0.24);
    color: #fee2e2;
}

.mk-live-pill.is-unknown,
.mk-state-pill.is-unknown {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
}

.mk-status-board-list {
    display: grid;
    gap: 0;
}

.mk-status-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mk-status-card:first-child {
    border-top: 0;
    padding-top: 0;
}

.mk-status-card strong {
    color: #fff;
    font-size: 1.04rem;
}

.mk-status-card p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.66;
}

.mk-status-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.mk-status-meta-item {
    padding-top: 20px;
    border-top: 1px solid var(--mk-line);
}

.mk-status-meta-item span,
.mk-status-meta-item p {
    margin: 0;
}

.mk-status-meta-item span {
    display: block;
    color: rgba(24, 33, 30, 0.46);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mk-status-meta-item strong {
    display: block;
    margin-top: 10px;
    color: var(--mk-forest-deep);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.mk-status-meta-item p {
    margin-top: 8px;
    color: rgba(24, 33, 30, 0.72);
    line-height: 1.62;
}

@media (max-width: 1100px) {
    .mk-hero-grid,
    .mk-hero.mk-hero-editorial .mk-hero-grid,
    .mk-hero.mk-hero-journal .mk-hero-grid,
    .mk-hero.mk-hero-process .mk-hero-grid,
    .mk-hero.mk-hero-showroom .mk-hero-grid,
    .mk-hero.mk-hero-utility .mk-hero-grid,
    .mk-hero.mk-hero-consulting .mk-hero-grid,
    .mk-hero.mk-hero-resource .mk-hero-grid,
    .mk-two-col,
    .mk-grid-3,
    .mk-grid-4,
    .mk-grid-auto,
    .mk-stat-grid,
    .mk-footer-grid,
    .mk-collection-grid,
    .mk-article-layout,
    .mk-split-spotlight,
    .mk-demo-shell,
    .mk-status-meta-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .mk-compare-head,
    .mk-compare-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .mk-compare-head > div:first-child {
        display: none;
    }

    .mk-compare-head > div,
    .mk-compare-row > div {
        border-right: 0;
    }

    .mk-status-step {
        grid-template-columns: minmax(0, 1fr);
    }

    .mk-demo-brief {
        position: static;
    }
}

@media (max-width: 860px) {
    .mk-nav,
    .mk-header-actions {
        display: none;
    }

    .mk-menu-toggle {
        display: inline-flex;
    }

    .mk-hero {
        padding-top: 104px;
    }

    .mk-manifesto-line,
    .mk-story-band article,
    .mk-process-item,
    .mk-status-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .mk-status-board-top {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .mk-shell,
    .mk-header-inner {
        width: min(calc(100vw - 24px), 1240px);
    }

    .mk-hero {
        padding-top: 98px;
        padding-bottom: 40px;
    }

    .mk-display-xl {
        font-size: clamp(3rem, 17vw, 4.2rem);
    }

    .mk-display-lg,
    .mk-title {
        font-size: clamp(2.35rem, 13vw, 3.45rem);
    }

    .mk-lead,
    .mk-body,
    .mk-list li {
        font-size: 1rem;
    }

    .mk-panel,
    .mk-card,
    .mk-proof-card,
    .mk-media-copy,
    .mk-cta-band {
        padding-left: 22px;
        padding-right: 22px;
    }

    .mk-showcase-stack > *:nth-child(2),
    .mk-showcase-stack > *:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
    }

    .mk-form-wrap,
    .mk-highlight-band {
        padding: 22px;
    }

    .mk-field-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .mk-search-shell {
        border-radius: 28px;
        align-items: stretch;
        flex-direction: column;
    }

    .mk-step-dots {
        grid-template-columns: minmax(0, 1fr);
    }

    .mk-slat-link .mk-slat {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .mk-slat-link:hover .mk-slat,
    .mk-slat-link:focus-visible .mk-slat {
        transform: none;
    }

    .mk-status-board {
        padding: 22px;
    }

    .mk-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .mk-showroom {
        padding: 12px;
    }

    .mk-showroom-dialog {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        padding: 14px;
        border-radius: 26px;
    }
}
