/* =====================================
   RIGO AI - Welcome Screen
===================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#020817;
  font-family:Arial,sans-serif;
}

.welcome-screen{
  min-height:100vh;

  display:flex;
  justify-content:center;
  align-items:center;

  padding:24px;
}

.welcome-content{
  width:100%;
  max-width:380px;

  display:flex;
  flex-direction:column;
  align-items:center;
}

.logo{
  width:220px;
  height:220px;

  object-fit:contain;

  margin-bottom:32px;
}

.title{
  color:#ffffff;
  font-size:40px;
  font-weight:700;

  margin-bottom:12px;
}

.subtitle{
  color:#cbd5e1;
  font-size:16px;
  margin-bottom:40px;

  text-align:center;
  line-height:1.6;
}

.start-button{
  width:100%;
  height:64px;

  display:flex;
  justify-content:center;
  align-items:center;

  text-decoration:none;

  border:none;
  border-radius:20px;

  background:#1f6b46;

  color:#ffffff;

  font-size:24px;
  font-weight:700;

  box-shadow:none;

  cursor:pointer;
}
