:root{
    --ink:#07080a;
    --ink2:#0c0e12;
    --ink3:#11141b;
    --paper:#f1f0ec;
    --muted:#92959a;
    --line:rgba(241,240,236,.16);
    --line-strong:rgba(241,240,236,.28);
    --electric:#c8d7ff;
    --blue:#7198ff;
    --ease:cubic-bezier(.22,1,.36,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--ink)}
body{
    margin:0;
    background:var(--ink);
    color:var(--paper);
    font-family:Manrope,Arial,sans-serif;
    overflow-x:hidden;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit}
.section-shell{padding-left:7.5vw;padding-right:7.5vw}

.preloader{
    position:fixed;inset:0;z-index:100;
    display:grid;place-items:center;
    background:var(--ink);
    transition:opacity .7s var(--ease),visibility .7s;
}
.preloader.done{opacity:0;visibility:hidden;pointer-events:none}

.preloader-mark,.eyebrow{
    font:500 10px 'DM Mono',monospace;
    letter-spacing:.15em;
    text-transform:uppercase;
}
.preloader-mark i{
    display:inline-block;width:34px;height:1px;
    margin:0 13px 3px;background:var(--paper);
    animation:loading 1.2s ease-in-out infinite;
}
@keyframes loading{50%{transform:scaleX(.15);opacity:.3}}

.topbar{
    height:80px;
    position:fixed;top:0;left:0;right:0;
    z-index:30;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    padding:0 5.5vw;
    background:rgba(7,8,10,.58);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.04);
}
.brand{
    display:inline-flex;align-items:center;gap:10px;
    width:max-content;
    font-size:11px;font-weight:800;letter-spacing:.13em;
}
.brand-logo{
    width:28px;height:28px;object-fit:contain;display:block;flex-shrink:0;
}
.desktop-nav{display:flex;gap:28px}
.desktop-nav a,.header-cta,footer{
    font:500 10px 'DM Mono',monospace;
    letter-spacing:.09em;
    text-transform:uppercase;
}
.desktop-nav a{color:#8c8f94}
.desktop-nav a:hover{color:var(--paper)}
.header-cta{
    justify-self:end;
    border-bottom:1px solid var(--paper);
    padding:7px 0;
}
.header-cta span{font-size:16px;margin-left:7px}
.menu-toggle,.mobile-nav{display:none}

.eyebrow{
    color:var(--muted);
    margin:0 0 24px;
}

.hero-kicker{
    max-width:610px;
    margin:0 0 26px;
    color:#aeb2b8;
    font:500 11px/1.7 'DM Mono',monospace;
    letter-spacing:.08em;
    text-transform:uppercase;
}

/* HERO */

.hero-space{
    position:absolute;
    z-index:1;
    right:0;
    top:0;
    bottom:0;
    width:48%;
    pointer-events:none;
}
.hero-space:before{
    content:'';
    position:absolute;
    inset:12% 6% 10% 8%;
    background:
        radial-gradient(circle at 62% 45%,rgba(113,152,255,.11),transparent 24%),
        linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.014) 1px,transparent 1px);
    background-size:auto,72px 72px,72px 72px;
    mask-image:linear-gradient(90deg,transparent 0%,#000 34%,#000 100%);
    opacity:.8;
}
.hero-space:after{
    content:'';
    position:absolute;
    width:min(20vw,260px);
    aspect-ratio:1;
    right:10%;
    top:50%;
    transform:translateY(-50%);
    border-radius:50%;
    background:radial-gradient(circle,rgba(130,158,235,.08),rgba(130,158,235,.025) 42%,transparent 70%);
    filter:blur(12px);
}

