:root{
  --bg: #f7f7f8;
  --panel: #ffffff;
  --border: #e5e5e7;
  --text: #111111;
  --muted: #6b7280;
}

*{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
}

body{
  font-family: "Roboto", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* LAYOUT CENTRATO */
.home{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* TITOLO */
.site-title{
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: .04em;
  margin: 0 0 40px;
}

/* RIGA APP */
.apps-row{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
}

/* LINK APP */
.app-link{
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 160px;
  padding: 14px 18px;

  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;

  text-decoration: none;
  color: var(--text);

  transition: all .15s ease;
}

/* TESTO */
.app-name{
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: .02em;
}

/* HOVER */
.app-link:hover{
  transform: translateY(-2px);
  border-color: #cfcfd4;
  background: #fafafa;
}

.app-link:active{
  transform: translateY(0);
}

/* FOOTER */
.site-footer{
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 600px){
  .site-title{
    margin-bottom: 30px;
  }

  .app-link{
    min-width: 140px;
    padding: 12px 14px;
  }
}