/* GreenRoots – critical CSS only (~2.5 KB) */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:#fff;
  background:linear-gradient(160deg,#052e16 0%,#14532d 40%,#166534 70%,#15803d 100%);
  min-height:100vh;
  overflow-x:hidden;
  line-height:1.5;
  -webkit-font-smoothing:antialiased
}
.wrap{position:relative;z-index:10;min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:3rem 1rem}
.logo{margin-bottom:2rem;animation:grow 3s ease-in-out infinite}
.logo-circle{
  width:6rem;height:6rem;margin:0 auto;border-radius:50%;
  background:rgba(22,101,52,.6);border:2px solid rgba(74,222,128,.4);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 25px rgba(5,46,22,.5);backdrop-filter:blur(4px)
}
.logo-circle svg{width:3.5rem;height:3.5rem}
h1{font-family:Georgia,Cambria,"Times New Roman",serif;font-size:clamp(2rem,5vw,3.75rem);font-weight:700;letter-spacing:-.025em;text-align:center;margin-bottom:.75rem}
.tagline{color:#86efac;font-size:clamp(1rem,2.5vw,1.25rem);font-weight:500;letter-spacing:.05em;text-transform:uppercase;text-align:center;margin-bottom:2.5rem}
.card{
  width:100%;max-width:36rem;
  background:rgba(5,46,22,.5);backdrop-filter:blur(12px);
  border:1px solid rgba(22,163,74,.3);border-radius:1rem;
  box-shadow:0 25px 50px rgba(0,0,0,.4);padding:2rem 2.5rem;text-align:center
}
.badge{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.375rem 1rem;border-radius:9999px;
  background:rgba(245,158,11,.2);border:1px solid rgba(251,191,36,.4);
  color:#fde68a;font-size:.875rem;font-weight:500;margin-bottom:1.5rem
}
.dot{position:relative;display:flex;width:.625rem;height:.625rem}
.dot::before{
  content:"";position:absolute;inset:0;border-radius:50%;
  background:#fbbf24;opacity:.75;animation:ping 1.5s cubic-bezier(0,0,.2,1) infinite
}
.dot::after{content:"";position:relative;display:inline-flex;width:.625rem;height:.625rem;border-radius:50%;background:#fbbf24}
h2{font-size:clamp(1.5rem,3vw,1.875rem);font-weight:600;margin-bottom:1rem}
.desc{color:#bbf7d0;line-height:1.6;margin-bottom:2rem;font-size:clamp(.95rem,2vw,1.125rem)}
.progress{margin-bottom:2rem}
.progress-head{display:flex;justify-content:space-between;font-size:.875rem;color:#86efac;margin-bottom:.5rem}
.bar-bg{height:.75rem;background:rgba(5,46,22,.8);border-radius:9999px;overflow:hidden;border:1px solid rgba(21,128,61,.5)}
.bar{
  height:100%;border-radius:9999px;width:68%;
  background:linear-gradient(90deg,#22c55e,#4ade80,#86efac);
  background-size:200% 100%;animation:shimmer 2s linear infinite;
  transition:width 1s ease-out
}
.eta{display:flex;align-items:center;justify-content:center;gap:.5rem;color:#86efac;font-size:.875rem;margin-bottom:2rem}
.eta svg{width:1.25rem;height:1.25rem;color:#4ade80;flex-shrink:0}
.eta strong{color:#fff}
.footer-links{border-top:1px solid rgba(21,128,61,.5);padding-top:1.5rem}
.footer-links p{color:#4ade80;font-size:.875rem;margin-bottom:1rem}
.btns{display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem}
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.625rem 1.25rem;border-radius:.5rem;
  background:rgba(21,128,61,.6);border:1px solid rgba(34,197,94,.4);
  color:#dcfce7;font-size:.875rem;font-weight:500;text-decoration:none;
  transition:background .2s,transform .2s
}
.btn:hover{background:rgba(22,163,74,.7);transform:scale(1.05)}
.btn svg{width:1rem;height:1rem;flex-shrink:0}
.note{margin-top:2.5rem;color:#15803d;font-size:.875rem;text-align:center;max-width:28rem}
.leaves{position:fixed;inset:0;pointer-events:none;overflow:hidden}
.leaf{position:absolute;opacity:.15;animation:float 8s ease-in-out infinite;color:#86efac}
.leaf:nth-child(1){top:2.5rem;left:2.5rem;width:4rem;height:4rem}
.leaf:nth-child(2){top:25%;right:4rem;width:3rem;height:3rem;animation-delay:1.5s;color:#4ade80}
.leaf:nth-child(3){bottom:33%;left:25%;width:5rem;height:5rem;animation-delay:3s;color:#bbf7d0}
.leaf:nth-child(4){bottom:5rem;right:25%;width:3.5rem;height:3.5rem;animation-delay:2s}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes grow{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}
@keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
@keyframes ping{75%,100%{transform:scale(2);opacity:0}}
@media(max-width:640px){
  .card{padding:1.5rem 1.25rem}
  .btns{flex-direction:column;align-items:stretch}
  .btn{justify-content:center}
}
@media(prefers-reduced-motion:reduce){
  .logo,.leaf,.bar,.dot::before{animation:none}
}
