/* ============================================================
   PR-001 · Why You're Always Broke — sales page
   DeReset brand system (BR-001): gold #f0c234 · cream #f5f0e8 · charcoal #1a1a1a,
   Playfair Display (display) + Poppins (body). Product tone: forest green,
   taken from the product's own cover art.
   ============================================================ */
:root {
  --gold: #f0c234;
  --gold-deep: #c8971f;
  --gold-pale: #fbf3d9;
  --cream: #f5f0e8;
  --paper: #fbf8f2;
  --charcoal: #1a1a1a;
  --ink-soft: #3d3a33;
  --muted: #6b665b;
  --forest: #16302a;
  --forest-2: #1f4034;
  --forest-text: #d6e4da;
  --line: #e4dccb;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(26,26,26,.05), 0 12px 32px -12px rgba(26,26,26,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--charcoal); padding: 8px 14px; z-index: 10; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Layout ---------- */
.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
.band { padding: 72px 0; }
.band-cream { background: var(--cream); }
.band-paper { background: var(--paper); }
.band-dark { background: var(--forest); color: var(--forest-text); }
.center { text-align: center; }
.center-block { text-align: center; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); color: var(--charcoal); letter-spacing: -0.01em; }
h1 { font-size: 2.35rem; line-height: 1.12; font-weight: 800; margin-bottom: 18px; }
h1 .h1-sub { display: block; font-style: italic; font-weight: 600; font-size: .62em; margin-top: 8px; color: var(--gold); }
h2 { font-size: 1.85rem; line-height: 1.2; font-weight: 700; margin-bottom: 22px; }
h3 { font-size: 1.3rem; line-height: 1.3; font-weight: 700; margin-bottom: 6px; }
p { margin-bottom: 1.05em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
del { color: #9a9486; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.eyebrow em { font-style: normal; }
.eyebrow-gold { color: var(--gold); }

.prose .lead { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; line-height: 1.3; }
.pull {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.45;
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin: 1.6em 0;
}
.callout {
  background: var(--gold-pale);
  border: 1px solid #efdca0;
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 1.6em;
}

/* ---------- Brand bar ---------- */
.brand-bar { background: var(--forest); border-bottom: 1px solid rgba(240,194,52,.25); }
.brand-bar-inner { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-top: 14px; padding-bottom: 14px; }
.brand-mark { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--cream); text-decoration: none; letter-spacing: -.01em; }
.brand-mark::first-letter { color: var(--gold); }
.brand-tag { font-size: .78rem; color: #a9bfb1; font-style: italic; }

/* ---------- CTA ---------- */
.cta-btn {
  display: block;
  background: linear-gradient(180deg, var(--gold) 0%, #e2ad22 100%);
  color: var(--charcoal);
  text-align: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.3;
  padding: 18px 28px;
  min-height: 48px;
  border-radius: 10px;
  margin: 28px 0 12px;
  box-shadow: 0 10px 24px -10px rgba(200,151,31,.8), inset 0 -2px 0 rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(200,151,31,.9), inset 0 -2px 0 rgba(0,0,0,.08); }
.cta-btn-sub { text-align: center; font-size: .82rem; color: var(--muted); }
.band-dark .cta-btn-sub, .hero .cta-btn-sub { color: #9fb8a8; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(240,194,52,.10) 0%, rgba(240,194,52,0) 55%),
    linear-gradient(180deg, var(--forest) 0%, #112620 100%);
  color: var(--forest-text);
  padding: 56px 0 64px;
}
.hero h1 { color: #fff; }
.hero-grid { display: grid; gap: 36px; }
.subheadline { font-size: 1.08rem; color: #eef3ef; font-weight: 500; line-height: 1.55; margin-bottom: 14px; }
.intro-copy { color: #b7cdbf; font-style: italic; }
.hero-media { border-radius: 14px; overflow: hidden; border: 1px solid rgba(240,194,52,.35); box-shadow: 0 24px 60px -20px rgba(0,0,0,.6); }
.hero-media img { width: 100%; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--charcoal); color: var(--cream); }
.trust-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; padding-top: 16px; padding-bottom: 16px; font-size: .8rem; font-weight: 500; }
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-icon { display: inline-grid; place-items: center; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: var(--gold); color: var(--charcoal); font-size: .7rem; font-weight: 700; }

/* ---------- Mechanism (dark) ---------- */
.band-dark h2 { color: #fff; }
.big-question {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.35;
  color: #fff;
  margin: 1.4em 0;
}
.big-question strong { font-weight: 700; color: var(--gold); }

/* ---------- Solution ---------- */
.solution-grid { display: grid; gap: 32px; align-items: center; }
.solution-media { max-width: 360px; margin: 0 auto; }
.solution-media img { border-radius: 10px; box-shadow: var(--shadow); }
.solution-summary { font-size: 1.05rem; border-left: 3px solid var(--gold); padding-left: 18px; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 20px; margin-top: 12px; }
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  font-size: .95rem;
}
.step-icon { width: 64px; height: 64px; margin-bottom: 14px; }
.step-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; }
.step-sub { font-family: var(--font-display); font-style: italic; color: var(--muted); font-size: 1.02rem; }

/* ---------- Tools ---------- */
.tools-grid { display: grid; gap: 32px; align-items: center; }
.tools-list { list-style: none; margin: 8px 0 22px; }
.tools-list li { position: relative; padding: 12px 0 12px 34px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.tools-list li:last-child { border-bottom: none; }
.tools-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 13px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest); color: var(--gold);
  font-size: .72rem; font-weight: 700; line-height: 22px; text-align: center;
}
.note { color: var(--muted); font-size: .92rem; }
.tools-media img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Creator ---------- */
.creator-intro { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; margin-bottom: 1.2em; }
.creator-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: 0 0 0 2px var(--gold), var(--shadow); }
.signoff { font-family: var(--font-display); font-size: 1.25rem; margin-top: 1.4em; }
.signature { font-family: var(--font-display); font-style: italic; color: var(--gold-deep); font-size: 1.15rem; }

/* ---------- Offer ---------- */
.offer-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 22px;
  box-shadow: var(--shadow);
}
.offer-hero { margin: 8px 0 24px; }
.offer-hero img { border-radius: 10px; }
.offer-items { display: grid; gap: 16px; margin-bottom: 20px; }
.offer-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; font-size: .95rem; }
.offer-thumb { width: 64px; flex-shrink: 0; border-radius: 4px; box-shadow: 0 4px 10px -4px rgba(0,0,0,.35); }
.offer-item p { margin-bottom: .3em; }
.offer-item-title { font-family: var(--font-display); font-size: 1.05rem; }
.bonus-label { font-weight: 700; color: var(--forest); letter-spacing: .02em; }
.bonus-sub { font-style: italic; color: var(--muted); }
.offer-table { width: 100%; border-collapse: collapse; margin: 8px 0 8px; font-size: .95rem; }
.offer-table td { padding: 12px 10px; border-bottom: 1px solid var(--line); }
.offer-table td:last-child { text-align: right; white-space: nowrap; }
.offer-table .value-row td { color: var(--muted); }
.offer-table .total-row td { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--charcoal); background: var(--gold-pale); border-bottom: none; border-top: 2px solid var(--gold); }

