:root {
  --orange: #E8500A;
  --orange-soft: #FEF0EC;
  --cream: #FAFAFA;
  --surface: #FFFFFF;
  --ink: #0F0F0F;
  --muted: #525252;
  --faint: #9E9E9E;
  --line: rgba(0,0,0,0.10);
  --line-soft: rgba(0,0,0,0.06);
  --green: #22C55E;
  --star: #F0A500;
  --sora: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --inter: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--inter);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main { max-width: 680px; margin: 0 auto; padding: 32px 24px 80px; }
@media (max-width: 480px) {
  main { padding: 24px 20px 64px; }
  body { font-size: 16px; }
}

/* Top nav */
.topnav {
  display: flex;
  gap: 20px;
  font-size: 15px;
  margin-bottom: 40px;
}
.topnav a { color: var(--muted); text-decoration: none; font-weight: 500; }
.topnav a:hover { color: var(--ink); }

/* Links */
a { color: var(--orange); }

/* Headings */
h1 {
  font-family: var(--sora);
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 16px;
}
@media (max-width: 480px) { h1 { font-size: 30px; } }
h2 {
  font-family: var(--sora);
  font-size: 25px;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 40px 0 14px;
}
h3 {
  font-family: var(--sora);
  font-size: 19px;
  font-weight: 600;
  margin: 28px 0 10px;
}

/* Hub hero */
.hub-hero { margin-bottom: 16px; }
.hub-hero .lede { font-size: 19px; color: var(--muted); margin: 0; max-width: 560px; }

/* Post list */
.post-list { margin-top: 24px; }
.post-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.post-card:last-child { border-bottom: none; }
.post-card h2 { margin: 4px 0 8px; font-size: 24px; }
.post-card h2 a { color: var(--ink); text-decoration: none; }
.post-card h2 a:hover { color: var(--orange); }
.post-card p { margin: 0; color: var(--muted); font-size: 16px; }

/* Post meta */
.post-meta {
  color: var(--faint);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

/* Article prose */
article { margin-bottom: 8px; }
article p { margin: 0 0 18px; }
article ul, article ol { margin: 0 0 18px; padding-left: 24px; }
article li { margin-bottom: 8px; }
article blockquote {
  margin: 0 0 18px;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--orange);
  color: var(--muted);
  font-style: italic;
}
article blockquote p { margin: 0; }
article code {
  background: rgba(0,0,0,0.05);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.92em;
}
article hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }

/* Images */
.post-hero, .post-img { margin: 0 0 22px; }
.post-hero img, .post-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.post-hero { margin-top: 4px; }
.post-img { margin: 24px 0; }
.post-hero figcaption, .post-img figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: var(--faint);
  text-align: center;
}

/* Social share */
.share { margin: 36px 0 8px; }
.share-label { font-size: 14px; color: var(--faint); margin: 0 0 12px; }
.share-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.share-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.share-btn:hover, .share-btn:focus-visible {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  outline: none;
}
.share-btn svg { width: 18px; height: 18px; display: block; }
.share-toast {
  position: absolute;
  bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #0F0F0F; color: #fff;
  font-size: 12px; line-height: 1; white-space: nowrap;
  padding: 6px 9px; border-radius: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.share-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.05s ease, opacity 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { opacity: 0.92; }

/* Post / hub CTA */
.post-cta {
  background: var(--orange-soft);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  margin-top: 56px;
}
.post-cta h2 { margin: 0 0 12px; }
.post-cta p { margin: 0 auto 22px; max-width: 460px; color: var(--muted); font-size: 16px; }
.post-cta .btn-primary { font-size: 17px; padding: 15px 30px; }

/* Testimonials (real App Store reviews) */
.testimonials { margin-top: 56px; }
.testimonials h2 { margin: 0 0 6px; }
.tm-aggregate { color: var(--muted); font-size: 15px; margin: 0 0 24px; }
.tm-grid { display: grid; gap: 16px; }
@media (min-width: 560px) { .tm-grid { grid-template-columns: 1fr 1fr; } }
.tm {
  margin: 0;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.tm-stars { color: var(--star); letter-spacing: 2px; font-size: 15px; }
.tm-title { font-weight: 600; margin: 10px 0 6px; font-size: 16px; }
.tm blockquote {
  margin: 0 0 12px;
  padding: 0;
  border: none;
  font-style: normal;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}
.tm figcaption { color: var(--faint); font-size: 14px; }

/* Footer */
footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--faint);
  font-size: 14px;
}
footer a { color: var(--muted); text-decoration: none; margin: 0 8px; }
footer a:hover { color: var(--ink); }
footer .legal { margin-bottom: 8px; }
footer .credit { font-size: 13px; }

/* ============================================================
   v2 conversion redesign — shared across blog + recipe pages
   ============================================================ */

