/* High vacuum valve manifold detail page */
:root {
    --vm-navy: #06263b;
    --vm-navy-2: #0d293b;
    --vm-blue: #087fc1;
    --vm-blue-2: #14649b;
    --vm-cyan: #27b7e8;
    --vm-ice: #eaf6fc;
    --vm-white: #ffffff;
    --vm-ink: #12364d;
    --vm-muted: #5b7486;
    --vm-orange: #feb56f;
    --vm-line: rgba(39, 183, 232, 0.34);
}

.manifold-page {
    color: var(--vm-ink);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.manifold-page .container {
    position: relative;
}

.manifold-shell,
.manifold-shell * {
    box-sizing: border-box;
}

.manifold-shell {
    margin-top: 104px;
    overflow: hidden;
    background: #f7fbfe;
    border: 1px solid rgba(58, 151, 208, 0.42);
    box-shadow: 0 20px 60px rgba(1, 25, 51, 0.2);
}

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

.manifold-shell picture {
    display: block;
}

.manifold-shell a {
    text-decoration: none;
}

.manifold-shell h1,
.manifold-shell h2,
.manifold-shell h3,
.manifold-shell p {
    width: auto;
    margin-top: 0;
    font-family: 'Open Sans', Arial, 'Microsoft YaHei', sans-serif;
}

.manifold-shell h1,
.manifold-shell h2,
.manifold-shell h3 {
    text-align: left;
}

.vm-hero {
    position: relative;
    isolation: isolate;
    min-height: 570px;
    padding: 76px 62px 58px;
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
    align-items: center;
    gap: 26px;
    overflow: hidden;
    color: var(--vm-white);
    background:
        radial-gradient(circle at 75% 48%, rgba(33, 169, 226, 0.3), transparent 29%),
        linear-gradient(128deg, #031b2d 0%, #063653 52%, #075581 100%);
}

.vm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(39, 183, 232, 0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 183, 232, 0.28) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 100%);
}

.vm-hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 530px;
    height: 530px;
    right: 18px;
    top: 18px;
    border: 1px solid rgba(71, 200, 240, 0.35);
    border-radius: 50%;
    box-shadow:
        0 0 0 34px rgba(39, 183, 232, 0.045),
        0 0 0 88px rgba(39, 183, 232, 0.035),
        0 0 80px rgba(12, 154, 211, 0.24);
}

.vm-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 530px;
}

.vm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--vm-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vm-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: currentColor;
}

.vm-hero h1 {
    margin-bottom: 16px;
    color: var(--vm-white);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.vm-application-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    margin-bottom: 30px;
    padding: 10px 15px;
    color: #9fe9ff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    border: 1px solid rgba(52, 198, 239, 0.78);
    background: rgba(4, 55, 82, 0.72);
    box-shadow: inset 3px 0 0 var(--vm-orange);
}

.vm-application-badge .fa {
    flex: 0 0 auto;
    color: var(--vm-cyan);
}

