body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
.shell { max-width: 1080px; margin: 0 auto; padding: 28px var(--pad-x) 80px; }
.nav { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--rule); }
.brand { color: var(--ink); text-decoration: none; font-weight: 650; letter-spacing: -0.03em; }
.nav a:not(.brand) { color: var(--muted); text-decoration: none; font-size: 14px; }
.hero { padding: clamp(48px, 8vw, 86px) 0 34px; }
.eyebrow { margin: 0 0 14px; color: var(--muted); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
h1 { margin: 0; max-width: 860px; font-size: clamp(42px, 7vw, 72px); line-height: 1; letter-spacing: -0.06em; font-weight: 600; }
.lede { margin: 24px 0 0; max-width: 760px; color: var(--ink-2); font-size: 18px; line-height: 1.55; }
.updated { margin-top: 18px; color: var(--muted); font-size: 13px; }
.answer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 24px 0 42px; }
.answer { border: 1px solid var(--rule); border-radius: 8px; background: #fff; padding: 20px; }
.answer h2, .answer h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.2; letter-spacing: -0.04em; }
.answer p { margin: 0; color: var(--ink-2); line-height: 1.55; }
.section { padding: 34px 0; border-top: 1px solid var(--rule); }
.section h2 { margin: 0 0 18px; font-size: clamp(28px, 4vw, 42px); line-height: 1.05; letter-spacing: -0.05em; }
.section p { max-width: 820px; color: var(--ink-2); line-height: 1.58; }
.table-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: 8px; background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 820px; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--rule); text-align: left; vertical-align: top; font-size: 14px; line-height: 1.4; }
th { color: var(--ink); background: var(--paper-2); font-weight: 650; }
td { color: var(--ink-2); }
tr:last-child td { border-bottom: 0; }
td strong { color: var(--ink); }
.links { display: grid; gap: 10px; }
.links a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); padding: 12px 0; }
.steps { counter-reset: step; display: grid; gap: 16px; max-width: 880px; }
.step { position: relative; padding: 18px 20px 18px 58px; border: 1px solid var(--rule); border-radius: 8px; background: #fff; }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 18px; top: 18px; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.step h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: -0.03em; }
.step p { margin: 0; }
.faq { display: grid; gap: 18px; }
.faq article { border-bottom: 1px solid var(--rule); padding-bottom: 18px; }
.faq h3 { margin: 0 0 8px; font-size: 18px; }
.faq p { margin: 0; color: var(--ink-2); line-height: 1.55; }
.callout { margin-top: 20px; padding: 18px 20px; border-left: 4px solid var(--ink); background: #fff; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 720px) {
  .answer-grid { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
}
