
*,*::before,*::after{
    box-sizing:border-box;
    margin:0;
    padding:0
}
html{
    scroll-behavior:smooth
}
body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#0a0a0a;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased
}
:root{
    --red:#C41E1E;
    --red-dark:#9e1818;
    --ink:#0a0a0a;
    --muted:#6b6b6b;
    --muted2:#9a9a9a;
    --border:#e5e5e5;
    --bg-off:#f7f7f6;
    --bg-dark:#0f0f0f;
    --max:1240px;
    --pad:clamp(20px,5vw,80px)
}
::-webkit-scrollbar{
    width:2px
}
::-webkit-scrollbar-thumb{
    background:var(--red)
}
#nav{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:200;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 var(--pad);
    background:rgba(10,10,10,0);
    transition:background .4s,border-color .4s;
    border-bottom:1px solid transparent
}
#nav.solid{
    background:rgba(10,10,10,.96);
    border-color:rgba(255,255,255,.07);
    backdrop-filter:blur(20px)
}
#nav.always-solid{
    background:rgba(10,10,10,.96);
    border-color:rgba(255,255,255,.07)
}
.nav-logo{
    display:flex;
    align-items:center;
    text-decoration:none
}
.nav-logo img{
    height:40px;
    display:block;
}
.nav-logo .fb{
    font-family:'Syne',sans-serif;
    font-size:17px;
    font-weight:700;
    letter-spacing:.04em;
    color:#fff;
    display:none
}
.nav-logo .fb em{
    font-style:normal;
    color:var(--red)
}
.nav-right{
    display:flex;
    align-items:center;
    gap:2px
}
.nav-right a{
    font-size:12px;
    font-weight:500;
    letter-spacing:.07em;
    text-transform:uppercase;
    color:rgba(255,255,255,.6);
    text-decoration:none;
    padding:8px 16px;
    transition:color .2s;
    position:relative
}
.nav-right a:hover,.nav-right a.active{
    color:#fff
}
.nav-right .has-dd{
    cursor:default
}
.nav-dd{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    min-width:220px;
    background:rgba(15,15,15,.98);
    border:1px solid rgba(255,255,255,.08);
    padding:8px 0;
    z-index:300
}
.nav-right .has-dd:hover .nav-dd{
    display:block
}
.nav-dd a{
    display:block;
    padding:10px 18px;
    font-size:11.5px;
    letter-spacing:.06em;
    border:none;
    color:rgba(255,255,255,.55)
}
.nav-dd a:hover{
    color:#fff;
    background:rgba(255,255,255,.04)
}
.nav-btn{
    background:var(--red)!important;
    color:#fff!important;
    border-radius:2px;
    margin-left:8px
}
.nav-btn:hover{
    background:var(--red-dark)!important
}
.hbg{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
    z-index:400
}
.hbg span{
    display:block;
    width:22px;
    height:1.5px;
    background:#fff;
    transition:.3s
}
.ph{
    position:relative;
    height:56vh;
    min-height:400px;
    display:flex;
    align-items:flex-end;
    overflow:hidden
}
.ph-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transform:scale(1.05);
    animation:ken 10s ease forwards
}
@keyframes ken{
    to{
        transform:scale(1)
    }
}
.ph-veil{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(10,10,10,.9) 0%,rgba(10,10,10,.45) 50%,rgba(10,10,10,.12) 100%)
}
.ph-rb{
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:3px;
    background:var(--red);
    z-index:2
}
.ph-inner{
    position:relative;
    z-index:3;
    width:100%;
    max-width:var(--max);
    margin:0 auto;
    padding:0 var(--pad) 64px
}
.eyebrow{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--red);
    margin-bottom:18px
}
.eyebrow::before{
    content:'';
    display:block;
    width:28px;
    height:1px;
    background:var(--red)
}
.ph h1{
    font-family:'Syne',sans-serif;
    font-size:clamp(36px,5vw,68px);
    font-weight:700;
    line-height:1.02;
    letter-spacing:-.02em;
    color:#fff;
    margin-bottom:14px
}
.ph h1 em{
    font-style:normal;
    color:var(--red)
}
.ph-sub{
    font-size:15px;
    font-weight:300;
    color:rgba(255,255,255,.48);
    max-width:500px;
    line-height:1.7
}
.ticker{
    background:var(--red);
    overflow:hidden;
    padding:13px 0;
    white-space:nowrap
}
.ticker-inner{
    display:inline-flex;
    animation:tick 32s linear infinite
}
@keyframes tick{
    from{
        transform:translateX(0)
    }
    to{
        transform:translateX(-50%)
    }
}
.ticker-item{
    font-size:11px;
    font-weight:600;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:rgba(255,255,255,.88);
    padding:0 32px;
    display:flex;
    align-items:center;
    gap:32px
}
.ticker-item::after{
    content:'·';
    color:rgba(255,255,255,.4)
}
.s{
    padding:96px var(--pad)
}
.s-inner{
    max-width:var(--max);
    margin:0 auto
}
.lbl{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.15em;
    text-transform:uppercase;
    color:var(--red);
    margin-bottom:14px
}
.lbl::before{
    content:'';
    display:block;
    width:20px;
    height:1px;
    background:var(--red)
}
.ttl{
    font-family:'Syne',sans-serif;
    font-size:clamp(26px,3.5vw,46px);
    font-weight:700;
    line-height:1.1;
    letter-spacing:-.02em;
    color:var(--ink)
}
.ttl em{
    font-style:normal;
    color:var(--red)
}
.txt{
    font-size:15px;
    font-weight:300;
    line-height:1.85;
    color:var(--muted)
}
.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center
}
.split img{
    width:100%;
    height:460px;
    object-fit:cover;
    display:block;
    filter:grayscale(8%)
}
.split p{
    font-size:15px;
    font-weight:300;
    line-height:1.9;
    color:var(--muted);
    margin-bottom:18px
}
.grid-border{
    display:grid;
    border-top:1px solid var(--border);
    border-left:1px solid var(--border)
}
.grid-border > *{
    border-right:1px solid var(--border);
    border-bottom:1px solid var(--border)
}
.btn-p{
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    padding:13px 34px;
    background:var(--red);
    color:#fff;
    border:none;
    border-radius:2px;
    text-decoration:none;
    transition:.25s;
    display:inline-block;
    cursor:pointer
}
.btn-p:hover{
    background:var(--red-dark);
    transform:translateY(-1px)
}
.btn-o{
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    padding:13px 34px;
    background:transparent;
    color:#fff;
    border:1.5px solid rgba(255,255,255,.28);
    border-radius:2px;
    text-decoration:none;
    transition:.25s;
    display:inline-block
}
.btn-o:hover{
    border-color:rgba(255,255,255,.65);
    transform:translateY(-1px)
}
.btn-o-dark{
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    padding:13px 34px;
    background:transparent;
    color:var(--ink);
    border:1.5px solid rgba(0,0,0,.18);
    border-radius:2px;
    text-decoration:none;
    transition:.25s;
    display:inline-block
}
.btn-o-dark:hover{
    border-color:var(--ink);
    transform:translateY(-1px)
}
.app-dark{
    background:var(--bg-dark);
    padding:0
}
.app-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:500px
}
.app-img{
    background-size:cover;
    background-position:center;
    position:relative
}
.app-img-veil{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,rgba(10,10,10,.1),rgba(10,10,10,.75))
}
.app-body{
    padding:72px 68px;
    display:flex;
    flex-direction:column;
    justify-content:center
}
.app-lbl{
    font-size:10px;
    font-weight:600;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(255,255,255,.28);
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:10px
}
.app-lbl::before{
    content:'';
    display:block;
    width:18px;
    height:1px;
    background:rgba(255,255,255,.2)
}
.app-name{
    font-family:'Syne';
    font-size:clamp(24px,3vw,40px);
    font-weight:700;
    color:#fff;
    line-height:1.1;
    letter-spacing:-.02em;
    margin-bottom:5px
}
.app-sub{
    font-size:12px;
    font-weight:500;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:rgba(255,255,255,.3);
    margin-bottom:30px
}
.app-feats{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:36px
}
.app-feats li{
    display:flex;
    align-items:flex-start;
    gap:13px;
    font-size:14px;
    font-weight:300;
    color:rgba(255,255,255,.52);
    line-height:1.6
}
.app-feats li::before{
    content:'';
    display:block;
    width:4px;
    height:4px;
    border-radius:50%;
    background:var(--red);
    flex-shrink:0;
    margin-top:8px
}
.tags{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:32px
}
.tag{
    font-size:11px;
    font-weight:600;
    letter-spacing:.07em;
    text-transform:uppercase;
    color:rgba(255,255,255,.38);
    border:1px solid rgba(255,255,255,.1);
    padding:5px 13px;
    border-radius:20px
}
.s-contact{
    background:var(--bg-dark)
}
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:90px;
    align-items:start;
    margin-top:56px
}
.cdet{
    display:flex;
    gap:14px;
    margin-bottom:16px
}
.cdet-ic{
    width:36px;
    height:36px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:2px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    color:rgba(255,255,255,.35)
}
.cdet span{
    font-size:10px;
    font-weight:600;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:rgba(255,255,255,.22);
    display:block;
    margin-bottom:2px
}
.cdet p{
    font-size:13.5px;
    color:rgba(255,255,255,.55);
    font-weight:300
}
.form{
    display:flex;
    flex-direction:column;
    gap:12px
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px
}
.form input,.form textarea,.form select{
    width:100%;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:13px 16px;
    color:#fff;
    font-family:'Inter';
    font-size:14px;
    border-radius:2px;
    outline:none;
    transition:border-color .2s
}
.form input:focus,.form textarea:focus{
    border-color:rgba(196,30,30,.5);
    background:rgba(196,30,30,.04)
}
.form input::placeholder,.form textarea::placeholder{
    color:rgba(255,255,255,.2)
}
.form textarea{
    min-height:120px;
    resize:vertical
}
footer{
    background:#080808;
    border-top:1px solid rgba(255,255,255,.05);
    padding:56px var(--pad) 28px
}
.foot-inner{
    max-width:var(--max);
    margin:0 auto
}
.foot-top{
    display:grid;
    grid-template-columns:1.8fr 1fr 1fr 1fr;
    gap:48px;
    padding-bottom:44px;
    border-bottom:1px solid rgba(255,255,255,.05)
}
.foot-brand img{
    height:30px;
    filter:brightness(0) invert(.7);
    display:block;
    margin-bottom:14px
}
.foot-brand .fb{
    font-family:'Syne';
    font-size:16px;
    font-weight:700;
    color:rgba(255,255,255,.55);
    letter-spacing:.04em;
    margin-bottom:12px;
    display:none
}
.foot-brand .fb em{
    font-style:normal;
    color:var(--red)
}
.foot-brand p{
    font-size:12.5px;
    font-weight:300;
    color:rgba(255,255,255,.26);
    line-height:1.8
}
.foot-col h5{
    font-size:10px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:rgba(255,255,255,.2);
    margin-bottom:16px
}
.foot-col a{
    display:block;
    font-size:13px;
    font-weight:300;
    color:rgba(255,255,255,.4);
    text-decoration:none;
    padding:3px 0;
    transition:color .2s
}
.foot-col a:hover{
    color:rgba(255,255,255,.8)
}
.fci{
    display:flex;
    gap:9px;
    margin-bottom:9px
}
.fci span:first-child{
    color:var(--red);
    font-size:13px;
    flex-shrink:0
}
.fci span:last-child{
    font-size:12px;
    font-weight:300;
    color:rgba(255,255,255,.3);
    line-height:1.5
}
.foot-bot{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:14px;
    padding-top:26px
}
.foot-bot p{
    font-size:11px;
    font-weight:300;
    color:rgba(255,255,255,.18)
}
.foot-li{
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:rgba(255,255,255,.28);
    text-decoration:none;
    border:1px solid rgba(255,255,255,.1);
    padding:6px 15px;
    border-radius:2px;
    transition:.2s
}
.foot-li:hover{
    color:#fff;
    border-color:rgba(255,255,255,.3)
}
@media(max-width:1100px){
    .split{
        grid-template-columns:1fr
    }
    .split img{
        height:340px
    }
    .app-grid{
        grid-template-columns:1fr
    }
    .app-img{
        min-height:260px
    }
    .app-body{
        padding:52px 44px
    }
    .contact-grid{
        grid-template-columns:1fr;
        gap:44px
    }
    .foot-top{
        grid-template-columns:1fr 1fr;
        gap:32px
    }
}
@media(max-width:768px){
    .hbg{
        display:flex
    }
    .nav-right{
        display:none
    }
    .nav-right.open{
        display:flex;
        flex-direction:column;
        position:fixed;
        inset:0;
        background:rgba(10,10,10,.98);
        justify-content:center;
        align-items:center;
        gap:14px;
        padding-top:72px
    }
    .nav-right.open a{
        font-size:17px;
        padding:10px 24px
    }
    .nav-right.open .nav-dd{
        display:none!important
    }
    .form-row{
        grid-template-columns:1fr
    }
    .foot-top{
        grid-template-columns:1fr
    }
    .foot-bot{
        flex-direction:column;
        text-align:center
    }
}


