.mps3 {
    --c-bg: #eef2f6;
    --c-card: #ffffff;
    --c-text: #0f172a;
    --c-muted: #475569;
    --c-cyan: #0891b2;
    --c-cyan-dark: #155e75;
    --c-cyan-faint: rgba(8, 145, 178, 0.1);
    --c-border: #cbd5e1;
    --f-head: "Oswald", sans-serif;
    --f-body: "Barlow", sans-serif;
    --cut-corner: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);

    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--f-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.mps3 * { box-sizing: border-box; }
.mps3 a { text-decoration: none; color: inherit; transition: all 0.2s ease; }

.mps3-container { max-width: 1300px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.mps3-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.mps3-grid {
    position: absolute; inset: 0; opacity: 0.15;
    background-image:
            linear-gradient(var(--c-text) 1px, transparent 1px),
            linear-gradient(90deg, var(--c-text) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
    transform: none;
}
.mps3-glow, .mps3-noise { display: none; }

.mps3-hero { padding: 100px 0 80px; position: relative; z-index: 1; }
.mps3-heroGrid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.mps3-kicker { display: flex; gap: 12px; margin-bottom: 24px; align-items: center; }
.mps3-chip {
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--c-border);
    letter-spacing: 1px;
    background: rgba(255,255,255,0.5);
    color: var(--c-muted);
    border-radius: 0;
}
.mps3-chip:first-child {
    background: var(--c-cyan-faint);
    border-color: var(--c-cyan);
    color: var(--c-cyan-dark);
}
.mps3-chip--ghost { background: transparent; }

.mps3-h1 {
    margin: 0 0 24px;
    font-family: var(--f-head);
    font-size: clamp(50px, 6vw, 90px);
    line-height: 1;
    text-transform: uppercase;
    color: var(--c-text);
}
.mps3-h1Top { display: block; font-size: 0.5em; opacity: 0.7; margin-bottom: 0px; font-weight: 500; }
.mps3-h1Accent { color: var(--c-cyan); display: block; text-shadow: none; }

.mps3-lead {
    font-size: 20px;
    color: var(--c-muted);
    border-left: 5px solid var(--c-cyan);
    padding-left: 24px;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

.mps3-actions { display: flex; gap: 16px; margin-bottom: 50px; flex-wrap: wrap; }
.mps3-btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 16px 32px;
    font-family: var(--f-head);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0;
    clip-path: var(--cut-corner);
    transition: all 0.2s;
}
.mps3-btn--primary {
    background: var(--c-cyan); color: #fff; border: none;
    box-shadow: 0 10px 25px rgba(8, 145, 178, 0.3);
}
.mps3-btn--primary:hover { transform: translateY(-3px); filter: brightness(1.1); }
.mps3-btn--ghost {
    background: transparent; border: 2px solid var(--c-text); color: var(--c-text);
}
.mps3-btn--ghost:hover { background: var(--c-text); color: #fff; }

.mps3-metrics {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
    background: var(--c-border); border: 1px solid var(--c-border);
    max-width: 500px; margin-top: 0;
}
.mps3-metric { background: #fff; padding: 14px 20px; border: none; border-radius: 0; }
.mps3-mk {
    font-family: var(--f-body); font-size: 13px; text-transform: uppercase;
    color: var(--c-muted); font-weight: 700; margin-bottom: 4px;
}
.mps3-mv {
    font-family: var(--f-head); font-size: 22px; color: var(--c-text); margin: 0; font-weight: 500;
}
.mps3-note { margin-top: 10px; font-size: 13px; color: var(--c-muted); font-style: italic; opacity: 0.8; }

.mps3-right { position: relative; display: flex; justify-content: center; }
.mps3-card, .mps3-device {
    background: transparent; border: none; box-shadow: none; padding: 0; width: 100%;
}
.mps3-deviceTop, .mps3-deviceBody::before { display: none; }
.mps3-deviceBody { padding: 0; }
.mps3-visual {
    background: transparent; border: none; padding: 0; display: flex; justify-content: center;
}
.mps3-visualGlow { display: none; }
.mps3-visual img {
    width: 110%; max-width: 130%; height: auto; display: block;
    transform: scale(1.1);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
    transition: transform 0.5s ease;
}
.mps3-visual:hover img { transform: scale(1.15) translateX(0px); }

.mps3-section { padding: 90px 0; }
.mps3-section--soft { background: #e2e8f0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }

.mps3-head { margin-bottom: 60px; max-width: 800px; padding: 0; border: none; }
.mps3-h2 {
    font-family: var(--f-head); font-size: 48px; text-transform: uppercase;
    margin: 0 0 16px; color: var(--c-text);
}
.mps3-h2 span { color: var(--c-cyan); }
.mps3-sub { font-size: 20px; color: var(--c-muted); margin: 0; font-weight: 400; }

.mps3-grid3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}

.mps3-feature {
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}
.mps3-feature:hover { transform: none; border: none; background: transparent; }

.mps3-ico {
    width: 60px; height: 60px;
    background: #fff;
    border: 1px solid var(--c-cyan);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-cyan-dark);
    margin-bottom: 20px;
    box-shadow: 4px 4px 0 rgba(8, 145, 178, 0.1);
    border-radius: 0;
    clip-path: none;
}
.mps3-ico svg { width: 30px; height: 30px; }

.mps3-feature h3 {
    font-family: var(--f-head); font-size: 24px; margin: 0 0 12px;
    color: var(--c-text); text-transform: uppercase;
}
.mps3-feature p {
    font-size: 18px; line-height: 1.6; color: var(--c-muted); margin: 0; font-weight: 400;
}

.mps3-specCard {
    background: #fff;
    border: 1px solid var(--c-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border-radius: 0;
    padding: 0;
}

.mps3-specGrid {
    display: grid; grid-template-columns: 1fr 1fr;
}

.mps3-specRow {
    padding: 18px 24px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--c-border);
    border-right: 1px solid var(--c-border);
    background: transparent;
}
.mps3-specRow:nth-child(2n) { border-right: none; }
.mps3-specRow:nth-child(4n-1), .mps3-specRow:nth-child(4n) { background: transparent; }

.mps3-specRow span {
    font-family: var(--f-body); font-size: 14px; font-weight: 700;
    color: var(--c-muted); text-transform: uppercase;
}
.mps3-specRow strong {
    font-family: var(--f-head); font-size: 18px; color: var(--c-text); font-weight: 500;
}

.mps3-specFoot {
    background: #f8fafc;
    padding: 20px 24px;
    display: flex; gap: 12px; flex-wrap: wrap;
    border-top: 1px solid var(--c-border);
}
.mps3-pill {
    background: #fff; border: 1px solid var(--c-border);
    padding: 8px 16px; font-size: 13px; font-weight: 700;
    text-transform: uppercase; color: var(--c-muted);
    border-radius: 0; display: inline-block; width: auto;
}
.mps3-pill strong { color: var(--c-cyan-dark); }

.mps3-gallery {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px;
    height: 500px;
}
.mps3-shot {
    border: none;
    background: #e2e8f0;
    padding: 0; margin: 0;
    cursor: pointer; overflow: hidden; position: relative;
    border-radius: 0;
}
.mps3-shot:hover { border: none; }

.mps3-shot:nth-child(1) { grid-row: span 2; }
.mps3-shot img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 1;
    transition: transform 0.4s ease;
}
.mps3-shot:hover img { transform: scale(1.05); }

.mps3-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(238, 242, 246, 0.98);
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.mps3-lightbox.is-open { display: flex; }
.mps3-lbImg {
    max-width: 95vw; max-height: 95vh;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    border: none;
}
.mps3-lbClose {
    position: absolute; top: 30px; right: 30px;
    width: 60px; height: 60px; border: none;
    background: var(--c-cyan); color: #fff;
    font-size: 36px; cursor: pointer;
    clip-path: var(--cut-corner);
}

@media (max-width: 1024px) {
    .mps3-heroGrid { grid-template-columns: 1fr; }
    .mps3-right { order: -1; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .mps3-visual img { width: 100%; transform: none; }
    .mps3-visual:hover img { transform: scale(1.05); }
}

@media (max-width: 700px) {
    .mps3-h1 { font-size: 52px; }
    .mps3-lead { font-size: 19px; padding-left: 18px; }
    .mps3-grid3, .mps3-specGrid { grid-template-columns: 1fr; }
    .mps3-metrics { display: flex; flex-direction: column; max-width: 100%; border: none; gap: 10px; background: transparent; }
    .mps3-metric { border: 1px solid var(--c-border); background: #fff; }
    .mps3-specRow { border-right: none; flex-direction: column; align-items: flex-start; gap: 6px; }
    .mps3-gallery { grid-template-columns: 1fr; height: auto; }
    .mps3-shot { height: 250px; }
}