/* Landing Page Styles */
header {
  position: absolute;
  top: 1.2em;
  left: 2em;
  z-index: 10;
}
.logo-link {
  display: flex;
  align-items: center;
}
.logo-small {
  width: 38px;
  height: 38px;
  margin-right: 0.6em;
}

main {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.centerbox-glow {
  background: #111;
  border-radius: 24px;
  box-shadow: 0 0 48px 0 rgba(255,255,255,0.14), var(--glow);
  padding: 3.5em 3em 2.5em 3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3em;
  margin-bottom: 2em;
  max-width: 440px;
  width: 95vw;
  animation: fadeIn 1.2s;
}
.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.1em;
}
.logo-large {
  width: 110px;
  height: 110px;
  margin-bottom: 1.1em;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2em;
}
.tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.6em;
  letter-spacing: 0.12em;
}
}

@media (max-width: 600px) {
  .centerbox-glow {
    padding: 2em 0.5em 1.5em 0.5em;
    max-width: 98vw;
  }
  .logo-large {
    width: 72px;
    height: 72px;
  }
  h1 {
    font-size: 1.3rem;
  }
}
