/* Bold Activist theme — Greenpoint Tenants */
:root{
  --bg:#000;           /* pure black */
  --fg:#f2f5f7;        /* near-white */
  --muted:#a4afb7;
  --accent:#2ee58d;    /* neon green */
  --hair:#1a1a1a;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1000px 600px at 50% -10%, rgba(46,229,141,0.12), transparent 60%),
    var(--bg);
  color:var(--fg);
  line-height:1.45;
  display:flex;
}

.wrap{
  display:flex;
  flex-direction:column;
  min-height:100%;
  width:100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 20px 36px;
}

.header{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 12px 0 6px;
}

.logo{
  width:min(360px, 66vw);
  height:auto;
  filter: drop-shadow(0 12px 40px rgba(46,229,141,.20));
}

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
  margin: 28px 0 10px;
}

.btn{
  display:inline-block;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--accent);
  color:#041e10;
  text-decoration:none;
  font-weight: 900;
  letter-spacing:.2px;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 10px 28px rgba(46,229,141,.28), inset 0 -2px 0 rgba(0,0,0,.15);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 34px rgba(46,229,141,.35) }
.btn:active{ transform: translateY(0) scale(.99) }

.btn-outline{
  background: transparent;
  color: var(--fg);
  border:1px solid #2a2a2a;
  box-shadow:none;
  font-weight: 700;
}

.footer{
  margin-top:auto;
  text-align:center;
  padding-top: 30px;
}

.divider{
  height:1px;
  background:linear-gradient(90deg, transparent, #1e1e1e, transparent);
  margin: 10px auto 18px;
  width: min(560px, 86%);
}

.socials{
  display:flex;
  justify-content:center;
  gap:24px;
  margin: 6px 0 10px;
}

.social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  border-radius:12px;
  background: #0b0b0b;
  border:1px solid #1f1f1f;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.social:hover{ transform: translateY(-2px); filter: saturate(1.15); box-shadow: 0 10px 24px rgba(0,0,0,.35) }
.social img{ width:26px; height:26px; display:block }

.small{
  color: var(--muted);
  font-size: 13px;
  margin-top:8px;
}
