/* Polygentic Brand Palette (derived from logo)
   - Lavender:      #B8B0D2
   - Light Lavender: #E8DFF5
   - Light Blue:    #D5E4F5
   - Soft Purple:   #7B6FA0
   - Dark Purple:   #2D2440
   - Muted Gray:    #B0A8B8 */

body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: linear-gradient(to bottom right, #E8DFF5, #D5E4F5);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #2D2440;
}

.container {
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 1.25rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(90, 79, 122, 0.1);
  max-width: 600px;
  width: 90%;
}

.logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #7B6FA0;
  text-decoration: none;
}

.product-link:hover {
  color: #5A4F7A;
  text-decoration: underline;
}

footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #B0A8B8;
}
