/* Mellow share / Universal Links site — minimal landing CSS.
   Mirrors the legal site palette so both Netlify properties feel like
   the same brand. Centred hero layout; pure static, no JS dependency. */

:root {
  --bg:        #FFFFFF;
  --surface:   #FBFAF7;
  --text:      #1F2A24;
  --text-soft: #4B5752;
  /* brand.anchor from the app's constants/theme.ts. Was #00704A "Siren
     green" — Starbucks' trademark colour, which must not appear on a public
     page for a de-branded product. The deep forest green is the actual
     brand colour and matches what the app renders. */
  --accent:    #1E3932;
  --border:    #E5E7EB;
  --max-w:     560px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans',
               'Yu Gothic', 'Meiryo', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px 48px;
  text-align: center;
}

.brand {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 0 0 8px;
}

.tagline {
  color: var(--text-soft);
  font-style: italic;
  margin: 0 0 48px;
}

.hero h1 {
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 16px;
  font-weight: 600;
}

.hero p {
  color: var(--text-soft);
  margin: 0 0 24px;
}

.note {
  display: inline-block;
  margin-top: 32px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 14px;
}

footer {
  text-align: center;
  color: var(--text-soft);
  font-size: 13px;
  padding: 24px;
  border-top: 1px solid var(--border);
}

footer a {
  color: var(--text-soft);
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover { color: var(--accent); }
