/* ==========================================
   URDODO Maintenance Page
   style.css
========================================== */

:root {

    --primary: #5F18B9;
    --blue: #015FFC;
    --red: #F40909;
    --green: #04903A;
    --orange: #F89A12;

    --dark: #11132F;

    --bg: #FBFCFE;

    --text: #1d2335;

    --muted: #70738A;

    --border: rgba(0,0,0,.08);

    --shadow:
        0 20px 60px rgba(17,19,47,.08);

    --radius:24px;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    font-family:'Outfit',sans-serif;

    color:var(--text);

    overflow-x:hidden;

    position:relative;

}

body::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    right:0;

    min-height:110vh;

    background-image:url('../assets/b.png');

    background-size:cover;

    background-position:top center;

    background-repeat:no-repeat;

    z-index:0;

    pointer-events:none;

}

/* Mobile background image swap — overridden in responsive.css */

.page-bg{

    position:relative;

    z-index:1;

}

/* ============================= */

.container{

    width:min(1280px,92%);

    margin:auto;

}

/* ============================= */

.hero-bg{

    position:relative;

    overflow:hidden;

    z-index:0;

}

/* ============================= */

#particles{

    position:fixed;

    inset:0;

    z-index:0;

    pointer-events:none;

}

/* ============================= */

.header{

    padding:5px 0;

}

/* ============================= */

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:white;

    padding:10px 30px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

/* ============================= */

.logo{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    text-decoration:none;

    line-height:1.1;

}

.logo img{

    height:30px;

}
.tagline {
    font-size: 4.8px;
    font-weight: 800;
    text-transform: uppercase;
     letter-spacing: 0.2x;
    margin-left: 12px;
    margin-top: 4px;

}

.black {
    color: #222222;
}

.blue {
    color: #0F6BFF;
}

.red {
    color: #EF4444;
}

.green {
    color: #22C55E;
}

/* ============================= */

nav ul{

    display:flex;

    list-style:none;

    gap:45px;

}

/* ============================= */

nav a{

    text-decoration:none;

    color:var(--dark);

    font-weight:500;

    transition:.35s;

}

nav a:hover{

    color:var(--primary);

}

/* ============================= */

.status-pill{

    display:flex;

    align-items:center;

    gap:10px;

    background:#fff;

    border:1px solid rgba(95,24,185,.15);

    border-radius:100px;

    padding:12px 22px;

    color:var(--dark);

    font-weight:500;

}

.dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#ff2e2e;

}

/* ============================= */

.hero{

    padding:15px 0 10px;

    position:relative;

}

/* ============================= */

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:start;

    gap:20px;

}

/* ============================= */

.badge{

    display:inline-flex;

    align-items:center;
    font-size: 10px;

    gap:5px;

    background:#efe8ff;

    color:var(--primary);

    padding:8px 20px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:10px;

}

/* ============================= */

.hero h1{

    font-size:50px;

    line-height:1.05;

    color:var(--dark);

    margin-bottom:10px;

    font-weight:800;

}

.hero h1 span{

    display:block;

    background:

    linear-gradient(90deg,

    var(--blue),

    var(--primary),

    var(--red),

    var(--green));

    -webkit-background-clip:text;

    color:transparent;

}

/* ============================= */

.hero h2{

    font-size:26px;

    color:var(--primary);

    margin-bottom:14px;

}

/* ============================= */

.hero p{

    color:var(--muted);

    font-size:12px;

    line-height:1.9;

    max-width:620px;
    margin-bottom: 30px;
}

/* ============================= */

.notify-card{

    margin-top:0;

    background:white;

    padding:12px 18px;

    border-radius:16px;

    box-shadow:0 2px 20px rgba(0,0,0,.06);

    border:1px solid rgba(0,0,0,.06);

    max-width:420px;

}

.notify-header{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:10px;

}

.notify-icon-wrapper{

    width:26px;

    height:26px;

    background:#5F18B9;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.notify-icon{

    width:14px;

    height:14px;

    color:white;

    stroke-width:2.2;

}

.notify-card h3{

    font-size:12px;

    margin:0;

    font-weight:600;

    color:var(--dark);

}

/* ============================= */

.notify-form{

    display:flex;

    gap:10px;

    width:100%;

}