.feat-grid{
    grid-template-columns:repeat(3,1fr)
}
.feat-item{
    padding:36px 28px;
    transition:background .2s
}
.feat-item:hover{
    background:var(--bg-off)
}
.feat-n{
    font-family:"Syne";
    font-size:11px;
    font-weight:700;
    color:var(--red);
    letter-spacing:.06em;
    margin-bottom:18px;
    display:block
}
.feat-item h3{
    font-family:"Syne";
    font-size:15px;
    font-weight:600;
    color:var(--ink);
    margin-bottom:9px
}
.feat-item p{
    font-size:13px;
    font-weight:300;
    color:var(--muted);
    line-height:1.75
}
.step-list{
    display:flex;
    flex-direction:column
}
.step{
    display:flex;
    gap:22px;
    padding:24px 0;
    border-bottom:1px solid var(--border)
}
.step:first-child{
    padding-top:0
}
.step:last-child{
    border-bottom:none
}
.step-n{
    font-family:"Syne";
    font-size:12px;
    font-weight:700;
    color:var(--red);
    letter-spacing:.06em;
    flex-shrink:0;
    margin-top:2px
}
.step h4{
    font-family:"Syne";
    font-size:14px;
    font-weight:600;
    color:var(--ink);
    margin-bottom:5px
}
.step p{
    font-size:13px;
    font-weight:300;
    color:var(--muted);
    line-height:1.7
}
.stat-bar{
    background:var(--bg-dark);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid rgba(255,255,255,.06)
}
.stat-item{
    padding:44px 28px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.06)
}
.stat-item:last-child{
    border-right:none
}
.stat-n{
    font-family:"Syne";
    font-size:52px;
    font-weight:700;
    color:#fff;
    line-height:1;
    letter-spacing:-.03em;
    display:block;
    margin-bottom:6px
}
.stat-n em{
    font-style:normal;
    color:var(--red)
}
.stat-l{
    font-size:11px;
    font-weight:500;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:rgba(255,255,255,.32)
}
@media(max-width:1100px){
    .feat-grid{
        grid-template-columns:1fr 1fr!important
    }
    .stat-bar{
        grid-template-columns:1fr 1fr
    }
}
@media(max-width:600px){
    .feat-grid{
        grid-template-columns:1fr!important
    }
    .stat-bar{
        grid-template-columns:1fr 1fr
    }
}