:root {
  color-scheme: light;
  --bg: #f6f5f1;
  --surface: #ffffff;
  --ink: #1c2230;
  --muted: #586174;
  --line: #e2dfd6;
  --brand: #1d5a85;
  --brand-dark: #154566;
  --brand-soft: #e8f0f6;
  --accent: #b86b12;
  --accent-soft: #fbf1e3;
  --ok: #2c7a56;
  --warn: #9a5b12;
  --radius: 14px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
}

a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

img, svg { max-width: 100%; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 16px; }

/* Advertising disclosure bar */
.adbar {
  background: #2a2f3a;
  color: #eef0f4;
  font-size: 14px;
  line-height: 1.45;
  padding: 9px 0;
}
.adbar .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.adbar a { color: #ffffff; }
.pill {
  display: inline-block;
  background: var(--accent-soft);
  color: #6b3d06;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
}

/* Header */
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 60px; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 18px; }
.brand svg { width: 30px; height: 30px; flex: none; }
.site-header nav a { font-size: 14px; color: var(--muted); text-decoration: none; }
.site-header nav a:hover { color: var(--ink); text-decoration: underline; }

/* Hero */
.hero { padding: 36px 0 8px; }
.eyebrow { color: var(--brand); font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 8px; }
h1 { font-size: clamp(28px, 5.2vw, 40px); line-height: 1.18; margin: 0 0 14px; letter-spacing: -.01em; }
.lead { font-size: 19px; color: #333b4c; margin: 0 0 22px; }
.byline { font-size: 14px; color: var(--muted); margin: 0 0 22px; }

/* Buttons */
.cta { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin: 6px 0 8px; }
.btn {
  display: inline-block;
  background: var(--brand);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 26px;
  border-radius: 12px;
  box-shadow: 0 2px 0 var(--brand-dark);
  transition: background .15s ease;
}
.btn:hover, .btn:focus-visible { background: var(--brand-dark); color: #ffffff; }
.btn:focus-visible { outline: 3px solid #f0b75e; outline-offset: 2px; }
.cta small { color: var(--muted); font-size: 14px; }

/* Sections */
section { padding: 26px 0 6px; }
h2 { font-size: clamp(23px, 3.8vw, 28px); line-height: 1.25; margin: 0 0 12px; }
h3 { font-size: 19px; margin: 0 0 6px; }
p { margin: 0 0 14px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 20px 8px;
}

/* Quick facts */
.facts { margin-top: 22px; }
.facts h2 { font-size: 20px; margin-bottom: 10px; }
.facts dl { display: grid; grid-template-columns: minmax(120px, 34%) 1fr; margin: 0; }
.facts dt, .facts dd { padding: 10px 0; border-top: 1px solid var(--line); margin: 0; }
.facts dt { color: var(--muted); font-size: 15px; padding-right: 12px; }
.facts dd { font-weight: 600; }
.facts .src { font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 10px; margin-top: 0; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; counter-reset: step; }
.steps li {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px 6px 64px;
  position: relative;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 18px; top: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  font-weight: 800; display: grid; place-items: center;
}

/* Pros / cons */
.two { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .two { grid-template-columns: 1fr 1fr; } }
.two ul { padding-left: 20px; margin: 0 0 12px; }
.two li { margin-bottom: 8px; }
.card.pro h3 { color: var(--ok); }
.card.con h3 { color: var(--warn); }

.tips { padding-left: 20px; }
.tips li { margin-bottom: 8px; }

/* FAQ */
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 44px 14px 16px; position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 16px; top: 11px; font-size: 22px; color: var(--brand); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 16px; }

/* Closing CTA */
.closing { background: var(--brand-soft); border: 1px solid #cfe0ec; border-radius: var(--radius); padding: 22px 20px 16px; margin-top: 12px; }
.closing h2 { font-size: 22px; }

/* Disclosure */
.disclosure { background: var(--accent-soft); border: 1px solid #efd9b8; border-radius: var(--radius); padding: 16px 18px 4px; font-size: 15px; margin: 26px 0 0; }
.disclosure strong { color: #6b3d06; }

/* Legal pages */
.legal { padding: 30px 0 10px; }
.legal h1 { font-size: clamp(26px, 4.6vw, 34px); }
.legal h2 { font-size: 21px; margin-top: 26px; }
.legal ul { padding-left: 20px; }
.legal table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-bottom: 14px; font-size: 16px; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 10px 12px; border-top: 1px solid var(--line); }
.legal tr:first-child th, .legal tr:first-child td { border-top: 0; }
.legal th { width: 38%; color: var(--muted); font-weight: 600; }
.updated { color: var(--muted); font-size: 14px; }

/* Footer */
.site-footer { margin-top: 36px; border-top: 1px solid var(--line); background: var(--surface); font-size: 14px; color: var(--muted); padding: 22px 0 28px; }
.site-footer p { margin: 0 0 10px; }
.site-footer .links { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 12px; }
.site-footer .links a { color: var(--ink); }
.site-footer .who { color: #3d4557; }

@media (max-width: 420px) {
  body { font-size: 16px; }
  .lead { font-size: 18px; }
  .btn { width: 100%; text-align: center; }
  .cta { align-items: stretch; }
  .facts dl { grid-template-columns: 1fr; }
  .facts dt { padding-bottom: 0; }
  .facts dd { border-top: 0; padding-top: 2px; }
}