.vm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.vm-button {
    min-height: 46px;
    padding: 11px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--vm-white);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    border: 1px solid transparent;
    background: linear-gradient(180deg, #0798df, #0577bc);
    box-shadow: 0 9px 22px rgba(0, 130, 197, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.vm-button:hover,
.vm-button:focus {
    color: var(--vm-white);
    background: linear-gradient(180deg, #16acec, #087fc1);
    box-shadow: 0 12px 28px rgba(0, 153, 218, 0.34);
    transform: translateY(-2px);
}

.vm-button:focus-visible,
.manifold-shell a:focus-visible {
    outline: 3px solid var(--vm-orange);
    outline-offset: 3px;
}

.vm-button-secondary {
    color: #eaf8ff;
    border-color: rgba(199, 238, 252, 0.72);
    background: rgba(5, 47, 72, 0.56);
    box-shadow: none;
}

.vm-button-secondary:hover,
.vm-button-secondary:focus {
    background: rgba(13, 111, 159, 0.72);
}

.vm-hero-visual {
    position: relative;
    z-index: 1;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-hero-visual::before,
.vm-product-stage::before {
    content: '';
    position: absolute;
    width: 76%;
    height: 76%;
    border: 1px dashed rgba(73, 202, 242, 0.36);
    border-radius: 50%;
}

.vm-hero-visual picture {
    position: relative;
    z-index: 2;
    width: min(100%, 530px);
    aspect-ratio: 1 / 1;
}

.vm-hero-product {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 30px 28px rgba(0, 12, 24, 0.48));
}

.vm-section {
    padding: 78px 62px;
}

.vm-section-heading {
    max-width: 790px;
    margin: 0 auto 46px;
    text-align: center;
}

.vm-section-heading h2 {
    position: relative;
    margin: 0 0 15px;
    padding-bottom: 16px;
    color: #0a3f61;
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.vm-section-heading h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 54px;
    height: 3px;
    background: var(--vm-cyan);
    transform: translateX(-50%);
}

.vm-section-heading p {
    margin-bottom: 0;
    color: var(--vm-muted);
    font-size: 16px;
}

.vm-integration {
    background:
        radial-gradient(circle at 50% 52%, rgba(69, 185, 226, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #eef8fd 100%);
}

.vm-integration-grid {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(210px, 0.82fr) minmax(340px, 1.35fr) minmax(210px, 0.82fr);
    grid-template-areas:
        'feature1 product feature2'
        'feature3 product feature4';
    gap: 24px 30px;
    align-items: center;
}

.vm-feature-card {
    position: relative;
    z-index: 2;
    min-height: 176px;
    padding: 24px 22px;
    border: 1px solid rgba(91, 171, 216, 0.35);
    background: rgba(255, 255, 255, 0.91);
    box-shadow: 0 14px 34px rgba(17, 72, 104, 0.08);
}

.vm-feature-link {
    position: absolute;
    top: calc(50% - 26px);
    width: 112px;
    height: 36px;
    z-index: 1;
    color: rgba(20, 150, 216, 0.88);
    pointer-events: none;
    filter: drop-shadow(0 0 4px rgba(39, 183, 232, 0.24));
}

.vm-feature-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    clip-path: polygon(
        0 7px,
        28px 7px,
        50px 29px,
        100% 29px,
        100% 31px,
        49px 31px,
        27px 9px,
        0 9px
    );
}

.vm-feature-link::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1496d8;
    box-shadow: 0 0 0 4px rgba(39, 183, 232, 0.1), 0 0 10px rgba(39, 183, 232, 0.42);
}

.vm-feature-card:nth-child(1) .vm-feature-link,
.vm-feature-card:nth-child(3) .vm-feature-link {
    left: 100%;
}

.vm-feature-card:nth-child(2) .vm-feature-link,
.vm-feature-card:nth-child(4) .vm-feature-link {
    right: 100%;
    transform: scaleX(-1);
}

.vm-feature-card:nth-child(3) .vm-feature-link {
    top: calc(50% - 10px);
    transform: scaleY(-1);
}

.vm-feature-card:nth-child(4) .vm-feature-link {
    top: calc(50% - 10px);
    transform: scale(-1, -1);
}

.vm-feature-card:nth-child(1) { grid-area: feature1; }
.vm-feature-card:nth-child(2) { grid-area: feature2; }
.vm-feature-card:nth-child(3) { grid-area: feature3; }
.vm-feature-card:nth-child(4) { grid-area: feature4; }

.vm-feature-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--vm-blue);
    font-size: 22px;
    border: 1px solid #99d9f0;
    background: #eefaff;
}

.vm-feature-card h3 {
    margin-bottom: 8px;
    color: #0b527c;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.vm-feature-card p {
    margin-bottom: 0;
    color: #5b7486;
    font-size: 13px;
    line-height: 1.65;
}

.vm-mobile-feature-list {
    display: none;
}

.vm-product-stage {
    grid-area: product;
    position: relative;
    z-index: 3;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-product-stage::before {
    width: 420px;
    height: 420px;
    border-style: solid;
    border-color: rgba(73, 185, 226, 0.25);
    box-shadow:
        0 0 0 25px rgba(25, 161, 214, 0.035),
        0 0 0 62px rgba(25, 161, 214, 0.025);
}

.vm-product-stage picture {
    position: relative;
    z-index: 1;
    width: min(84%, 350px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.vm-product-stage img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
}

.vm-quality {
    position: relative;
    color: var(--vm-white);
    background:
        linear-gradient(rgba(5, 47, 72, 0.96), rgba(5, 47, 72, 0.96)),
        linear-gradient(90deg, transparent 49.8%, rgba(38, 173, 224, 0.12) 50%, transparent 50.2%);
}

.vm-quality .vm-section-heading h2 {
    color: var(--vm-white);
}

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

.vm-photo-card {
    position: relative;
    aspect-ratio: 11 / 10;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(120, 211, 241, 0.52);
    background: #031b2a;
}

.vm-photo-card picture {
    width: 100%;
    height: 100%;
}

.vm-photo-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    transition: transform 260ms ease;
}

.vm-photo-card:first-child img {
    object-position: center 34%;
}

.vm-photo-card:nth-child(2) img {
    object-position: center 78%;
}

.vm-photo-card:hover img {
    transform: scale(1.02);
}

.vm-process {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.vm-process-step {
    position: relative;
    min-width: 0;
    text-align: center;
}

.vm-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(50% + 31px);
    width: calc(100% - 48px);
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--vm-cyan) 0 4px, transparent 4px 8px);
}

