/* ===== RoidzShop — landing ===== */
:root{
  --bg:#0a0a0b; --card:#141416; --line:#242426;
  --text:#f4f4f2; --muted:#a0a09c; --accent:#ffffff; --on-accent:#0a0a0a;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  background:var(--bg); color:var(--text);
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased; letter-spacing:-.01em;
}

.stage{
  position:relative; min-height:100dvh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:32px 20px 160px; overflow:hidden; text-align:center;
}
.glow{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(60% 45% at 50% 30%, rgba(255,255,255,.08), transparent 70%);
}

/* brand */
.brand{position:relative; z-index:1; animation:rise .6s ease both}
.logo{display:flex; align-items:center; gap:16px; justify-content:center}
.logo .mark{
  width:74px; height:74px; border-radius:18px;
  background:var(--accent); color:var(--on-accent);
  display:grid; place-items:center; font-weight:800; font-size:40px;
  box-shadow:0 10px 40px rgba(0,0,0,.5);
}
.logo .word{display:flex; flex-direction:column; align-items:flex-start; line-height:1}
.logo .name{font-size:38px; font-weight:800; letter-spacing:-.03em}
.logo .tag{font-size:11px; font-weight:600; letter-spacing:.22em; color:var(--muted); margin-top:6px}
.lead{margin-top:22px; font-size:16px; color:var(--muted); max-width:440px}

/* floating buttons */
.fabs{
  position:fixed; left:0; right:0; bottom:0; z-index:5;
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
  padding:20px 20px calc(20px + env(safe-area-inset-bottom));
  background:linear-gradient(transparent, rgba(0,0,0,.65) 45%);
}
.fab{
  display:inline-flex; align-items:center; gap:10px;
  min-width:220px; justify-content:center;
  padding:16px 26px; border-radius:16px; cursor:pointer;
  font-size:16px; font-weight:700; text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.fab .ic{width:20px; height:20px; flex:0 0 auto}
.fab-primary{background:var(--accent); color:var(--on-accent); box-shadow:0 10px 30px rgba(255,255,255,.14)}
.fab-primary:hover{transform:translateY(-3px); box-shadow:0 16px 40px rgba(255,255,255,.2)}
.fab-ghost{background:var(--card); color:var(--text); border:1px solid var(--line)}
.fab-ghost:hover{transform:translateY(-3px); border-color:#3a3a3c}

@keyframes rise{from{opacity:0; transform:translateY(14px)} to{opacity:1; transform:none}}

@media (max-width:480px){
  .logo .mark{width:60px; height:60px; border-radius:15px; font-size:32px}
  .logo .name{font-size:30px}
  .fab{min-width:100%}
}
