/* One-page affiliate site — buyer-guide styles
 * Palette mirrors /opt/data/lead-leak-audit/landing/style.css for consistency.
 * Source: transcribed from one-page-affilite-site skill, chapter 6 page-skeleton.
 */

:root {
  --bg: #0B1426;
  --fg: #F5F7FA;
  --muted: #8A93A6;
  --accent: #00E5FF;
  --card: #111B30;
  --border: #1E2A44;
  --serif: Georgia, 'Iowan Old Style', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { background: var(--bg); color: var(--fg); font-family: var(--sans); line-height: 1.6; }
body { padding: 0 24px 96px; max-width: 800px; margin: 0 auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
em { font-style: italic; color: var(--fg); }
strong { font-weight: 600; color: var(--fg); }

/* Hero */
.hero { padding: 96px 0 48px; border-bottom: 1px solid var(--border); }
.kicker { color: var(--accent); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
h1 { font-family: var(--serif); font-size: 44px; line-height: 1.15; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.02em; }
.lede { font-size: 19px; color: var(--muted); margin-bottom: 32px; max-width: 640px; }

/* Sections */
section { padding: 56px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }
h2 { font-family: var(--serif); font-size: 28px; margin-bottom: 16px; font-weight: 700; letter-spacing: -0.01em; }
section > p,
section > ul,
section > ol { margin-bottom: 18px; max-width: 680px; }
section > p + h2,
section > ul + h2,
section > ol + h2,
section > table + h2 { margin-top: 36px; }

/* Lists */
ol.numbered, ul { padding-left: 24px; }
ol.numbered li, ul li { margin-bottom: 14px; color: var(--fg); }

/* Table */
table.signals { width: 100%; border-collapse: collapse; margin: 18px 0 28px; }
table.signals th, table.signals td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
table.signals th { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
table.signals tr:last-child td { border-bottom: none; }
table.signals td:first-child { color: var(--fg); font-weight: 600; min-width: 140px; }
table.signals td:nth-child(2) { color: var(--fg); }
table.signals td:last-child { color: var(--muted); font-size: 14px; }

/* CTAs */
.cta-soft { display: inline-block; padding: 12px 24px; border: 1px solid var(--accent); color: var(--accent); border-radius: 6px; font-weight: 500; transition: background 0.15s ease; }
.cta-soft:hover { background: rgba(0, 229, 255, 0.08); text-decoration: none; }
.cta-primary { display: inline-block; padding: 16px 32px; background: var(--accent); color: var(--bg); border-radius: 6px; font-weight: 600; font-size: 17px; margin-top: 16px; transition: opacity 0.15s ease; }
.cta-primary:hover { opacity: 0.9; text-decoration: none; }

/* Disclosure + disclaimer */
.disclosure, .disclaimer { color: var(--muted); font-size: 14px; }
.disclosure { margin: 12px 0 20px; padding: 12px 14px; border-left: 3px solid var(--accent); background: rgba(0, 229, 255, 0.04); border-radius: 0 4px 4px 0; }
.disclosure strong { color: var(--accent); }

/* Footer */
.page-footer { padding: 56px 0 0; border-top: 1px solid var(--border); margin-top: 32px; }
.page-footer p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.page-footer code { font-size: 12px; color: var(--accent); background: rgba(0, 229, 255, 0.08); padding: 1px 6px; border-radius: 3px; }

/* Mobile */
@media (max-width: 600px) {
  h1 { font-size: 32px; }
  h2 { font-size: 22px; }
  .lede { font-size: 17px; }
  section { padding: 40px 0; }
  table.signals { font-size: 14px; }
  table.signals th, table.signals td { padding: 10px 8px; }
}