:root{
  --green: #27ae60;
  --green-dark: #1e8b4a;
  --muted: #566169;
  --bg: #ffffff;
  --surface: #f7fbf8;
  --accent: rgba(39,174,96,0.12);
  --radius: 14px;
  --glass: rgba(255,255,255,0.7);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color-scheme: light;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:#05201a;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  overflow-x:hidden;
}

.scene{position:relative;min-height:100vh;display:flex;flex-direction:column}

.container{max-width:1100px;margin:0 auto;padding:28px}

/* Floating blobs (behind content) */
.blob{
  position:fixed;
  filter: blur(36px) saturate(120%);
  opacity:0.85;
  z-index:0;
  transform-origin:center;
  mix-blend-mode:normal;
}
.blob-1{width:420px;height:420px;background:linear-gradient(120deg,#caf7d6,#9ef0b8);left:-120px;top:-80px;animation:float 10s ease-in-out infinite alternate; border-radius:42%}
.blob-2{width:300px;height:300px;background:linear-gradient(120deg,#e6ffef,#bff6d8);right:-80px;top:-140px;animation:float 9s ease-in-out infinite alternate-reverse;border-radius:36%}
.blob-3{width:260px;height:260px;background:linear-gradient(120deg,#d7fbe9,#baf4ce);left:30%;bottom:-100px;animation:float 12s ease-in-out infinite;border-radius:40%}
.blob-4{width:160px;height:160px;background:linear-gradient(120deg,#e7ffef,#c8f7d8);right:18%;bottom:10%;animation:float 11s linear infinite; border-radius:50%}

@keyframes float{
  from{transform:translateY(0) rotate(-4deg)}
  to{transform:translateY(28px) rotate(6deg)}
}

/* Header */
.site-header{position:relative;z-index:2;background:linear-gradient(90deg,var(--green) 0%,var(--green-dark) 100%);color:white;padding:18px;border-bottom-left-radius:22px;border-bottom-right-radius:22px;margin:18px 20px 36px}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px}
.brand{display:flex;gap:14px;align-items:center}
.logo{flex:0 0 64px;height:64px;width:64px}
.logo-bg{transform-origin:center;animation:logo-tilt 6s ease-in-out infinite}
.logo-check{stroke-dasharray:120;stroke-dashoffset:120;animation:check-draw 1.2s 0.6s cubic-bezier(.2,.8,.2,1) forwards}
.logo-dot{transform-origin:center;animation:dot-pulse 1.6s infinite ease-in-out}

@keyframes logo-tilt{0%{transform:rotate(0)}50%{transform:rotate(6deg)}100%{transform:rotate(0)}}
@keyframes check-draw{to{stroke-dashoffset:0}}
@keyframes dot-pulse{0%,100%{transform:scale(1);opacity:0.95}50%{transform:scale(1.25);opacity:0.8}}

/* Header text */
.title{margin:0;font-size:18px;letter-spacing:0.4px}
.subtitle{margin:2px 0 0;font-size:13px;opacity:0.95}

/* Main hero */
.hero{position:relative;z-index:2;background:linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.95));border-radius:18px;padding:56px;box-shadow:0 10px 30px rgba(18,45,30,0.06);text-align:center}
.coming{font-size:48px;margin:0 0 12px;letter-spacing:-1px;color:var(--green-dark);animation:slideUp 800ms ease both}
@keyframes slideUp{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
.lead{max-width:760px;margin:0 auto 26px;color:var(--muted);font-size:17px}

/* Countdown */
.countdown{display:flex;gap:14px;justify-content:center;margin:8px auto 20px;flex-wrap:wrap}
.time-col{background:rgba(255,255,255,0.7);backdrop-filter: blur(6px);border-radius:12px;padding:14px 18px;min-width:84px;box-shadow:0 6px 18px rgba(9,20,16,0.06);transition:transform .18s}
.time-num{display:block;font-size:28px;font-weight:700;color:var(--green-dark)}
.time-label{font-size:12px;color:var(--muted);margin-top:6px;display:block}

/* CTA */
.cta-row{display:flex;gap:12px;justify-content:center;margin-top:18px}
.btn{border:0;padding:12px 18px;border-radius:12px;font-weight:700;cursor:pointer;background:transparent}
.btn.ghost{border:1px solid rgba(10,30,20,0.06);color:var(--green-dark)}
.btn.cta{background:linear-gradient(90deg,var(--green) 0%,var(--green-dark) 100%);color:white;box-shadow:0 8px 26px rgba(39,174,96,0.18);transform:translateZ(0);animation:pulse 2000ms infinite}
@keyframes pulse{0%{box-shadow:0 6px 18px rgba(39,174,96,0.12)}50%{box-shadow:0 14px 34px rgba(39,174,96,0.16);transform:translateY(-3px)}100%{box-shadow:0 6px 18px rgba(39,174,96,0.12);transform:translateY(0)}}

/* Footer */
.site-footer{margin-top:28px;padding:18px;text-align:center;color:var(--muted);font-size:13px;z-index:2;background:transparent}
.site-footer .powered{margin-left:8px}
.site-footer .powered a{color:var(--green-dark);font-weight:700;text-decoration:none}
.site-footer .powered a:hover{text-decoration:underline}

/* Misc */
.socials{display:flex;gap:10px}
.social{color:rgba(255,255,255,0.9);font-weight:600;text-decoration:none;padding:8px 10px;border-radius:8px;background:rgba(255,255,255,0.05)}
.finetune{margin-top:18px;font-size:13px;color:var(--muted)}

/* Responsive */
@media (max-width:720px){
  .hero{padding:36px}
  .coming{font-size:34px}
  .header-inner{flex-direction:column;align-items:flex-start;gap:12px}
  .brand{align-items:center}
  .countdown{gap:8px}
}