:root {
    --mk-ink: #111b24;
    --mk-ink-soft: #263746;
    --mk-paper: #f7f6f2;
    --mk-paper-deep: #e9ece9;
    --mk-line: rgba(17, 27, 36, .14);
    --mk-signal: #ea6429;
    --mk-signal-dark: #c84d1c;
    --mk-blue: #0b4b68;
    --mk-mono: "IBM Plex Mono", "Courier New", monospace;
}

.marketing-body {
    background:
        radial-gradient(circle at 92% 7%, rgba(234, 100, 41, .1), transparent 24rem),
        linear-gradient(180deg, #f9f8f4 0, #eef0ed 72%, #e6e9e6 100%) !important;
    color: var(--mk-ink);
}

.marketing-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    border-bottom: 1px solid rgba(17, 27, 36, .14);
    background: rgba(249, 248, 244, .92);
    backdrop-filter: blur(18px);
}

.marketing-header__bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.8rem;
    width: min(100% - 2rem, 88rem);
    min-height: 76px;
    margin: 0 auto;
}

.marketing-brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--mk-ink);
    text-decoration: none;
    white-space: nowrap;
}

.marketing-brand:hover { color: var(--mk-ink); }

.marketing-brand__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
}

.marketing-brand__mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.marketing-brand__name {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.72rem;
    font-weight: 400;
    letter-spacing: .04em;
    line-height: .9;
    text-transform: uppercase;
}

.marketing-brand__descriptor {
    display: block;
    margin-top: .25rem;
    color: #68747a;
    font-family: var(--mk-mono);
    font-size: .57rem;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1;
    text-transform: uppercase;
}

.marketing-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .15rem;
    min-width: 0;
}

.marketing-nav__link,
.marketing-nav__summary {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: .6rem .75rem;
    border: 0;
    border-radius: .5rem;
    background: transparent;
    color: #33424c;
    font-size: .83rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
    white-space: nowrap;
}

.marketing-nav__link:hover,
.marketing-nav__link.is-current,
.marketing-nav__summary:hover,
.marketing-nav__dropdown[open] .marketing-nav__summary {
    background: rgba(17, 27, 36, .07);
    color: var(--mk-ink);
}

.marketing-nav__dropdown { position: relative; }
.marketing-nav__summary { cursor: pointer; list-style: none; }
.marketing-nav__summary::-webkit-details-marker { display: none; }
.marketing-nav__summary::after { content: "+"; margin-left: .48rem; color: var(--mk-signal); font-size: 1rem; font-weight: 500; }
.marketing-nav__dropdown[open] .marketing-nav__summary::after { content: "–"; }

.marketing-flyout {
    position: absolute;
    top: calc(100% + .7rem);
    left: 0;
    display: grid;
    min-width: 17rem;
    padding: .55rem;
    border: 1px solid var(--mk-line);
    border-radius: .85rem;
    background: #fffefa;
    box-shadow: 0 18px 42px rgba(17, 27, 36, .14);
}

.marketing-flyout a {
    display: grid;
    gap: .16rem;
    padding: .7rem .75rem;
    border-radius: .55rem;
    color: var(--mk-ink);
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
}

.marketing-flyout a span {
    color: #68747a;
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.35;
}

.marketing-flyout a:hover { background: #f0f0eb; color: var(--mk-ink); }

.marketing-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .55rem;
}

.marketing-language {
    display: inline-flex;
    align-items: center;
    padding: .2rem;
    border: 1px solid var(--mk-line);
    border-radius: .45rem;
    background: rgba(255, 255, 255, .7);
}

.marketing-language a {
    display: grid;
    width: 2rem;
    height: 1.7rem;
    place-items: center;
    border-radius: .28rem;
    color: #6b757a;
    font-family: var(--mk-mono);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
}

.marketing-language a:hover,
.marketing-language a.is-current { background: var(--mk-ink); color: #fff; }

.marketing-signin,
.marketing-rfq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: .5rem;
    font-size: .8rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
}

