/* whim — whimai.app shared stylesheet.
   Palette + typography from the app's design system (spec §2): Paper bg, Milk
   surfaces, Linen hairlines, Ink text, Taupe secondary; Nunito 800/900 display
   over the system stack. Mobile-first, no frameworks, no build step. */

:root {
  --paper: #F7F6F2;
  --milk: #FFFFFF;
  --sand: #EDECE6;
  --linen: #E2E0D8;
  --graphite: #303236;
  --ink: #26282C;
  --ink-pressed: #1B1C1F;
  --taupe: #75726B;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 24px 48px;
}

/* Wordmark — "whim" with the graphite period, Nunito 900 like the app. */
.wordmark {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  padding: 12px 0;
}
.wordmark .dot { color: var(--graphite); }

h1 {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.15;
  margin: 0.6em 0 0.35em;
  color: var(--ink);
}

h2 {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  margin: 2em 0 0.5em;
  color: var(--ink);
}

p, li { color: var(--ink); }
.muted, .effective { color: var(--taupe); }
.effective { font-size: 15px; }

a { color: var(--ink-pressed); text-underline-offset: 2px; }
a:hover { color: var(--graphite); }

ol, ul { padding-left: 1.4em; }
li { margin: 0.35em 0; }

strong { font-weight: 700; }

/* Landing */
.hero { padding: 40px 0 12px; }
.hero .subline {
  font-size: 20px;
  color: var(--taupe);
  margin-top: 0;
}
.hero .pitch { max-width: 560px; }

.badge {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 26px;
  border-radius: 28px;
  background: var(--sand);
  border: 1px solid var(--linen);
  color: var(--taupe);
  font-weight: 600;
  cursor: default;
  user-select: none;
}

/* Footer */
footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--linen);
  color: var(--taupe);
  font-size: 15px;
}
footer a { color: var(--taupe); }
footer .sep { padding: 0 6px; color: var(--linen); }
