:root{
    --green:#2ea356;
    --blue:#0ea5e9;
    --bg:#ffffff;
    --text:#0b1220;
    --muted:#6b7280;
    --max-width:1100px;
    --radius:12px;
    --gap:28px;
    }
    *{box-sizing:border-box}
    html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; background:var(--bg); color:var(--text);}
    a{color:var(--green);}
    
    .wrap{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:36px}
    .card{width:100%;max-width:var(--max-width);background:var(--bg);border-radius:var(--radius);border:1px solid rgba(11,18,32,0.06);box-shadow:0 6px 30px rgba(8,15,25,0.04);padding:28px;display:flex;flex-direction:column;gap:var(--gap)}
    
    
    @media (min-width:760px){
    .card{padding:36px}
    }
    
    
.logo-top{display:flex;justify-content:center;align-items:center;margin-bottom:20px;width:100%}
.logo-top img{max-height:80px}

.content-row{display:flex;flex-direction:column;gap:var(--gap);width:100%}
@media (min-width:760px){ .content-row{flex-direction:row;align-items:center} }
    
    
    .brand{display:flex;flex-direction:column;gap:8px;align-items:flex-start}
    @media (min-width:760px){ .brand{flex:0 0 45%} }
    
    
    .logo .title{font-size:34px;font-weight:700;letter-spacing:0.2px;color:var(--green)}
    .logo .sub{font-size:16px;color:var(--text);font-weight:600}
    
    
    .tagline{margin-top:6px;font-size:18px;color:var(--muted);max-width:40ch}
    
    
    .right{display:flex;flex-direction:column;gap:18px;align-items:flex-start}
    @media (min-width:760px){ .right{flex:1;} }
    
    
    .coming{font-weight:700;font-size:28px;color:var(--text)}
    .desc{color:var(--muted);margin-top:4px}
    
    
    .actions{display:flex;gap:20px;align-items:flex-start;margin-top:6px;width:100%;justify-content: space-between;}

.social-contact{display:flex;flex-direction:column;align-items:flex-end;gap:8px}
    
    
    .btn-mail{background:linear-gradient(90deg,var(--green),var(--blue));color:white;padding:10px 16px;border-radius:10px;border:none;cursor:pointer;font-weight:600;text-decoration:none}
    .btn-mail:hover{opacity:0.95;transform:translateY(-1px)}
    
    
    .contact{color:var(--muted);font-size:14px}
    
    
    .socials{display:flex;gap:12px;align-items:center}
    .socials a{display:inline-flex;width:40px;height:40px;border-radius:8px;align-items:center;justify-content:center;text-decoration:none;border:1px solid rgba(11,18,32,0.06)}
    .socials svg{width:20px;height:20px;display:block}
    .socials a:hover{box-shadow:0 6px 18px rgba(14,165,233,0.12);}
    
    
    .footer-note{font-size:12px;color:var(--muted);margin-top:8px}