.vm-process-number {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    margin: 0 auto 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vm-cyan);
    font-size: 18px;
    font-weight: 800;
    border: 1px solid rgba(91, 209, 244, 0.76);
    border-radius: 50%;
    background: #073955;
    box-shadow: 0 0 0 6px rgba(39, 183, 232, 0.07);
}

.vm-process-step h3 {
    margin-bottom: 6px;
    color: var(--vm-white);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.vm-process-step p {
    margin-bottom: 0;
    color: #a8cbd8;
    font-size: 12px;
    line-height: 1.65;
}

.vm-application {
    background: linear-gradient(180deg, #f5fbfe, #ffffff);
}

.vm-application .vm-section-heading {
    max-width: 920px;
    margin-bottom: 34px;
}

.vm-application-summary {
    margin: 0;
    color: var(--vm-muted);
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

.vm-application-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.455fr);
    gap: 18px;
    align-items: stretch;
}

.vm-batch-photo {
    height: auto;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid #c5dfea;
    background: #dceef5;
}

.vm-batch-photo--production-line {
    aspect-ratio: 898 / 772;
}

.vm-batch-photo--top-view {
    aspect-ratio: 1066 / 630;
}

.vm-batch-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

.vm-batch-photo picture {
    display: block;
    height: 100%;
}

.vm-download-section {
    padding-top: 0;
    background: #ffffff;
}

.vm-download-card {
    position: relative;
    overflow: hidden;
    padding: 42px 48px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    color: var(--vm-white);
    border: 1px solid rgba(66, 197, 239, 0.66);
    background:
        linear-gradient(rgba(4, 45, 70, 0.96), rgba(4, 66, 102, 0.96)),
        linear-gradient(90deg, rgba(39, 183, 232, 0.16) 1px, transparent 1px),
        linear-gradient(rgba(39, 183, 232, 0.16) 1px, transparent 1px);
    background-size: auto, 24px 24px, 24px 24px;
}

.vm-file-visual {
    min-height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-file-sheet {
    position: absolute;
    width: 115px;
    height: 145px;
    border: 1px solid rgba(112, 214, 245, 0.54);
    background: rgba(11, 105, 151, 0.34);
}

.vm-file-sheet:nth-child(1) { transform: rotate(-12deg) translate(-22px, 3px); }
.vm-file-sheet:nth-child(2) { transform: rotate(7deg) translate(18px, 5px); }
.vm-file-sheet:nth-child(3) { transform: rotate(0deg); }

.vm-file-visual .fa {
    position: relative;
    z-index: 2;
    color: #b7ecfb;
    font-size: 54px;
}

.vm-download-copy {
    position: relative;
    z-index: 1;
}

.vm-download-copy h2 {
    margin-bottom: 9px;
    color: var(--vm-white);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.vm-download-copy p {
    max-width: 650px;
    margin-bottom: 22px;
    color: #d1eaf3;
    font-size: 14px;
}

.vm-cta {
    padding: 38px 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    color: var(--vm-white);
    background: linear-gradient(115deg, #087fc1 0%, #099edc 65%, #0d719f 100%);
}

.vm-cta h2 {
    margin-bottom: 8px;
    color: var(--vm-white);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
}

.vm-cta p {
    max-width: 720px;
    margin-bottom: 0;
    color: #e0f5fd;
    font-size: 14px;
}

.vm-cta .vm-button {
    flex: 0 0 auto;
    min-width: 164px;
    color: #086a9f;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(3, 63, 94, 0.22);
}

.vm-cta .vm-button:hover,
.vm-cta .vm-button:focus {
    color: #064e77;
    background: #eefaff;
}

@media (min-width: 768px) {
    .manifold-page > .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .vm-hero {
        min-height: 0;
        padding-top: 14px;
        padding-bottom: 12px;
    }

    .vm-hero::after {
        width: 390px;
        height: 390px;
        right: 34px;
        top: 12px;
    }

    .vm-hero-visual {
        min-height: 0;
    }

    .vm-hero-visual picture {
        width: min(94%, 430px);
        aspect-ratio: 994 / 939;
        overflow: visible;
    }

    .vm-hero-product {
        width: 110.67%;
        max-width: none;
        transform: translate(-4.82%, -4.27%);
    }

    .vm-product-stage {
        min-height: 400px;
    }

    .vm-product-stage::before {
        width: 350px;
        height: 350px;
    }

    .vm-product-stage picture {
        width: min(80%, 300px);
    }

    html[lang="en"] .vm-hero h1 {
        font-size: clamp(30px, 3vw, 34px);
        letter-spacing: -0.02em;
        white-space: nowrap;
    }

    html[lang="en"] .vm-quality .vm-section-heading h2 {
        font-size: clamp(28px, 2.6vw, 32px);
        line-height: 1.28;
    }

    html[lang="en"] .vm-application-summary {
        font-size: 13px !important;
        white-space: nowrap;
    }

    html[lang="en"] .vm-actions .vm-button {
        padding-left: 18px;
        padding-right: 18px;
        white-space: nowrap;
    }
}

@media (max-width: 1199px) {
    .vm-hero {
        padding-left: 48px;
        padding-right: 48px;
        grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    }

    .vm-section {
        padding-left: 48px;
        padding-right: 48px;
    }

    .vm-integration-grid {
        grid-template-columns: minmax(190px, 0.8fr) minmax(300px, 1.25fr) minmax(190px, 0.8fr);
        gap: 20px;
    }

    .vm-feature-card {
        padding: 20px 18px;
    }

    .vm-product-stage {
        min-height: 420px;
    }

    .vm-product-stage::before {
        width: 360px;
        height: 360px;
    }

}

@media (max-width: 991px) {
    .vm-hero {
        min-height: auto;
        padding: 64px 42px 42px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vm-hero::before {
        mask-image: none;
    }

    .vm-hero::after {
        width: 470px;
        height: 470px;
        right: 50%;
        top: 44%;
        transform: translate(50%, -10%);
    }

    .vm-hero-copy {
        max-width: 720px;
        margin: 0 auto;
    }

    .vm-eyebrow,
    .vm-application-badge,
    .vm-actions {
        justify-content: center;
    }

    .vm-hero-visual {
        min-height: 420px;
    }

    .vm-hero-visual picture {
        width: min(82vw, 520px);
    }

    .vm-feature-link {
        display: none;
    }

    .vm-integration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            'product product'
            'feature1 feature2'
            'feature3 feature4';
    }

    .vm-product-stage {
        min-height: 460px;
    }

    .vm-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 34px;
    }

    .vm-process-step:nth-child(2)::after {
        display: none;
    }

    .vm-application-grid {
        grid-template-columns: 1fr;
    }

    .vm-download-card {
        grid-template-columns: 145px minmax(0, 1fr);
        padding: 36px;
    }

    .vm-cta {
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media (max-width: 767px) {
    .manifold-page {
        font-size: 15px;
    }

    .manifold-page > .container {
        padding-left: 0;
        padding-right: 0;
    }

    .manifold-shell {
        margin-top: 104px;
    }

    .vm-hero {
        padding: 52px 24px 30px;
    }

    .vm-hero h1 {
        font-size: 44px;
    }

    .vm-application-badge {
        width: 100%;
        text-align: left;
    }

    .vm-actions {
        width: 100%;
    }

    .vm-button {
        min-height: 48px;
    }

    .vm-actions .vm-button {
        flex: 1 1 190px;
    }

    .vm-hero-visual {
        min-height: 350px;
    }

    .vm-hero::after {
        width: 390px;
        height: 390px;
    }

    .vm-section {
        padding: 58px 24px;
    }

    .vm-section-heading {
        margin-bottom: 34px;
    }

    .vm-section-heading h2 {
        font-size: 30px;
    }

    .vm-integration-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            'product'
            'feature-list';
        gap: 0;
    }

    .vm-product-stage {
        min-height: 410px;
        margin-bottom: 26px;
    }

    .vm-product-stage::before {
        width: 310px;
        height: 310px;
    }

    .vm-product-stage picture {
        width: min(74vw, 310px);
    }

    .vm-feature-icon {
        display: none;
    }

    .vm-feature-card {
        display: none;
    }

    .vm-mobile-feature-list {
        grid-area: feature-list;
        display: grid;
        gap: 10px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .vm-mobile-feature-list li {
        position: relative;
        padding-left: 18px;
        color: #0879bd;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.65;
    }

    .vm-mobile-feature-list li::before {
        content: '';
        position: absolute;
        top: 0.72em;
        left: 1px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--vm-cyan);
        transform: translateY(-50%);
    }

    .vm-photo-grid {
        grid-template-columns: 1fr;
    }

    .vm-process {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 30px;
    }

    .vm-process-step {
        min-height: 94px;
        padding: 0 0 26px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 16px;
        text-align: left;
    }

    .vm-process-step:last-child {
        min-height: 0;
        padding-bottom: 0;
    }

    .vm-process-number {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 44px;
        height: 44px;
        margin: 0;
        font-size: 16px;
    }

    .vm-process-step h3,
    .vm-process-step p {
        grid-column: 2;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .vm-process-step h3 {
        margin-bottom: 5px;
        font-size: 16px;
    }

    .vm-process-step p {
        font-size: 12px;
        line-height: 1.7;
    }

    .vm-process-step:not(:last-child)::after {
        display: block !important;
        top: 44px;
        bottom: 0;
        left: 21px;
        width: 1px;
        height: auto;
        background: repeating-linear-gradient(180deg, var(--vm-cyan) 0 4px, transparent 4px 8px);
    }

    .vm-application-summary {
        font-size: 13px !important;
        line-height: 1.65;
        text-wrap: balance;
    }

    .vm-download-section {
        padding-top: 0;
    }

    .vm-download-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 34px 26px;
        text-align: center;
    }

    .vm-file-visual {
        min-height: 130px;
    }

    .vm-download-copy h2 {
        text-align: center;
    }

    .vm-download-copy .vm-button {
        width: 100%;
    }

    .vm-cta {
        padding: 34px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .vm-cta h2 {
        font-size: 26px;
    }

    .vm-cta .vm-button {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .vm-hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .vm-hero h1 {
        font-size: 38px;
    }

    .vm-hero-visual {
        min-height: 300px;
    }

    .vm-hero::after {
        width: 320px;
        height: 320px;
    }

    .vm-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .vm-product-stage {
        min-height: 350px;
    }

    .vm-product-stage::before {
        width: 260px;
        height: 260px;
    }

    .vm-product-stage picture {
        width: min(74vw, 280px);
    }

}

@media (prefers-reduced-motion: reduce) {
    .manifold-shell *,
    .manifold-shell *::before,
    .manifold-shell *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
