
:root{
  --navy:#123974;
  --navy-dark:#0d2b61;
  --blue:#2e7ff1;
  --cyan:#52b9ff;
  --bg:#eef2f7;
  --line:#dbe3ee;
  --text:#1d3868;
  --muted:#4a5d84;
  --shadow:0 20px 55px rgba(12,37,84,.10);
  --shadow-soft:0 12px 30px rgba(12,37,84,.07);
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-pill:999px;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  min-height:100%;
}

body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top center, rgba(255,255,255,.85), rgba(255,255,255,0) 32%),
    linear-gradient(180deg, #f2f5f9 0%, #e9eef4 100%);
}

.page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.hero{
  width:min(1180px, 100%);
  margin:0 auto;
  text-align:center;
}

.top-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:76px;
  padding:0 34px;
  margin:0 auto 38px;
  border-radius:var(--radius-pill);
  background:rgba(255,255,255,.78);
  border:1px solid rgba(18,57,116,.09);
  color:var(--navy);
  font-size:clamp(1rem, 2vw, 1.25rem);
  font-weight:800;
  letter-spacing:.18em;
  box-shadow:var(--shadow-soft);
}

.main-card{
  width:min(1040px, 100%);
  margin:0 auto;
  padding:34px 34px 28px;
  border-radius:var(--radius-xl);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(18,57,116,.06);
  box-shadow:var(--shadow);
  backdrop-filter:blur(8px);
}

.main-card img{
  display:block;
  width:100%;
  height:auto;
  border-radius:24px;
}

.tagline{
  margin:26px auto 26px;
  color:var(--muted);
  font-size:clamp(1rem, 1.8vw, 1.18rem);
  font-weight:500;
}

.progress-card{
  width:min(760px, 100%);
  margin:0 auto;
  padding:34px 34px 38px;
  border-radius:28px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(18,57,116,.07);
  box-shadow:var(--shadow-soft);
}

.progress-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:30px;
}

.left-label{
  color:var(--navy);
  font-size:clamp(1rem, 1.8vw, 1.18rem);
  font-weight:800;
  letter-spacing:.08em;
}

.right-label{
  color:#35507f;
  font-size:clamp(1rem, 1.7vw, 1.1rem);
  font-weight:500;
}

.progress-track{
  position:relative;
  width:100%;
  height:22px;
  border-radius:999px;
  background:linear-gradient(180deg,#eef3fa 0%, #dde5f0 100%);
  overflow:hidden;
}

.progress-shimmer{
  position:absolute;
  top:3px;
  left:-22%;
  width:28%;
  height:16px;
  border-radius:999px;
  background:
    radial-gradient(circle at 78% 50%, rgba(255,255,255,.98) 0 10px, rgba(255,255,255,.0) 12px),
    linear-gradient(90deg, rgba(63,134,248,.05) 0%, rgba(88,151,255,.58) 55%, rgba(63,134,248,.95) 100%);
  box-shadow:0 0 16px rgba(75,143,248,.45);
  animation:loader 2.2s ease-in-out infinite;
}

@keyframes loader{
  0%   { left:-28%; }
  100% { left:100%; }
}

@media (max-width: 900px){
  .top-pill{
    padding:0 24px;
    min-height:66px;
    margin-bottom:28px;
    letter-spacing:.12em;
  }

  .main-card{
    padding:22px 22px 18px;
    border-radius:24px;
  }

  .tagline{
    margin:18px auto 20px;
  }

  .progress-card{
    padding:24px 22px 26px;
    border-radius:22px;
  }

  .progress-head{
    margin-bottom:20px;
  }
}

@media (max-width: 640px){
  .page{
    padding:14px;
  }

  .top-pill{
    width:100%;
    min-height:58px;
    padding:0 14px;
    margin-bottom:18px;
    font-size:.88rem;
    line-height:1.2;
    letter-spacing:.08em;
  }

  .main-card{
    padding:14px;
    border-radius:18px;
  }

  .main-card img{
    border-radius:12px;
  }

  .tagline{
    font-size:.95rem;
    line-height:1.5;
    margin:16px auto 16px;
  }

  .progress-card{
    padding:18px 16px 18px;
    border-radius:18px;
  }

  .progress-head{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    margin-bottom:14px;
  }

  .left-label, .right-label{
    font-size:.95rem;
  }

  .progress-track{
    height:18px;
  }

  .progress-shimmer{
    top:2px;
    height:14px;
  }
}
