:root { --ink: #111; --muted: #666; --line: #e5e5e5; --good: #1a7f37; --bg: #fff; --tint: #f2f7f3; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; color: var(--ink); }
header.site { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 1.5rem; border-bottom: 1px solid var(--line); }
.logo { font-size: 1.4rem; font-weight: 700; text-decoration: none; color: var(--ink); }
.logo span { color: var(--good); }
main { max-width: 68rem; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; margin: .5rem 0 .75rem; }
.badge { color: var(--good); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem; margin: 0; }
.lede, .savings { color: var(--muted); margin: .25rem 0 1.5rem; }
.savings strong { color: var(--good); font-size: 1.4rem; }
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; }
th, td { text-align: left; padding: .75rem .6rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
tr.free { color: var(--muted); }
.tradeoff { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.tradeoff > div { border: 1px solid var(--line); border-radius: .5rem; padding: 1.25rem; }
.tradeoff h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 0 0 .75rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
.tradeoff p { margin: 0; }
.gain { border-color: var(--good); }
.derived { color: var(--muted); font-size: .9rem; margin-top: .4rem !important; }
@media (max-width: 40rem) { .tradeoff { grid-template-columns: 1fr; } }
.freeblock { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 2px solid var(--line); }
.rejected { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 2px solid var(--line); }
.rejected li { margin-bottom: .6rem; }
.date { color: var(--muted); font-size: .85rem; }
footer { border-top: 1px solid var(--line); padding: 1.5rem; color: var(--muted); font-size: .9rem; }
@media (max-width: 40rem) { table, thead, tbody, tr, th, td { display: block; } thead { display: none; } tr { border-bottom: 2px solid var(--line); padding: .5rem 0; } th, td { border: 0; padding: .2rem 0; } td::before { content: attr(data-label) ": "; color: var(--muted); font-weight: 600; } }

/* FTC 16 CFR 255.0(f): the disclosure has to be hard to miss, so it does not
   get --muted like the rest of the small print. It sits with the Buy links. */
.disclosure { margin: 1.5rem 0 0; padding: .7rem .9rem; border-left: 3px solid var(--good); background: var(--tint); color: var(--ink); font-size: .9rem; }
.disclosure + table { margin-top: .75rem; }
.prose { max-width: 44rem; }
.prose h2 { font-size: 1.15rem; margin: 2rem 0 .5rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.legal-links { margin: .6rem 0 0; }