.notify-form input{

    flex:1;

    min-width:0;

    height:32px;

    border-radius:10px;

    border:1px solid #e0e0e0;

    padding:0 16px;

    font-size:10px;

    outline:none;

    background:#fafafa;

    transition:.3s;

}

.notify-form input:focus{

    border-color:#5F18B9;

    background:#fff;

}

/* ============================= */

.notify-form button{

    border:none;

    cursor:pointer;

    padding:0 26px;

    border-radius:10px;

    color:white;

    font-size:10px;

    font-weight:600;

    background:#7B3AEF;

    transition:.35s;

    white-space:nowrap;

    height:32px;

}

.notify-form button:hover{

    transform:translateY(-2px);

}

/* ============================= */

.support{

    margin-top:30px;

}

.support-item{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

    color:var(--muted);

    font-size:12px;

}

.support-icon{

    width:18px;

    height:18px;

    color:var(--primary);

    flex-shrink:0;

}

.clock-icon{

    color:#04903A;

}

.support a{

    color:var(--blue);

    text-decoration:underline;

    text-underline-offset:3px;

}

.support-subtext{

    color:var(--muted);

    font-size:10px;

    margin-top:4px;

    margin-bottom:0;

}

/* ============================= */

.hero-visual{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* ============================= */

.laptop{

    position:relative;

    width:100%;

    max-width:520px;

    margin:0 auto;

}

.laptop img{

    width:100%;

}

/* ============================= */

.screen{

    position:absolute;

    inset:15% 18% 18% 18%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

/* ============================= */

.screen-logo{

    width:220px;

    margin-bottom:35px;

}

/* ============================= */

.progress-wrapper{

    width:100%;

}

.progress-title{

    margin-bottom:12px;

    font-weight:600;

}

.progress{

    width:100%;

    height:12px;

    background:#ececff;

    border-radius:50px;

    overflow:hidden;

}

.progress-bar{

    width:72%;

    height:100%;

    border-radius:50px;

    background:

    linear-gradient(90deg,

    var(--blue),

    var(--primary));

}

/* ============================= */

#progressText{

    margin-top:14px;

    font-weight:700;

    color:var(--dark);

}

/* ============================= */

.floating-card{

    position:absolute;

    background:white;

    padding:20px;

    border-radius:22px;

    box-shadow:var(--shadow);

}

.sync{

    top:40px;

    left:30px;

}

.analytics{

    top:110px;

    right:30px;

}

.check{

    top:250px;

    right:110px;

}

/* ============================= */

.gear{

    position:absolute;

    left:40px;

    bottom:40px;

    width:180px;

}

.wrench{

    position:absolute;

    right:0;

    bottom:70px;

    width:170px;

}

.cone{

    position:absolute;

    bottom:0;

    right:140px;

    width:90px;

}

/* ============================= */

footer{

    padding:15px 0 40px;

    position:relative;

    z-index:2;

    background:transparent;

}

/* ============================= */

.footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    padding:18px 26px;

    border-radius:18px;

    background:linear-gradient(180deg,#ffffff,#f5f6fb);

    box-shadow:0 12px 40px rgba(17,19,47,.06);

    flex-wrap:wrap;

}

.footer > *{

    flex:1 1 auto;

    min-width:0;

}

.footer p{

    color:var(--muted);

    font-size:14px;

    white-space:nowrap;

}

.footer-links{

    display:flex;

    align-items:center;

    gap:0;

}

.footer-links a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:0 24px;

    text-decoration:none;

    color:var(--dark);

    font-size:14px;

    font-weight:500;

    border-left:1px solid rgba(0,0,0,.08);

    transition:.3s;

    white-space:nowrap;

}

.footer-links a:first-child{

    border-left:none;

    padding-left:0;

}

.footer-links a:hover{

    color:var(--primary);

}

.footer-links a .icon{

    width:18px;

    height:18px;

    color:var(--dark);

    flex-shrink:0;

}

.social{

    display:flex;

    gap:14px;

    justify-content:flex-end;

    align-items:center;

}

.social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#fff;

    font-size:15px;

    font-weight:700;

    transition:.3s;

}

.social a.linkedin{ background:#0A66C2; }

.social a.twitter{ background:#1DA1F2; }

.social a.youtube{ background:#FF0000; }

.social a:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.social-icon{

    flex-shrink:0;

    display:block;

}