.hero{
    min-height:100svh;
    position:relative;
    display:grid;
    align-items:center;
    overflow:hidden;
    background:
        radial-gradient(circle at 73% 44%,rgba(73,95,158,.24),transparent 28%),
        linear-gradient(125deg,#07080a 34%,#0b0e15);
}
.hero:after{
    content:'';
    position:absolute;inset:0;
    background:
      linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px),
      linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px);
    background-size:76px 76px;
    mask-image:linear-gradient(90deg,#000,transparent 88%);
    pointer-events:none;
}
.hero-copy{
    position:relative;
    z-index:3;
    margin-top:7vh;
    max-width:min(760px,56vw);
}
.hero h1,
.premise h2,
.method h2,
.section-heading h2,
.people h2,
.assurance h2,
.process h2,
.contact h2{
    margin:0;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:-.09em;
    line-height:.8;
}
.hero h1{font-size:clamp(4.5rem,9.3vw,10.4rem)}
.hero h1 em,
.premise h2 em,
.method h2 em,
.section-heading h2 em,
.people h2 em,
.assurance h2 em,
.process h2 em,
.contact h2 em{
    color:transparent;
    font-style:normal;
    -webkit-text-stroke:1px var(--paper);
}
.hero-intro{
    max-width:610px;
    margin:34px 0 28px;
    color:#c0c2c6;
    font-size:14px;
    line-height:1.78;
}
.hero-actions{
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
}
.primary-link{
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
    min-width:270px;
    padding:16px 18px;
    background:#dce5ff;
    color:#090a0d;
    font:500 10px 'DM Mono',monospace;
    letter-spacing:.08em;
    text-transform:uppercase;
    transition:transform .3s var(--ease),box-shadow .3s;
}
.primary-link:hover{box-shadow:0 0 38px rgba(174,197,255,.28)}
.primary-link b{font-size:18px}
.line-link{
    font:500 10px 'DM Mono',monospace;
    letter-spacing:.1em;
    text-transform:uppercase;
    border-bottom:1px solid var(--line);
    padding-bottom:11px;
}
.line-link span{font-size:16px;margin-left:14px}
}
}
.hero-foot{
    position:absolute;
    z-index:3;
    bottom:29px;
    left:7.5vw;right:7.5vw;
    display:flex;
    justify-content:space-between;
    color:var(--muted);
    font:9px 'DM Mono',monospace;
    letter-spacing:.12em;
}

/* PREMISE */
.premise{
    position:relative;
    display:grid;
    grid-template-columns:12vw 1fr;
    gap:4vw;
    padding-top:18vh;
    padding-bottom:18vh;
    background:#0b0d11;
}
.premise-index{
    font-size:clamp(5rem,10vw,11rem);
    color:rgba(241,240,236,.05);
    font-weight:700;
    letter-spacing:-.08em;
    line-height:.8;
}
.premise h2{
    font-size:clamp(3.4rem,7vw,7.7rem);
}
.premise-body{
    max-width:850px;
    margin-top:7vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:5vw;
}
.premise-body p{
    margin:0;
    color:#b6b8bc;
    font-size:16px;
    line-height:1.8;
}
.premise-body p:last-child{
    color:var(--paper);
    font-size:clamp(1.45rem,2.3vw,2.5rem);
    line-height:1.3;
    letter-spacing:-.04em;
}

/* METHOD */
.method{
    padding-top:16vh;
    padding-bottom:16vh;
    background:#0d0f14;
}
.method-head{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:10vw;
    align-items:end;
}
.method h2{font-size:clamp(3.5rem,7vw,7.8rem)}
.method-head>p{
    max-width:430px;
    margin:0;
    color:#b7b9bd;
    font-size:15px;
    line-height:1.8;
}
.principles{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    margin-top:13vh;
    border-top:1px solid var(--line);
}
.principles article{
    min-height:205px;
    padding:24px 30px 20px 0;
    border-right:1px solid var(--line);
}
.principles article+article{padding-left:30px}
.principles article:last-child{border:0}
.principles b,.panel-number,.person-card>span{
    font:500 10px 'DM Mono',monospace;
    color:var(--blue);
}
.principles h3{
    margin:50px 0 9px;
    font-size:16px;
}
.principles p{
    margin:0;
    max-width:250px;
    color:var(--muted);
    font-size:12px;
    line-height:1.65;
}


