/* sell-rescue site — shared stylesheet (copied verbatim from gp-alt-site) */
:root {
  --ink: #1a2332;
  --ink-soft: #4a5568;
  --brand: #0f6b4f;
  --brand-dark: #0a4d39;
  --accent: #e8f5f0;
  --warn-bg: #fff8e6;
  --warn-border: #e6b800;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f7fafc;
  --max: 1080px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
header.site {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; flex-wrap: wrap; gap: 8px; padding-top: 8px; padding-bottom: 8px;
}
.logo { font-weight: 800; font-size: 1.25rem; color: var(--ink); text-decoration: none; }
.logo span { color: var(--brand); }
nav.main a {
  color: var(--ink-soft); text-decoration: none; margin-left: 20px;
  font-size: 0.95rem; font-weight: 500;
}
nav.main a:hover, nav.main a[aria-current="page"] { color: var(--brand); }
nav.main a.cta {
  background: var(--brand); color: #fff; padding: 8px 16px; border-radius: 6px;
}
nav.main a.cta:hover { background: var(--brand-dark); color: #fff; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--accent), var(--bg)); padding: 64px 0 48px; }
.hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.2; max-width: 22ch; }
.hero .sub { margin-top: 16px; font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }
.hero .actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 600;
  text-decoration: none; font-size: 1rem;
}
.btn.primary { background: var(--brand); color: #fff; }
.btn.primary:hover { background: var(--brand-dark); }
.btn.secondary { background: #fff; color: var(--brand); border: 2px solid var(--brand); }
.btn.secondary:hover { background: var(--accent); }

/* Sections */
section { padding: 48px 0; }
section.alt { background: var(--bg-alt); }
h2 { font-size: 1.6rem; margin-bottom: 12px; line-height: 1.3; }
h3 { font-size: 1.15rem; margin: 24px 0 8px; }
p + p { margin-top: 12px; }
.lede { color: var(--ink-soft); max-width: 70ch; }
main p, main ul, main ol { max-width: 76ch; }
main ul, main ol { padding-left: 24px; margin-top: 8px; }
main li { margin-top: 6px; }
a { color: var(--brand); }

/* Cards */
.grid { display: grid; gap: 20px; margin-top: 24px; }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px;
}
.card h3 { margin-top: 0; }
.card p { font-size: 0.95rem; color: var(--ink-soft); }

/* Callouts */
.callout {
  border-left: 4px solid var(--warn-border); background: var(--warn-bg);
  padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0; max-width: 76ch;
}
.callout.info { border-left-color: var(--brand); background: var(--accent); }
.callout p { font-size: 0.98rem; }

/* Timeline */
.timeline { list-style: none; padding: 0; margin: 24px 0; border-left: 3px solid var(--brand); }
.timeline li { padding: 0 0 24px 24px; position: relative; }
.timeline li::before {
  content: ""; position: absolute; left: -9px; top: 6px; width: 15px; height: 15px;
  border-radius: 50%; background: var(--brand); border: 3px solid #fff;
}
.timeline .date { font-weight: 700; color: var(--brand-dark); display: block; }

/* Tables */
.table-scroll { overflow-x: auto; margin: 24px 0; }
table.compare { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 0.95rem; }
table.compare th, table.compare td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
table.compare thead th { background: var(--ink); color: #fff; }
table.compare tbody tr:nth-child(even) { background: var(--bg-alt); }
table.compare td:first-child { font-weight: 600; }

/* FAQ */
details.faq {
  border: 1px solid var(--line); border-radius: 8px; margin-top: 12px;
  padding: 16px 20px; background: #fff; max-width: 80ch;
}
details.faq summary { font-weight: 600; cursor: pointer; font-size: 1.02rem; }
details.faq p { margin-top: 10px; color: var(--ink-soft); }

/* Verify placeholders — remove class + resolve before launch */

/* Footer */
footer.site { background: var(--ink); color: #cbd5e0; padding: 40px 0 32px; margin-top: 48px; font-size: 0.88rem; }
footer.site a { color: #9ae6c4; }
footer.site .disclaimer { margin-top: 16px; padding-top: 16px; border-top: 1px solid #2d3a4f; font-size: 0.82rem; line-height: 1.6; }
footer.site nav { margin-bottom: 8px; }
footer.site nav a { margin-right: 16px; }

@media (max-width: 640px) {
  nav.main a { margin-left: 12px; font-size: 0.88rem; }
  .hero { padding: 40px 0 32px; }
}
