/* =========================================
   Proofiverse Landing Page
   Brand colors: Purple #89236B, Light Purple #D15ABB, Orange #FF595E
   ========================================= */

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

html, body {
  height: 100%;
}

body {
  font-family: 'Heebo', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---- Header ---- */

header {
  padding: 24px 32px;
  position: relative;
  z-index: 1;
}

.logo {
  height: 48px;
  width: auto;
  display: block;
}

/* ---- Main ---- */

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.mascot {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 8px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #89236B;
  line-height: 1.2;
}

h2 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #4a4a4a;
  letter-spacing: 0.01em;
}

/* ---- Footer ---- */

footer {
  padding: 20px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

footer p {
  font-size: 0.8rem;
  color: #888;
}

footer a {
  color: #89236B;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ---- Responsive ---- */

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.05rem;
  }

  .mascot {
    max-width: 200px;
  }
}