/* PROTECTION — RESTORED ORIGINAL VERSION */
.protection{
    padding:17vh 0 0;
    background:#07080a;
}

.section-heading{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:5vw;
    padding-bottom:9vh;
}

.section-heading .eyebrow{
    grid-column:1/-1;
}

.section-heading h2{
    font-size:clamp(3.5rem,7vw,8rem);
}

.section-heading>p{
    align-self:end;
    max-width:275px;
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
}

.service-rail{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding:0 7.5vw 8vh;
    gap:18px;
}

.service-rail::-webkit-scrollbar{
    display:none;
}

.service-panel{
    scroll-snap-align:start;
    min-width:min(74vw,810px);
    height:min(69vh,620px);
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr .86fr;
    padding:clamp(30px,5vw,72px);
    border:1px solid rgba(241,240,236,.23);
    background:#111522;
}

.panel-number{
    position:absolute;
    top:24px;
    right:27px;
    font:500 11px 'DM Mono',monospace;
    color:var(--blue);
}

.panel-content{
    position:relative;
    z-index:1;
    align-self:end;
}

.panel-content h3{
    font-size:clamp(2.5rem,4.7vw,5.5rem);
    letter-spacing:-.08em;
    line-height:.86;
    margin:0 0 27px;
}

.panel-content>p:not(.eyebrow){
    max-width:340px;
    color:#c1c2c5;
    font-size:13px;
    line-height:1.7;
}

.panel-content ul{
    list-style:none;
    padding:0;
    margin:29px 0 0;
    font:10px 'DM Mono',monospace;
    color:var(--electric);
    line-height:2;
}

.panel-content li:before{
    content:'+';
    margin-right:9px;
}

.panel-image{
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    width:52%;
    background-size:cover;
    background-position:center;
    opacity:.5;
    mix-blend-mode:screen;
    filter:grayscale(1) contrast(1.2);
}

.panel-image:after{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,#111522 0%,transparent 70%),
        linear-gradient(0deg,#111522,transparent 65%);
}

.panel-exposure .panel-image{
    background-image:url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1200&q=80');
}

.panel-environment .panel-image{
    background-image:url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=1200&q=80');
}

.panel-response .panel-image{
    background-image:url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1200&q=80');
}

.panel-intel .panel-image{
    background-image:url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=80');
}

/* Original fullscreen 01 → 04 sticky layer sequence */
@media(min-width:801px){
    .protection{
        min-height:510vh!important;
        padding-top:0;
        position:relative;
    }

    .protection .section-heading{
        height:100vh!important;
        padding-top:20vh;
        padding-bottom:12vh;
        display:grid;
        align-content:end;
    }

    .service-rail{
        position:sticky!important;
        top:0!important;
        width:100%;
        height:100vh;
        padding:0!important;
        display:block!important;
        overflow:hidden!important;
        scroll-snap-type:none;
        scroll-behavior:auto!important;
        pointer-events:none;
    }

    .service-panel{
        position:absolute!important;
        inset:0!important;
        width:100%!important;
        min-width:0!important;
        height:100vh!important;
        margin:0!important;
        padding:clamp(70px,10vw,150px)!important;
        display:grid!important;
        grid-template-columns:1fr .86fr!important;
        align-items:end;
        opacity:0;
        will-change:transform,opacity;
    }

    .service-panel .panel-image{
        width:57%;
        opacity:.62;
    }

    .service-panel .panel-content{
        max-width:570px;
    }

    .service-panel .panel-content h3{
        font-size:clamp(3.5rem,6.4vw,8rem);
    }

    .service-panel:first-child{
        opacity:1;
        transform:translate3d(0,0,0) scale(1);
        z-index:2;
    }

    .service-rail:after{
        content:'SCROLL TO MOVE THROUGH LAYERS';
        position:absolute;
        z-index:8;
        left:7.5vw;
        bottom:32px;
        font:10px 'DM Mono',monospace;
        letter-spacing:.14em;
        color:rgba(241,240,236,.68);
    }
}

/* WHO WE PROTECT */
.people{
    padding-top:16vh;
    padding-bottom:16vh;
    background:#0c0e12;
}
.people-head{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:10vw;
    align-items:end;
}
.people h2{font-size:clamp(3.5rem,7vw,7.8rem)}
.people-head>p{
    max-width:430px;
    margin:0;
    color:#b8babd;
    font-size:15px;
    line-height:1.8;
}
.people-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    margin-top:12vh;
    border-top:1px solid var(--line);
    border-left:1px solid var(--line);
}
.person-card{
    min-height:300px;
    padding:30px;
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line);
    display:flex;
    flex-direction:column;
}
.person-card h3{
    margin:auto 0 14px;
    font-size:clamp(2rem,3.4vw,3.8rem);
    letter-spacing:-.06em;
}
.person-card p{
    max-width:500px;
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
}

