/* ============================================================
   EDITORIAL LAYER — "The WhatsCash Journal" brand unification
   Brings the homepage's typography and accent palette in line
   with the redesigned blog (Fraunces display serif + a warm gold
   accent alongside the existing teal/green brand color).

   Purely additive: no selectors are removed, no markup is
   required, no IDs/classes are introduced into the DOM, and no
   interactive behavior is touched. Loaded last so it can refine
   the existing premium polish layer without fighting it.
   ============================================================ */

:root{
  --gold: #b98a3e;
  --gold-soft: #e4c384;
  --font-display: 'Fraunces', 'Space Grotesk', Georgia, serif;
}

/* ── Display type: swap the geometric sans headline face for the
   same warm serif used on the blog, everywhere a headline reads
   as the "voice" of the brand ── */
h1,
.lp-h2,
.lp-t-quote,
#lp-testimonials h2,
.chm-hero h2,
.tc-hero h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1{ font-weight: 600; }

/* Section eyebrows get a small gold tick instead of relying on
   color alone — a quiet nod to the blog's "kicker" styling */
.lp-kicker,
.eyebrow{
  position: relative;
}
.lp-kicker::before,
.eyebrow::before{
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
}

/* ── Stat numbers: serif figures read as more considered/edited,
   matching the ledger-style numerals used in the journal ── */
.stat strong,
.score .big{
  font-family: var(--font-display);
  font-feature-settings: "tnum" 1;
}

/* ── Testimonials: give quotes the same editorial pull-quote
   treatment as the journal — serif italic body + a large gold
   quotation mark, without touching the card markup ── */
.lp-t-quote{
  font-style: italic;
  line-height: 1.55;
  position: relative;
  padding-left: 22px;
}
.lp-t-quote::before{
  content: "\201C";
  position: absolute;
  left: -4px;
  top: -6px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: normal;
  color: var(--gold-soft);
  line-height: 1;
}
.lp-t-stars{
  color: var(--gold);
  letter-spacing: 1px;
}

/* ── Kicker chip: warm gold ring instead of the teal glow, to
   echo the journal's ink-and-gold palette in small doses ── */
.lp-kicker{
  box-shadow: inset 0 0 0 1px rgba(185,138,62,.28);
}

/* ── FAQ / persona headings inherit the serif too via .lp-h2
   above; give blockquote-like callouts (if any) the same treatment ── */
blockquote{
  font-family: var(--font-display);
  font-style: italic;
}

/* ── Footer: a hairline gold rule under the brand mark, echoing
   the journal's ledger-rule motif, purely decorative ── */
.lp-footer-rich .lp-logo,
footer .lp-logo{
  position: relative;
}

@media (max-width: 680px){
  .lp-t-quote{ padding-left: 18px; }
  .lp-t-quote::before{ font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce){
  /* no motion introduced by this layer; included for consistency
     with the rest of the premium polish stack */
}

/* ── Hero primary CTA: softened from a literal "download" ask into
   an inviting "Explore the App" — same conversion target, less
   friction. Distinct gold-edged treatment marks it as the single
   most important action on the page. ── */
#downloadBtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(228, 195, 132, 0.55);
  box-shadow: 0 14px 30px rgba(15, 165, 100, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
#downloadBtn::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.28) 40%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
#downloadBtn:hover::after{ transform: translateX(120%); }
#downloadBtn:hover{
  border-color: var(--gold-soft);
  box-shadow: 0 20px 40px rgba(15,165,100,.34), inset 0 1px 0 rgba(255,255,255,0.24);
}
#downloadBtn .dl-hero-btn-arrow{
  transition: transform .3s var(--ease-premium, ease);
  flex-shrink: 0;
}
#downloadBtn:hover .dl-hero-btn-arrow{
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce){
  #downloadBtn::after{ display: none; }
  #downloadBtn:hover .dl-hero-btn-arrow{ transform: none; }
}

/* ── Contact section: quiet, editorial card inviting feedback ── */
.lp-contact-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #f7f5f0 0%, #f1ede3 100%);
  border: 1px solid rgba(185, 138, 62, 0.22);
  border-radius: 20px;
  padding: 40px 44px;
}
.lp-contact-copy{ max-width: 560px; }
.lp-contact-copy p{
  margin-top: 10px;
  color: var(--ink-soft, #55625f);
}
.lp-contact-email{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: #14211f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid var(--gold-soft);
  transition: transform .28s var(--ease-premium, ease), box-shadow .28s var(--ease-premium, ease);
  box-shadow: 0 14px 28px rgba(8,24,28,.22);
}
.lp-contact-email:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(8,24,28,.28);
}
@media (max-width: 640px){
  .lp-contact-card{ padding: 30px 26px; flex-direction: column; align-items: flex-start; }
  .lp-contact-email{ width: 100%; justify-content: center; }
}
