/* ============================================================
   The Daily Strategist — landing / sales page
   Self-contained (own palette + layout).
   ============================================================ */

:root {
  --bg: #f4ecdd;
  --bg-2: #efe5d2;
  --surface: #fbf6ec;
  --ink: #2c2620;
  --ink-soft: #5c5347;
  --ink-faint: #8a7f6f;
  --accent: #8a1c1c;
  --gold: #b08431;
  --line: #ddd0b8;
  --shadow: 0 16px 50px -16px rgba(60, 45, 25, 0.4);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(1100px 540px at 50% -8%, var(--bg-2), transparent 70%),
    var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; }
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 720px; }

/* ---------- buttons ---------- */
.btn-buy, .btn-ghost {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 26px;
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease;
}
.btn-buy {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.btn-buy:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-faint); }
.price-strike { text-decoration: line-through; opacity: 0.6; font-weight: 400; margin-right: 6px; }

/* ---------- nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { color: var(--accent); font-size: 22px; }
.brand-name { font-size: 19px; font-weight: 600; letter-spacing: 0.3px; }
.nav-links { display: flex; align-items: center; gap: 20px; font-family: var(--sans); font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--ink-soft); }
.nav-links a:hover { color: var(--accent); }
.nav-buy { background: var(--gold); color: var(--surface); padding: 9px 16px; border-radius: 999px; font-weight: 600; }
.nav-buy:hover { filter: brightness(1.08); color: var(--surface) !important; }

/* ---------- hero ---------- */
.hero { text-align: center; padding: 50px 0 30px; }
.eyebrow {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.hero h1 {
  font-size: 58px; line-height: 1.05; margin: 0 0 18px; font-weight: 600; letter-spacing: 0.3px;
}
.hero .sub {
  font-size: 21px; color: var(--ink-soft); max-width: 30ch;
  margin: 0 auto 30px; line-height: 1.45;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero-note { font-family: var(--sans); font-size: 13px; color: var(--ink-faint); margin-top: 18px; }

/* ---------- section ---------- */
section { padding: 46px 0; }
.section-title {
  text-align: center; font-size: 33px; margin: 0 0 10px; font-weight: 600;
}
.section-lead {
  text-align: center; font-size: 18px; color: var(--ink-soft);
  max-width: 56ch; margin: 0 auto 34px;
}
.rule-c { width: 54px; height: 2px; background: var(--gold); margin: 0 auto 30px; opacity: 0.7; border: none; }

/* ---------- sample cards ---------- */
.samples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sample {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 22px; box-shadow: var(--shadow);
}
.sample .badge {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent); border-radius: 999px; padding: 3px 9px; display: inline-block;
}
.sample h3 { font-size: 21px; margin: 14px 0 8px; line-height: 1.2; }
.sample .ess { font-style: italic; color: var(--ink-soft); margin: 0 0 12px; font-size: 15.5px; }
.sample p.body { font-size: 15px; line-height: 1.6; margin: 0; color: var(--ink); }
.sample .lin {
  margin-top: 14px; padding-left: 14px; border-left: 2px solid var(--line);
  font-style: italic; font-size: 13.5px; color: var(--ink-soft);
}
.sample .lin .src { display: block; font-family: var(--sans); font-style: normal; font-size: 11px; color: var(--ink-faint); margin-top: 5px; }

/* ---------- themes grid ---------- */
.themes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.theme {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 18px 16px; text-align: center;
}
.theme .t-name { font-size: 16px; font-weight: 600; }
.theme .t-count { font-family: var(--sans); font-size: 11.5px; color: var(--ink-faint); margin-top: 3px; }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 30px; max-width: 760px; margin: 0 auto; }
.feature { display: flex; gap: 13px; }
.feature .fi { color: var(--gold); font-size: 18px; line-height: 1.5; }
.feature h4 { margin: 0 0 3px; font-size: 17px; }
.feature p { margin: 0; font-size: 14.5px; color: var(--ink-soft); font-family: var(--sans); line-height: 1.5; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { text-align: center; }
.step .num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--surface);
  font-family: var(--sans); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.step h4 { margin: 0 0 6px; font-size: 18px; }
.step p { margin: 0; font-size: 14.5px; color: var(--ink-soft); font-family: var(--sans); line-height: 1.5; }

/* ---------- pricing ---------- */
.pricing { text-align: center; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow); max-width: 440px; margin: 0 auto; padding: 38px 34px 34px;
}
.price-num { font-size: 60px; font-weight: 600; line-height: 1; }
.price-num .cur { font-size: 30px; vertical-align: super; }
.price-was { font-family: var(--sans); font-size: 15px; color: var(--ink-faint); margin: 8px 0 2px; }
.price-was s { color: var(--ink-faint); }
.price-tag {
  display: inline-block; font-family: var(--sans); font-size: 12px; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.price-list { list-style: none; padding: 0; margin: 22px 0; text-align: left; font-family: var(--sans); font-size: 15px; }
.price-list li { padding: 7px 0 7px 28px; position: relative; color: var(--ink-soft); }
.price-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.price-card .btn-buy { width: 100%; padding: 16px; font-size: 16px; }
.price-foot { font-family: var(--sans); font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; }

/* ---------- faq ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 18px 0;
}
.faq summary {
  font-size: 18px; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 22px; font-family: var(--sans); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 12px 0 0; color: var(--ink-soft); font-family: var(--sans); font-size: 15px; line-height: 1.6; }

/* ---------- final cta ---------- */
.final { text-align: center; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.final h2 { font-size: 36px; margin: 0 0 14px; }
.final p { font-size: 18px; color: var(--ink-soft); margin: 0 0 26px; }

/* ---------- footer ---------- */
.foot { padding: 34px 0 50px; text-align: center; }
.foot p { font-family: var(--sans); font-size: 12.5px; color: var(--ink-faint); line-height: 1.7; margin: 6px 0; }
.foot a { color: var(--ink-faint); }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .samples { grid-template-columns: 1fr; }
  .themes { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 42px; }
  .hero .sub { font-size: 18px; }
  .nav-links a:not(.nav-buy) { display: none; }
  .section-title { font-size: 27px; }
  .final h2 { font-size: 28px; }
}
