@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --blue:#075c83;
  --blue2:#1b8db9;
  --ink:#17344a;
  --muted:#6d8291;
  --white:#ffffff;
}

*{box-sizing:border-box}

body{
  margin:0;
  min-height:100vh;
  font-family:'Inter',Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(58,180,225,.18), transparent 28%),
    radial-gradient(circle at 90% 85%, rgba(13,119,168,.16), transparent 30%),
    linear-gradient(135deg,#eff8fb,#dceff6);
}

.page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:28px;
  position:relative;
  overflow:hidden;
}

.water{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(20,130,180,.14);
  background:rgba(255,255,255,.16);
}

.water-one{width:500px;height:500px;left:-180px;bottom:-180px}
.water-two{width:420px;height:420px;right:-150px;top:-130px}

.card{
  width:min(100%,680px);
  text-align:center;
  padding:52px 45px 32px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.8);
  border-radius:30px;
  box-shadow:0 25px 70px rgba(23,79,107,.16);
  backdrop-filter:blur(10px);
  position:relative;
  z-index:1;
}

.logo{
  width:min(100%,250px);
  height:auto;
  object-fit:contain;
  display:block;
  margin:0 auto 28px;
}

.icon-wrap{
  width:74px;
  height:74px;
  margin:0 auto 20px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#e5f7fc,#c9ebf7);
  box-shadow:inset 0 1px 0 #fff;
}

.drop{font-size:35px}

.eyebrow{
  color:var(--blue);
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  margin:0 0 12px;
}

h1{
  margin:0;
  font-size:clamp(34px,6vw,58px);
  line-height:1.08;
  letter-spacing:-2px;
}

h1 span{color:var(--blue)}

.description{
  max-width:510px;
  margin:22px auto 30px;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.progress-box{
  max-width:500px;
  margin:0 auto 25px;
  padding:17px;
  background:#f3f8fa;
  border-radius:16px;
}

.progress-label{
  display:flex;
  justify-content:space-between;
  gap:15px;
  margin-bottom:10px;
  color:var(--muted);
  font-size:13px;
}

.progress-label strong{color:var(--blue)}

.progress{
  height:8px;
  background:#dbe9ee;
  border-radius:99px;
  overflow:hidden;
}

.progress span{
  display:block;
  width:72%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--blue),var(--blue2));
  animation:grow 2.4s ease-in-out infinite alternate;
}

@keyframes grow{
  from{width:58%}
  to{width:82%}
}

.contact a{
  display:inline-flex;
  padding:12px 18px;
  border-radius:10px;
  background:#fff;
  color:var(--blue);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  border:1px solid #d7e5eb;
}

footer{
  margin-top:30px;
  color:#8ba0ad;
  font-size:11px;
}

@media(max-width:520px){
  .page{padding:16px}
  .card{padding:38px 22px 25px;border-radius:24px}
  .logo{width:220px}
  .description{font-size:14px}
  .progress-label{font-size:11px}
}