/* ---------- Guarantee ---------- */
.guarantee-box {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 24px;
  box-shadow: var(--shadow);
}
.guarantee-seal { width: 150px; height: 150px; margin: 0 auto 20px; }
.guarantee-box p { max-width: 540px; margin-left: auto; margin-right: auto; }
.guarantee-contact { font-size: .9rem; color: var(--muted); margin-top: 1em; }
.guarantee-contact a { color: var(--forest); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; margin-top: 8px; }
.objection { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--forest); border-radius: 10px; padding: 20px 22px; font-size: .95rem; }
.objection-q { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--charcoal); margin-bottom: 8px; }
.objection p { color: var(--ink-soft); }

/* ---------- Closing ---------- */
#cta-close { background: radial-gradient(90% 70% at 50% 0%, rgba(240,194,52,.12) 0%, rgba(240,194,52,0) 60%), var(--forest); }
#cta-close .signoff { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #a39e92; padding: 44px 0; text-align: center; font-size: .82rem; line-height: 1.7; }
.site-footer p { margin-bottom: 8px; }
.site-footer a { color: var(--cream); }
.footer-brand a { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; text-decoration: none; }
.footer-tag { font-style: italic; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; margin: 14px 0; }
.footer-fine { max-width: 620px; margin-left: auto; margin-right: auto; color: #858073; font-size: .76rem; }

/* ---------- Tablet ---------- */
@media (min-width: 768px) {
  h1 { font-size: 2.9rem; }
  h2 { font-size: 2.15rem; }
  .band { padding: 88px 0; }
  .trust-list { grid-template-columns: repeat(4, auto); justify-content: center; gap: 12px 32px; }
  .steps { grid-template-columns: 1fr; }
  .creator-intro { flex-direction: row; align-items: center; gap: 28px; }
  .creator-photo { width: 180px; height: 180px; flex-shrink: 0; }
  .offer-card { padding: 44px 44px; }
  .offer-items { grid-template-columns: 1fr 1fr; }
  .cta-btn { display: table; margin-left: auto; margin-right: auto; min-width: 380px; }
  .guarantee-box { padding: 48px 48px; }
}

/* ---------- Laptop ---------- */
@media (min-width: 1024px) {
  .hero { padding: 72px 0 80px; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; align-items: center; gap: 48px; }
  .hero .cta-btn { margin-left: 0; }
  .hero .cta-btn-sub { text-align: left; }
  .solution-grid { grid-template-columns: 300px 1fr; gap: 48px; }
  .solution-media { margin: 0; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .tools-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; }
}

/* ============================================================
   DESKTOP LAYOUT — Decision 014. ≥1280px only; phones and tablets unchanged.
   Type is rem-based, so it scales with the root size.
   ============================================================ */
@media (min-width: 1280px) {
  html { font-size: 17px; }
  .container { max-width: 1120px; }
  .narrow { max-width: 780px; }
}
@media (min-width: 1440px) {
  html { font-size: 18px; }
  .container { max-width: 1180px; }
  .narrow { max-width: 820px; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-btn { transition: none; }
  .cta-btn:hover { transform: none; }
}
