
:root{
    --navy:#061529;
    --navy2:#0b2340;
    --blue:#1e88ff;
    --cyan:#c2c5c7;
    --white:#ffffff;
    --muted:#c8d3e3;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    min-height:100vh;
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    background:
        radial-gradient(circle at top, rgba(40,120,255,.18), transparent 35%),
        linear-gradient(135deg, #02070f, #07182c 45%, #02070f);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
    padding:24px;
}
.page{
    width:100%;
    max-width:920px;
    text-align:center;
}
.card{
    background:linear-gradient(145deg, rgba(9,29,55,.96), rgba(4,14,28,.97));
    border:1px solid rgba(255,255,255,.25);
    border-radius:26px;
    padding:48px 56px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}
.logo{
    width:165px;
    max-width:45%;
    margin-bottom:26px;
    filter:drop-shadow(0 0 18px rgba(85,199,255,.35));
}
.company{
    font-size:18px;
    letter-spacing:1.2px;
    font-weight:600;
    margin-bottom:12px;
}
h1{
    font-size:54px;
    line-height:1.1;
    margin-bottom:18px;
    font-weight:800;
}
.divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin:22px 0;
    color:var(--blue);
}
.divider span{
    width:95px;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.gear{
    font-size:30px;
}
.message{
    font-size:18px;
    line-height:1.8;
    color:#eef4ff;
    margin-bottom:28px;
}
.highlight{
    color:var(--cyan);
}
.progress{
    width:100%;
    max-width:620px;
    height:16px;
    border:1px solid rgba(255,255,255,.55);
    border-radius:50px;
    margin:0 auto 8px;
    overflow:hidden;
    background:rgba(255,255,255,.08);
}
.progress-bar{
    width:70%;
    height:100%;
    border-radius:50px;
    background:repeating-linear-gradient(
        -45deg,
        #1588ff 0,
        #1588ff 10px,
        #35a8ff 10px,
        #35a8ff 20px
    );
    animation:load 2.5s ease-in-out infinite;
}
@keyframes load{
    0%,100%{width:62%}
    50%{width:74%}
}
.percent{
    font-size:22px;
    font-weight:700;
    color:var(--cyan);
    margin-bottom:34px;
}
.contact{
    display:flex;
    justify-content:center;
    gap:34px;
    flex-wrap:wrap;
    margin-top:12px;
}
.item{
    min-width:150px;
    display:flex;
    align-items:center;
    gap:12px;
    text-align:left;
}
.icon{
    width:44px;
    height:44px;
    border:1px solid rgba(85,199,255,.8);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--cyan);
    font-size:20px;
}
.label{
    font-weight:700;
    font-size:15px;
}
.value{
    color:var(--muted);
    font-size:14px;
}
.value a{
    color:inherit;
    text-decoration:none;
}
.value a:hover{
    color:var(--cyan);
    text-decoration:underline;
}
.footer{
    margin-top:24px;
    color:#dbe7f8;
    font-size:14px;
}
@media(max-width:700px){
    .card{padding:36px 24px}
    h1{font-size:38px}
    .company{font-size:14px}
    .message{font-size:16px}
    .contact{gap:20px}
}
