:root {
  --ink: #111111;
  --muted: #5f6368;
  --paper: #fafafa;
  --line: #dedede;
  --yellow: #fff9d2;
  --blue: #bfddf0;
}
* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
.shell { width: min(100% - 40px, 940px); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(250, 250, 250, .94); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--ink); display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 18px; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: #fff; background: var(--ink); font-size: 16px; font-weight: 800; }
nav { display: flex; gap: 18px; }
nav a { color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; }
nav a:hover { color: var(--ink); }
.hero { padding: 96px 0 58px; max-width: 660px; }
.eyebrow { margin: 0 0 14px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
h1, h2 { margin: 0; line-height: 1.05; letter-spacing: 0; }
.hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(48px, 8vw, 82px); font-weight: 700; }
.hero-copy { max-width: 560px; margin: 28px 0 0; color: var(--muted); font-size: 19px; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding-bottom: 96px; }
.card { min-height: 270px; padding: 28px; border: 1px solid #fff; border-radius: 8px; color: var(--ink); display: flex; flex-direction: column; text-decoration: none; transition: transform .16s ease, box-shadow .16s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0, 0, 0, .08); }
.card-yellow { background: var(--yellow); }
.card-blue { background: var(--blue); }
.card-kicker { color: var(--muted); font-size: 13px; font-weight: 700; }
.card h2 { margin-top: 32px; font-size: 28px; }
.card p { margin: 14px 0 24px; color: #454545; }
.card-link { margin-top: auto; font-weight: 700; }
.legal-page { max-width: 760px; padding: 76px 0 96px; }
.legal-page h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(44px, 7vw, 70px); }
.document-description { margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.document-rule { width: 100%; height: 1px; margin: 42px 0; background: var(--line); }
.document-content h2 { margin: 44px 0 14px; font-size: 26px; }
.document-content p, .document-content li { color: #303030; font-size: 17px; }
.document-content ul { padding-left: 24px; }
.document-content a { color: var(--ink); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.site-footer { border-top: 1px solid var(--line); }
.footer-inner { padding: 24px 0 32px; display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
@media (max-width: 620px) {
  .shell { width: min(100% - 32px, 940px); }
  .header-inner { min-height: 64px; }
  .hero { padding-top: 70px; }
  .cards { grid-template-columns: 1fr; padding-bottom: 72px; }
  .card { min-height: 220px; }
  .legal-page { padding-top: 58px; }
  .footer-inner { gap: 8px; flex-direction: column; }
}
