/* BakeUp marketing site — palette + type mirror the app (constants/theme.ts) */
:root {
  --cream: #fcf7e8;
  --ink: #2d2a26;
  --red: #d6362a;
  --red-deep: #a82c22;
  --teal: #157e8c;
  --teal-deep: #0c5963;
  --tan: #e7ddc4;
  --warm-grey: #80705e;
  --white: #fffdf6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); }
a:hover { color: var(--teal-deep); }

.wordmark {
  font-family: 'Pacifico', cursive;
  color: var(--red);
  text-decoration: none;
  line-height: 1.2;
}
.wordmark:hover { color: var(--red-deep); }
.wordmark .spark { color: var(--red); font-size: 0.5em; vertical-align: super; }

/* ---------- landing ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 0;
}
.hero .wordmark { font-size: clamp(64px, 14vw, 120px); }
.tagline {
  font-size: clamp(19px, 3.4vw, 26px);
  font-weight: 800;
  margin: 18px 0 6px;
  color: var(--ink);
}
.subline {
  font-size: 16px;
  color: var(--warm-grey);
  font-weight: 600;
  max-width: 44ch;
  margin: 0 0 36px;
}
.dotted-rule {
  width: 120px;
  border: none;
  border-top: 3px dotted var(--tan);
  margin: 0 0 36px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 22px;
  text-decoration: none;
  transition: transform 120ms ease;
}
.store-badge:hover { transform: scale(1.03); color: var(--white); }
.store-badge .apple { font-size: 30px; line-height: 1; }
.store-badge .badge-text { text-align: left; line-height: 1.25; }
.store-badge .small { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
.store-badge .big { display: block; font-size: 19px; font-weight: 800; }
.coming-soon {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ---------- footer ---------- */
footer {
  padding: 28px 24px 36px;
  text-align: center;
  font-size: 13px;
  color: var(--warm-grey);
}
footer nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
footer a { color: var(--warm-grey); font-weight: 700; text-decoration: none; }
footer a:hover { color: var(--teal); text-decoration: underline; }
.hero + footer { margin-top: -80px; }

/* ---------- legal pages ---------- */
.legal-header {
  padding: 28px 24px 0;
  max-width: 720px;
  margin: 0 auto;
}
.legal-header .wordmark { font-size: 34px; }
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 24px 64px;
}
.legal h1 {
  font-size: 34px;
  font-weight: 900;
  margin: 24px 0 4px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.updated {
  color: var(--warm-grey);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 28px;
}
.legal h2 {
  font-size: 21px;
  font-weight: 800;
  margin: 36px 0 8px;
  color: var(--teal-deep);
}
.legal h3 { font-size: 16px; font-weight: 800; margin: 22px 0 6px; }
.legal p, .legal li { font-size: 15.5px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal .divider {
  border: none;
  border-top: 3px dotted var(--tan);
  margin: 40px 0;
}
.notice {
  background: var(--white);
  border: 1px solid var(--tan);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14.5px;
}