.marketing-signin { padding: 0 .82rem; color: #33424c; }
.marketing-signin:hover { color: var(--mk-ink); transform: translateY(-1px); }
.marketing-rfq { padding: 0 1rem; background: var(--mk-signal); color: #fff; box-shadow: 0 9px 18px rgba(200, 77, 28, .2); }
.marketing-rfq:hover { background: var(--mk-signal-dark); color: #fff; transform: translateY(-1px); }

.marketing-mobile { display: none; position: relative; }
.marketing-mobile summary { list-style: none; }
.marketing-mobile summary::-webkit-details-marker { display: none; }
.marketing-mobile__trigger { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--mk-line); border-radius: .5rem; color: var(--mk-ink); cursor: pointer; }
.marketing-mobile__trigger::before { content: "☰"; font-size: 1.2rem; }
.marketing-mobile__panel { position: absolute; top: calc(100% + .65rem); right: 0; display: grid; width: min(22rem, calc(100vw - 2rem)); gap: .35rem; padding: .55rem; border: 1px solid var(--mk-line); border-radius: .85rem; background: #fffefa; box-shadow: 0 18px 42px rgba(17, 27, 36, .16); }
.marketing-mobile__panel a { padding: .75rem; border-radius: .55rem; color: var(--mk-ink); font-size: .9rem; font-weight: 800; text-decoration: none; }
.marketing-mobile__panel a:hover { background: #f0f0eb; color: var(--mk-ink); }
.marketing-mobile__panel .is-rfq { background: var(--mk-signal); color: #fff; }

.marketing-content .x-canvas { background: transparent; }
.marketing-content .x-page-wrap { max-width: 88rem; padding-top: 2rem; padding-bottom: 3rem; }
.marketing-content .x-main-panel { border: 0; background: transparent; box-shadow: none; }

.marketing-body .landing-block {
    border-color: var(--mk-line) !important;
    border-radius: 1.1rem !important;
    box-shadow: 0 12px 28px rgba(17, 27, 36, .055) !important;
}

.marketing-footer {
    margin-top: 3rem;
    border-top: 1px solid var(--mk-line);
    background: #111b24;
    color: rgba(255, 255, 255, .68);
}

.marketing-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    width: min(100% - 2rem, 88rem);
    padding: 2.2rem 0;
    margin: 0 auto;
}

.marketing-footer__title { margin: 0 0 .5rem; color: #fff; font-family: "Bebas Neue", sans-serif; font-size: 1.55rem; font-weight: 400; letter-spacing: .05em; }
.marketing-footer__text { max-width: 38rem; margin: 0; font-size: .84rem; line-height: 1.65; }
.marketing-footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .5rem 1rem; max-width: 31rem; }
.marketing-footer__links a { color: #fff; font-size: .77rem; font-weight: 700; text-decoration: none; }
.marketing-footer__links a:hover { color: #ffb38c; }

.marketing-footer__contact { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin-top: 1rem; }
.marketing-footer__contact a { color: #ffb38c; font-family: var(--mk-mono); font-size: .82rem; font-weight: 600; text-decoration: none; }
.marketing-footer__contact a:hover { color: #fff; }
.marketing-footer__note { margin: .55rem 0 0; color: rgba(255, 255, 255, .5); font-size: .74rem; line-height: 1.6; }

.marketing-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem 1.4rem;
    width: min(100% - 2rem, 88rem);
    margin: 0 auto;
    padding: 1rem 0 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .45);
    font-size: .72rem;
    line-height: 1.6;
}

.mk-home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(22rem, .97fr);
    min-height: 38rem;
    overflow: hidden;
    border: 1px solid rgba(17, 27, 36, .18);
    border-radius: 1.55rem;
    background: #111b24;
    box-shadow: 0 28px 62px rgba(17, 27, 36, .17);
}

.mk-home-hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 31px 31px;
    content: "";
    pointer-events: none;
}

.mk-home-hero__copy { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 5rem); color: #fff; }
.mk-home-hero__eyebrow, .mp-eyebrow { margin: 0 0 1rem; color: #ffb38c; font-family: var(--mk-mono); font-size: .65rem; font-weight: 700; letter-spacing: .13em; line-height: 1.4; text-transform: uppercase; }
.mk-home-hero__copy h1 { max-width: 11ch; margin: 0; color: #fff; font-family: "Bebas Neue", "IBM Plex Sans", sans-serif !important; font-size: clamp(3.2rem, 6vw, 6.1rem) !important; font-weight: 400 !important; letter-spacing: .015em !important; line-height: .89 !important; text-wrap: balance; }
.mk-home-hero__copy > p { max-width: 37rem; margin: 1.7rem 0 0; color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.7; }
.mk-home-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.mk-home-hero__primary, .mk-home-hero__secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 1.15rem; border-radius: .45rem; font-size: .88rem; font-weight: 800; text-decoration: none; }
.mk-home-hero__primary { background: var(--mk-signal); color: #fff; box-shadow: 0 12px 22px rgba(0,0,0,.16); }
.mk-home-hero__primary:hover { background: var(--mk-signal-dark); color: #fff; }
.mk-home-hero__secondary { border: 1px solid rgba(255,255,255,.28); color: #fff; }
.mk-home-hero__secondary:hover { border-color: rgba(255,255,255,.65); color: #fff; }
.mk-home-hero__mailnote { margin: .9rem 0 0; color: rgba(255,255,255,.6); font-size: .76rem; line-height: 1.55; }
.mk-home-hero__mailnote a { color: #ffb38c; font-family: var(--mk-mono); font-weight: 700; text-decoration: none; }
.mk-home-hero__mailnote a:hover { color: #fff; }
.mk-home-hero__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; margin-top: 2.1rem; }
.mk-home-hero__fact { padding: .78rem .85rem; border-left: 2px solid var(--mk-signal); background: rgba(255,255,255,.06); color: rgba(255,255,255,.75); font-size: .73rem; font-weight: 600; line-height: 1.45; }

.mk-home-hero__media { position: relative; min-height: 100%; overflow: hidden; }
.mk-home-hero__media::after { position: absolute; inset: 0; background: linear-gradient(90deg, #111b24 0%, rgba(17,27,36,.18) 36%, rgba(17,27,36,.1) 100%); content: ""; }
.mk-home-hero__media img { width: 100%; height: 100%; min-height: 38rem; object-fit: cover; object-position: 52% center; filter: saturate(.82) contrast(1.06); }
.mk-home-hero__plate { position: absolute; z-index: 1; right: 1.25rem; bottom: 1.25rem; max-width: 15rem; padding: .9rem 1rem; border: 1px solid rgba(255,255,255,.26); background: rgba(17,27,36,.86); color: rgba(255,255,255,.78); font-family: var(--mk-mono); font-size: .64rem; font-weight: 700; letter-spacing: .06em; line-height: 1.5; text-transform: uppercase; }
.mk-home-hero__plate strong { display: block; margin-bottom: .35rem; color: #ffb38c; font-size: .7rem; }

.manufacturing-page { --mp-ink: var(--mk-ink); --mp-muted:#5f6b71; --mp-line:var(--mk-line); --mp-accent:var(--mk-signal); --mp-steel:#e9edeb; }
.manufacturing-page .breadcrumb { padding-left: .25rem; }
.manufacturing-page .breadcrumb a { color: #53636d; font-size: .78rem; font-weight: 700; text-decoration: none; }
.manufacturing-page .mp-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .84fr); min-height: 28rem; overflow: hidden; border: 1px solid rgba(17,27,36,.24); border-radius: 1.45rem; background: #111b24; box-shadow: 0 24px 50px rgba(17,27,36,.15); }
.manufacturing-page .mp-grid { background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.055) 1px, transparent 1px); background-size: 30px 30px; }
.manufacturing-page .mp-hero-copy { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(2rem, 5vw, 4.5rem); }
.manufacturing-page .mp-hero-title { max-width: 12ch; margin: 0; color: #fff; font-family: "Bebas Neue", "IBM Plex Sans", sans-serif; font-size: clamp(3rem, 5.3vw, 5.4rem) !important; font-weight: 400 !important; letter-spacing: .018em; line-height: .9; }
.manufacturing-page .mp-hero-subhead { max-width: 38rem; margin: 1.2rem 0 0; color: rgba(255,255,255,.72); font-size: 1.02rem; line-height: 1.7; }
.manufacturing-page .mp-hero-note { max-width: 37rem; margin-top: 1.7rem; padding: .9rem 1rem; border-left: 2px solid var(--mk-signal); background: rgba(255,255,255,.07); color: rgba(255,255,255,.77); font-size: .83rem; line-height: 1.55; }
.manufacturing-page .mp-hero-media { position: relative; overflow: hidden; min-height: 100%; }
.manufacturing-page .mp-hero-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, #111b24 0%, rgba(17,27,36,.12) 42%, rgba(17,27,36,.06) 100%); content: ""; }
.manufacturing-page .mp-hero-media img { width: 100%; height: 100%; min-height: 28rem; object-fit: cover; filter: saturate(.78) contrast(1.08); }
.manufacturing-page .mp-hero-media-label { position: absolute; z-index: 1; right: 1.25rem; bottom: 1.25rem; max-width: 13rem; padding: .75rem .85rem; border: 1px solid rgba(255,255,255,.25); background: rgba(17,27,36,.82); color: #fff; font-family: var(--mk-mono); font-size: .6rem; font-weight: 700; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.manufacturing-page .mp-fact { border-left: 2px solid var(--mk-signal); border-radius: 0; background: rgba(255,255,255,.58) !important; }
.manufacturing-page .mp-section-title { color: var(--mk-ink); font-family: "Bebas Neue", "IBM Plex Sans", sans-serif; font-weight: 400; letter-spacing: .025em; }
.manufacturing-page .mp-card { border: 1px solid var(--mp-line); box-shadow: none; }
.manufacturing-page .mp-card:hover { border-color: rgba(17,27,36,.4); transform: translateY(-2px); transition: .2s ease; }
.manufacturing-page .mp-number { color: var(--mp-accent); font-family: "Bebas Neue", Georgia, serif; font-weight: 400; }
.manufacturing-page .mp-table thead th { background: var(--mk-ink); color: #fff; font-family: var(--mk-mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }
.manufacturing-page .mp-check { color: var(--mk-signal); font-weight: 800; }
.manufacturing-page .mp-cta { background: var(--mk-signal); box-shadow: 0 12px 22px rgba(200,79,22,.18); }
.manufacturing-page .mp-cta:hover { background: var(--mk-signal-dark); color: #fff; }
.manufacturing-page .mp-link-card { border-top: 2px solid var(--mk-line); box-shadow: none !important; }
.manufacturing-page .mp-link-card:hover { border-top-color: var(--mk-signal); }
.manufacturing-page .mp-case-media { height: 12rem; margin: -1.5rem -1.5rem 1.4rem; overflow: hidden; border-radius: 1rem 1rem 0 0; background: #dfe3e1; }
.manufacturing-page .mp-case-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); transition: transform .4s ease; }
.manufacturing-page .mp-card:hover .mp-case-media img { transform: scale(1.035); }

@media (max-width: 1120px) {
    .marketing-header__bar { gap: .9rem; }
    .marketing-nav__link, .marketing-nav__summary { padding-right: .5rem; padding-left: .5rem; }
    .marketing-signin { display: none; }
}

@media (max-width: 920px) {
    .marketing-header__bar { grid-template-columns: auto 1fr; min-height: 68px; }
    .marketing-nav { display: none; }
    .marketing-actions { gap: .4rem; }
    .marketing-mobile { display: block; }
    .marketing-rfq { min-height: 39px; padding: 0 .75rem; }
    .marketing-language { display: none; }
    .mk-home-hero, .manufacturing-page .mp-hero { grid-template-columns: 1fr; }
    .mk-home-hero__media { min-height: 24rem; }
    .mk-home-hero__media::after, .manufacturing-page .mp-hero-media::after { background: linear-gradient(180deg, #111b24 0%, rgba(17,27,36,.12) 45%, rgba(17,27,36,.15) 100%); }
    .manufacturing-page .mp-hero-copy { padding-bottom: 2rem; }
    .manufacturing-page .mp-hero-media { min-height: 20rem; }
    .manufacturing-page .mp-hero-media img { min-height: 20rem; }
}

@media (max-width: 640px) {
    .marketing-header__bar { width: min(100% - 1rem, 88rem); }
    .marketing-brand__descriptor { display: none; }
    .marketing-brand__name { font-size: 1.5rem; }
    .marketing-brand__mark { width: 33px; height: 33px; }
    .mk-home-hero { min-height: 0; border-radius: 1rem; }
    .mk-home-hero__copy { padding: 2rem 1.35rem; }
    .mk-home-hero__copy h1 { font-size: clamp(2.85rem, 16vw, 4rem) !important; }
    .mk-home-hero__facts { grid-template-columns: 1fr; }
    .mk-home-hero__media img { min-height: 21rem; }
    .mk-home-hero__plate { right: .8rem; bottom: .8rem; }
    .marketing-content .x-page-wrap { padding-right: .7rem; padding-left: .7rem; }
    .manufacturing-page .mp-hero { border-radius: 1rem; }
    .manufacturing-page .mp-hero-copy { padding: 2rem 1.35rem; }
    .manufacturing-page .mp-hero-title { font-size: clamp(2.7rem, 15vw, 4rem) !important; }
    .manufacturing-page .mp-case-media { margin: -1rem -1rem 1.2rem; border-radius: .75rem .75rem 0 0; }
    .marketing-footer__inner { flex-direction: column; }
    .marketing-footer__links { justify-content: flex-start; }
}
