:root{
  --bg: #000000;
  --text: #e8e8e8;
  --muted: #a8a8a8;
  --accent: #25d366; /* green to match the logo vibe */
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
}

*{ box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

.wrap{
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 18px 40px;
}

.hero{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0 8px;
}

.logo{
  width: min(520px, 90vw);
  height: auto;
  display: block;
  image-rendering: auto;
}

.card{
  margin-top: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px 16px;
  backdrop-filter: blur(6px);
}

.card p{
  margin: 0 0 14px;
}

.card h2{
  margin: 18px 0 10px;
  font-size: 18px;
  letter-spacing: 0.2px;
  color: var(--accent);
}

.divider{
  border: none;
  border-top: 1px solid var(--border);
  margin: 14px 0 10px;
}

.footer{
  margin-top: 16px;
  text-align: center;
  padding: 8px 0 0;
}

.muted{
  color: var(--muted);
  font-size: 14px;
}
