/* ==========================================================================
   Alkando — placeholder subpages (legal, ios, android, blog, …)
   Shares the palette and background from styles.css; just the content
   block differs from the coming-soon hero. Class names still say "legal"
   for historical reasons — this was the first page to use the layout.
   ========================================================================== */

.legal-page {
  flex: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.legal-title {
  position: relative; /* anchors the ::before/::after crack slices in styles.css */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.25;
  padding-bottom: 0.1em;
  margin: 0 0 16px;
  background: linear-gradient(100deg, var(--coral-soft) 0%, var(--coral) 22%, var(--periwinkle) 55%, var(--purple-mid) 78%, var(--purple-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-note {
  margin: 0 0 28px;
  color: var(--text-faint);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 42ch;
}

.legal-back {
  color: var(--text-faint);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--text);
  text-decoration-color: currentColor;
}