/* Sticky branded header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--surface); border-bottom: 1px solid var(--line); }
.site-header .inner { max-width: 680px; margin: 0 auto; padding: 0 16px; height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
@media (min-width: 680px) { .site-header .inner { height: 60px; } }
.wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.wordmark img { height: 22px; width: auto; display: block; }
.header-nav { display: none; }
@media (min-width: 680px) {
  .header-nav { display: flex; gap: 24px; }
  .header-nav a { font-family: var(--inter); font-weight: 500; font-size: 15px; color: var(--muted); text-decoration: none; padding-bottom: 3px; }
  .header-nav a:hover { color: var(--ink); }
  .header-nav a.current { color: var(--ink); box-shadow: inset 0 -2px 0 var(--orange); }
}
.header-cta { display: inline-flex; align-items: center; justify-content: center; height: 36px; padding: 0 14px; background: var(--orange); color: #fff; font-family: var(--sora); font-weight: 600; font-size: 13px; border-radius: 10px; text-decoration: none; transition: transform 120ms ease; white-space: nowrap; }
.header-cta:active { transform: scale(0.92); }
@media (min-width: 680px) { .header-cta { height: 40px; padding: 0 18px; font-size: 14px; } }

/* Recipe-first page top */
.kicker { font-family: var(--sora); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--orange); margin: 0 0 10px; }
.meta-line { font-family: var(--sora); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; color: var(--muted); margin: 0 0 20px; }
.meta-line .sep { color: var(--faint); }
.hero { margin: 0 0 8px; }
.hero img { display: block; width: 100%; height: auto; border-radius: 14px; box-shadow: 0 24px 64px rgba(0,0,0,0.12); }
.hero figcaption { margin: 12px 2px 0; font-size: 14px; color: var(--faint); }

/* Recipe card */
.recipe-card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 24px; margin: 28px 0 8px; }
.per-serving { font-family: var(--inter); font-size: 13px; color: var(--faint); margin: 0 0 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.per-serving b { font-family: var(--sora); font-weight: 600; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.sec-label { font-family: var(--sora); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint); margin: 0 0 12px; }
.ing { list-style: none; margin: 0 0 8px; padding: 0; }
.ing li { display: flex; align-items: baseline; gap: 12px; font-family: var(--inter); font-size: 16px; line-height: 1.5; color: var(--ink); padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.ing li:last-child { border-bottom: none; }
.ing li::before { content: ""; flex: 0 0 18px; height: 18px; align-self: center; border: 1.5px solid rgba(0,0,0,0.20); border-radius: 6px; }
.ing b { font-family: var(--sora); font-weight: 600; color: var(--ink); white-space: nowrap; }
.steps { counter-reset: step; list-style: none; margin: 24px 0 0; padding: 0; }
.steps li { position: relative; padding: 2px 0 22px 46px; font-family: var(--inter); font-size: 16px; line-height: 1.6; color: var(--ink); }
.steps li:last-child { padding-bottom: 0; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -2px; width: 32px; height: 32px; border-radius: 10px; background: var(--orange-soft); color: var(--orange); font-family: var(--sora); font-weight: 600; font-size: 15px; display: flex; align-items: center; justify-content: center; }

/* Conversion CTA block (replaces .post-cta) */
.cta { background: var(--orange-soft); border: 1px solid var(--line); border-radius: 16px; padding: 28px 24px; text-align: center; margin: 32px 0; }
.cta h2 { font-family: var(--sora); font-weight: 700; font-size: 22px; line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 8px; }
.cta p { font-family: var(--inter); font-size: 15px; line-height: 1.5; color: var(--muted); margin: 0 auto 20px; max-width: 44ch; }
.cta .btn-primary { display: block; width: 100%; max-width: 340px; margin: 0 auto; height: 52px; line-height: 52px; padding: 0; background: var(--orange); color: #fff; font-family: var(--sora); font-weight: 600; font-size: 16px; border-radius: 10px; text-decoration: none; text-align: center; transition: transform 120ms ease; }
.cta .btn-primary:hover { opacity: 1; }
.cta .btn-primary:active { transform: scale(0.96); }
.badge-link { display: inline-block; margin: 14px auto 0; }
.badge-link img { height: 44px; width: auto; display: block; }

/* UGC quote card */
.ugc { display: flex; gap: 16px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px; margin: 32px 0; }
.ugc img { flex: 0 0 96px; width: 96px; height: 96px; object-fit: cover; border-radius: 12px; }
.ugc .bubble { font-family: var(--inter); font-size: 17px; line-height: 1.5; color: var(--ink); margin: 0 0 8px; }
.ugc cite { font-style: normal; font-size: 14px; color: var(--faint); }
@media (max-width: 479px) { .ugc { flex-direction: column; align-items: flex-start; } .ugc img { width: 100%; height: 180px; flex-basis: auto; } }

/* SEO long-form body */
.longform { margin-top: 8px; }
.longform h2 { font-family: var(--sora); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--ink); margin: 36px 0 12px; }
.longform h3 { font-family: var(--sora); font-weight: 600; font-size: 18px; color: var(--ink); margin: 24px 0 8px; }
.longform p { margin: 0 0 16px; }
.longform ul, .longform ol { margin: 0 0 16px; padding-left: 22px; }
.longform li { margin-bottom: 8px; }
.longform a { color: var(--orange); text-decoration: none; }
.longform a:hover { text-decoration: underline; }

/* Behavioral-nudge additions (2026-06-09) */
.cta-reassure { font-family: var(--sora); font-weight: 500; font-size: 13px; color: var(--faint); margin: 12px 0 0; }
.hub-rating { margin: 14px 0 0; font-size: 15px; color: var(--muted); }
.hub-rating .stars { color: var(--star); letter-spacing: 2px; }
