/* Simple responsive Coming Soon page styles */
:root{
  /* Theme: white (background), green (accent), black (text) */
  --bg: #ffffff; /* page background (white) */
  --card: #fbfdff; /* card background (very light) */
  --accent: #22c55e; /* green accent */
  --accent-contrast: #ffffff; /* text on accent (white) */
  --text: #0b1220; /* primary text (near black) */
  --muted: #6b7280; /* muted/secondary text */
  --glass: rgba(2,6,23,0.03);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  /* soft decorative radial highlights on a white background */
  background: radial-gradient(1200px 600px at 10% 10%, rgba(34,197,94,0.04), transparent 12%), radial-gradient(800px 400px at 90% 90%, rgba(2,6,23,0.02), transparent 10%), var(--bg);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 24px;
}
.container{width:100%;max-width:980px}
.card{
  background: var(--card);
  border:1px solid rgba(11,18,32,0.06);
  padding:40px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 20px 40px rgba(2,6,23,0.06);
  position:relative;
}
.logo{font-weight:700;margin:0;color:var(--accent);letter-spacing:1px}

/* Logo image styling */
.brand-logo{
  display:block;
  max-width:160px;
  height:auto;
  margin:0 auto 8px;
}

/* Contact button for WhatsApp */
.contact-btn{
  display:inline-block;
  margin-left:12px;
  background:var(--accent);
  color:var(--accent-contrast);
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-btn:hover{filter:brightness(0.95)}

@media (max-width:520px){
  .contact-btn{margin-top:8px;display:block;margin-left:0}
}
.title{font-size:2rem;margin:8px 0 4px}
.subtitle{color:var(--muted);margin:0 0 18px;line-height:1.45;max-width:760px;margin-left:auto;margin-right:auto}
.countdown{display:none}
.signup{display:flex;gap:8px;justify-content:center;flex-wrap:wrap}
.signup input{flex:1 1 240px;padding:12px 14px;border-radius:8px;border:1px solid rgba(11,18,32,0.08);background:transparent;color:var(--text)}
.signup button{background:var(--accent);color:var(--accent-contrast);padding:12px 16px;border:none;border-radius:10px;cursor:pointer;font-weight:700;box-shadow:0 6px 18px rgba(34,197,94,0.12)}
.signup button:hover{filter:brightness(0.95)}
.privacy{color:var(--muted);font-size:0.85rem;margin-top:14px}
.footer{color:var(--muted);text-align:center;margin-top:18px;font-size:0.9rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

@media (max-width:520px){
  .card{padding:20px}
  .title{font-size:1.5rem}
  .countdown{gap:8px}
  .countdown div{min-width:56px;padding:8px}
  body {
    align-items: flex-start;
    min-height: 100vh;
    padding: 16px;
  }
}

/* Feature list */
.features{list-style:none;padding:0;margin:60px 0;display:grid;grid-template-columns:repeat(3,minmax(220px,360px));gap:12px;justify-content:center;justify-items:center;align-items:start;margin-left:auto;margin-right:auto}
.features li{background:rgba(34,197,94,0.06);padding:16px 18px;border-radius:12px;font-weight:600;font-size:0.95rem;color:var(--text);border:1px solid rgba(34,197,94,0.08);display:flex;flex-direction:row;align-items:center;gap:12px;text-align:left;justify-content:center;opacity:0;transform:translateY(8px);}
.feature-icon{flex:0 0 auto;width:22px;height:22px;color:var(--accent);margin-right:8px}

/* hover lift */
.features li:hover{transform:translateY(-6px);box-shadow:0 10px 30px rgba(2,6,23,0.06);transition:transform 220ms ease, box-shadow 220ms ease}

/* entrance animation */
@keyframes fadeUp{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.features li:nth-child(1){animation:fadeUp 420ms ease forwards 0ms}
.features li:nth-child(2){animation:fadeUp 420ms ease forwards 80ms}
.features li:nth-child(3){animation:fadeUp 420ms ease forwards 160ms}
.features li:nth-child(4){animation:fadeUp 420ms ease forwards 240ms}
.features li:nth-child(5){animation:fadeUp 420ms ease forwards 320ms}
.features li:nth-child(6){animation:fadeUp 420ms ease forwards 400ms}

/* Floating WhatsApp CTA */
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(34,197,94,0.18);
  z-index:1200;
  text-decoration:none;
  color:var(--accent-contrast);
}
.whatsapp-float svg{display:block}
.whatsapp-float .sr-only{position:static;clip:auto;width:auto;height:auto;margin-left:8px}

@media (min-width:900px){
  .features{justify-content:flex-start}
}

/* Responsive feature grid fallbacks */
@media (max-width:1000px){
  /* medium screens: 2 columns */
  .features{grid-template-columns:repeat(2,minmax(200px,360px));}
}

@media (max-width:640px){
  /* small screens: single column */
  .features{grid-template-columns:repeat(1,1fr);gap:10px}
  .features li{width:100%;justify-content:flex-start}
}
