
:root{
  --emerald-600:#0f4d3f;
  --emerald-500:#156f5a;
  --emerald-400:#1b8a70;
  --emerald-300:#3cb393;
  --cream:#faf7f2;
  --ink:#0e1b16;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--ink);
  background:
    radial-gradient(1200px 1200px at 10% 10%, rgba(21,111,90,.15), transparent 60%),
    radial-gradient(1000px 800px at 90% 30%, rgba(27,138,112,.15), transparent 60%),
    linear-gradient(180deg, var(--cream), #fff);
}

.wrapper{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:4rem 1.5rem;
}

.card{
  width:min(880px, 96vw);
  background:#ffffffcc;
  backdrop-filter:saturate(160%) blur(8px);
  border:1px solid rgba(15,77,63,.10);
  border-radius:20px;
  padding:2.2rem;
  box-shadow:0 10px 40px rgba(15,77,63,.10);
  text-align:center;
}

.logo{
  width:120px;
  height:120px;
  border-radius:20px;
  overflow:hidden;
  margin:0 auto 1rem;
  box-shadow:0 6px 24px rgba(15,77,63,.18);
  display:flex;align-items:center;justify-content:center;
}
.logo img{width:100%;height:100%;object-fit:contain;background:#fff}

h1{
  font-family: "Playfair Display", Georgia, serif;
  font-weight:700;
  letter-spacing:.3px;
  margin:0;
  font-size:clamp(1.9rem, 1.5rem + 1.5vw, 2.8rem);
  color:var(--emerald-600);
}

.tagline{
  margin:.75rem auto 1.25rem;
  font-size:clamp(1rem, .95rem + .4vw, 1.15rem);
  color:#21352d;
  line-height:1.6;
  max-width:44ch;
}

.badges{display:flex;gap:.5rem; justify-content:center; margin:.5rem 0 1.5rem}
.badges span{font-size:1.25rem}

.coming{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.6rem 1rem;
  border:1px dashed rgba(15,77,63,.35);
  border-radius:999px;
  color:var(--emerald-600);
  background:rgba(21,111,90,.06);
  font-weight:600;
}

.ctas{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  justify-content:center;
  margin:1.25rem 0 0;
}

.button{
  --bg: var(--emerald-600);
  --fg: #fff;
  display:inline-flex;align-items:center;gap:.6rem;
  text-decoration:none;
  padding:.8rem 1.05rem;
  border-radius:12px;
  background:var(--bg);
  color:var(--fg);
  font-weight:600;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  box-shadow:0 8px 24px rgba(15,77,63,.25);
}
.button:hover{transform:translateY(-1px); box-shadow:0 12px 26px rgba(15,77,63,.32)}
.button.secondary{
  --bg:#fff; --fg:var(--emerald-600);
  border:1px solid rgba(15,77,63,.25);
  box-shadow:0 6px 18px rgba(15,77,63,.12);
}

hr{border:none;height:1px;background:linear-gradient(90deg,transparent, rgba(15,77,63,.2), transparent); margin:1.75rem 0}

.social{
  display:flex; gap:.8rem; justify-content:center; align-items:center; flex-wrap:wrap;
}
.icon{
  width:40px;height:40px;border-radius:50%;
  background:#fff;border:1px solid rgba(15,77,63,.2);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 14px rgba(15,77,63,.12);
  transition: transform .08s ease, box-shadow .2s ease;
}
.icon:hover{transform:translateY(-1px); box-shadow:0 8px 20px rgba(15,77,63,.2)}
.icon svg{width:20px;height:20px; fill:var(--emerald-600)}

.footer{
  margin-top:1.5rem;
  font-size:.9rem;
  color:#355b4f;
}
.footer a{color:var(--emerald-600); text-decoration:underline dotted}