/* ASSURANCE */
.assurance{
    background:#f0efeb;
    color:#0a0b0e;
    padding:15vh 0;
}
.assurance-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:10vw;
    align-items:end;
}
.assurance .eyebrow{color:#68696b}
.assurance h2{
    font-size:clamp(3.8rem,7.5vw,8.5rem);
}
.assurance h2 em{-webkit-text-stroke-color:#0a0b0e}
.assurance-side>p{
    max-width:520px;
    margin:0 0 55px;
    color:#515357;
    font-size:17px;
    line-height:1.7;
}
.assurance-points{
    border-top:1px solid #b9b9b4;
}
.assurance-points>div{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:35px;
    padding:20px 0;
    border-bottom:1px solid #b9b9b4;
}
.assurance-points strong{font-size:14px}
.assurance-points span{
    color:#5d5f62;
    font-size:12px;
    line-height:1.6;
}

/* PROCESS */
.process{
    padding-top:15vh;
    padding-bottom:17vh;
    background:#f0efeb;
    color:#0a0b0e;
    border-top:1px solid #c6c6c1;
}
.process .eyebrow{color:#68696b}
.process-head{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:10vw;
    align-items:end;
    margin-bottom:12vh;
}
.process h2{font-size:clamp(3.7rem,8vw,8.7rem)}
.process h2 em{-webkit-text-stroke-color:#0a0b0e}
.process-head p{
    max-width:340px;
    margin:0;
    color:#55575a;
    font-size:14px;
    line-height:1.7;
}
.process ol{
    list-style:none;
    margin:0;
    padding:0;
    border-top:1px solid #b6b6b1;
}
.process li{
    display:grid;
    grid-template-columns:12vw 1fr;
    padding:29px 0;
    border-bottom:1px solid #b6b6b1;
}
.process li>span{font:11px 'DM Mono',monospace}
.process h3{
    margin:0 0 8px;
    font-size:clamp(1.7rem,3vw,3rem);
    letter-spacing:-.06em;
}
.process li p{
    margin:0;
    color:#55575a;
    font-size:13px;
}

/* CONTACT */
.contact{
    padding-top:17vh;
    padding-bottom:17vh;
    background:#0b0d12;
}
.contact-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:10vw;
    align-items:end;
}
.contact h2{font-size:clamp(4rem,8.3vw,9rem)}
.contact-title{position:relative}
.location-seal{
    margin-top:55px;
    display:flex;
    align-items:center;
    gap:14px;
    width:max-content;
    color:#8f9298;
    font:9px/1.7 'DM Mono',monospace;
    letter-spacing:.12em;
}
.location-seal img{
    width:34px;height:34px;object-fit:contain;
    filter:grayscale(1);
    opacity:.7;
}
.contact-copy{max-width:390px}
.contact-copy>p{
    margin:0;
    color:#b8babd;
    font-size:14px;
    line-height:1.75;
}
.contact-button{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:33px 0 28px;
    padding:18px 20px;
    background:#dce5ff;
    color:#0a0b0e;
    font:500 10px 'DM Mono',monospace;
    letter-spacing:.08em;
    text-transform:uppercase;
    transition:transform .3s var(--ease),box-shadow .3s;
}
.contact-button:hover{box-shadow:0 0 45px rgba(174,197,255,.35)}
.contact-button b{font-size:20px}
.contact small{
    color:var(--muted);
    font:10px/1.9 'DM Mono',monospace;
}

/* FOOTER */
footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:27px 7.5vw;
    border-top:1px solid var(--line);
    color:var(--muted);
}
footer .brand{color:var(--paper)}

.reveal{
    opacity:0;
    transform:translateY(32px);
    transition:opacity .8s var(--ease),transform .8s var(--ease);
}
.reveal.visible{opacity:1;transform:none}

/* TABLET + MOBILE */
@media(max-width:800px){
    .topbar{
        grid-template-columns:1fr auto;
        padding:0 6vw;
    }
    .desktop-nav,.header-cta{display:none}
    .menu-toggle{
        display:grid;
        gap:6px;
        width:30px;
        justify-self:end;
        padding:8px 0;
        border:0;
        background:transparent;
        cursor:pointer;
    }
    .menu-toggle span{
        display:block;
        width:100%;
        height:1px;
        background:var(--paper);
        transition:transform .35s var(--ease);
    }
    .menu-toggle.active span:first-child{transform:translateY(3.5px) rotate(45deg)}
    .menu-toggle.active span:last-child{transform:translateY(-3.5px) rotate(-45deg)}

    .mobile-nav{
        position:fixed;
        z-index:25;
        inset:0;
        padding:115px 7vw 55px;
        display:flex;
        flex-direction:column;
        gap:0;
        background:#080a0e;
        opacity:0;
        visibility:hidden;
        transform:translateY(-16px);
        transition:.4s var(--ease);
    }
    .mobile-nav.open{
        opacity:1;
        visibility:visible;
        transform:none;
    }
    .mobile-nav a{
        padding:15px 0;
        border-bottom:1px solid var(--line);
        font-size:clamp(1.8rem,7vw,3rem);
        font-weight:650;
        letter-spacing:-.045em;
    }

    .section-shell{padding-left:6vw;padding-right:6vw}

    .hero{
        min-height:auto;
        padding-top:125px;
        padding-bottom:88px;
        display:block;
        overflow:hidden;
    }

    .hero-copy{
        max-width:100%;
        margin:0;
        position:relative;
        z-index:4;
    }

    .hero-kicker{
        max-width:520px;
        margin-bottom:20px;
        font-size:9px;
        line-height:1.65;
        letter-spacing:.07em;
    }

    .hero h1{
        font-size:clamp(4rem,15.5vw,6.8rem);
        line-height:.82;
        max-width:100%;
    }

    .hero-intro{
        max-width:560px;
        margin:28px 0 25px;
        font-size:13px;
        line-height:1.72;
    }

    .hero-actions{
        align-items:flex-start;
        flex-direction:column;
        gap:18px;
        width:min(100%,420px);
    }

    

    .hero-foot{
        position:relative;
        left:auto;
        right:auto;
        bottom:auto;
        margin-top:34px;
        display:flex;
        gap:20px;
        justify-content:space-between;
    }

    .premise{
        grid-template-columns:1fr;
        gap:35px;
        padding-top:13vh;
        padding-bottom:13vh;
    }
    .premise-index{font-size:5rem}
    .premise-body{
        grid-template-columns:1fr;
        gap:28px;
        margin-top:6vh;
    }

    .method,
    .people,
    .assurance,
    .process,
    .contact{
        padding-top:12vh;
        padding-bottom:12vh;
    }

    .method-head,
    .section-heading,
    .people-head,
    .assurance-grid,
    .process-head,
    .contact-grid{
        grid-template-columns:1fr;
        gap:38px;
    }

    .principles{
        grid-template-columns:1fr;
        margin-top:9vh;
    }
    .principles article,
    .principles article+article{
        min-height:auto;
        padding:25px 0;
        border-right:0;
        border-bottom:1px solid var(--line);
    }
    .principles h3{margin:30px 0 8px}
    .protection{
        padding-top:13vh;
        padding-bottom:13vh;
    }

    .section-heading{
        padding-bottom:7vh;
    }

    .service-rail{
        padding-left:6vw;
        padding-right:6vw;
    }

    .service-panel{
        min-width:88vw;
        height:620px;
        grid-template-columns:1fr;
        padding:35px;
    }

    .panel-image{
        width:100%;
        height:60%;
        top:auto;
        opacity:.35;
    }

    .panel-content{
        position:relative;
        z-index:2;
    }
.people-grid{
        grid-template-columns:1fr;
        margin-top:9vh;
    }
    .person-card{min-height:235px}

    .assurance-points>div{
        grid-template-columns:1fr;
        gap:8px;
    }

    .process-head{margin-bottom:8vh}
    .process li{grid-template-columns:18vw 1fr}

    .contact-grid{gap:52px}

    footer{
        padding:25px 6vw;
        gap:15px;
        font-size:8px;
    }
    footer>span{display:none}
}

@media(max-width:520px){
    .hero{
        min-height:auto;
        padding-top:105px;
        padding-bottom:62px;
    }

    .hero h1{
        font-size:clamp(3.65rem,17vw,5.45rem);
        letter-spacing:-.075em;
    }

    .hero-kicker{
        max-width:100%;
        font-size:8.5px;
        line-height:1.6;
    }

    .hero-intro{
        max-width:100%;
        font-size:12.5px;
        line-height:1.72;
        margin-top:24px;
    }

    .primary-link{
        min-width:0;
        width:100%;
    }

    .line-link{
        font-size:9px;
    }

    

    .hero-foot{
        margin-top:25px;
        font-size:8px;
    }

    .hero-foot span:first-child{display:none}

    .premise h2,
    .method h2,
    .section-heading h2,
    .people h2,
    .assurance h2{
        font-size:clamp(3rem,14vw,4.5rem);
    }

    .service-panel{
        min-width:90vw;
        height:620px;
        padding:26px;
    }
    .panel-content>p:not(.eyebrow){
        font-size:12px;
    }

    .person-card{
        padding:24px;
    }

    .contact h2{
        font-size:clamp(3.7rem,16vw,5.7rem);
    }

    .location-seal{
        margin-top:35px;
    }
}

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


@media(max-width:390px){
    .hero{
        padding-top:96px;
    }

    .hero h1{
        font-size:clamp(3.25rem,16.7vw,4.5rem);
    }

    .primary-link{
        gap:16px;
        padding:15px 14px;
        font-size:8.5px;
    }

    

    .brand span{
        font-size:9px;
    }
}


@media(max-width:800px){
    .hero-space{
        position:absolute;
        width:100%;
        inset:0;
        z-index:1;
        opacity:.45;
    }
    .hero-space:before{
        inset:7% -15% 8% 28%;
        mask-image:linear-gradient(90deg,transparent 0%,#000 48%,#000 100%);
    }
    .hero-space:after{
        width:52vw;
        right:-18vw;
        top:42%;
    }
}
@media(max-width:520px){
    .hero-space{opacity:.32}
    .hero-space:before{inset:8% -35% 10% 42%}
    .hero-space:after{
        width:70vw;
        right:-32vw;
        top:38%;
    }
}
