:root {
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #d8d8d8;
  --paper: #f7f9fc;
  --orange: #c45c26;
  --font: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #f4f7fb;
}

.bg .blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  filter: blur(48px);
  opacity: 0.5;
}

.bg .a {
  width: 55vw; height: 45vw;
  max-width: 640px; max-height: 520px;
  background: #b9cfe3;
  top: -12%; left: -8%;
  filter: blur(56px);
  opacity: 0.55;
}

.bg .b {
  width: 40vw; height: 40vw;
  max-width: 480px; max-height: 480px;
  background: #9eb8d4;
  top: 8%; left: 18%;
  filter: blur(40px);
  opacity: 0.45;
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
}

.bg .c {
  width: 50vw; height: 35vw;
  max-width: 560px; max-height: 400px;
  background: #cfe0ef;
  top: 22%; right: -10%;
  filter: blur(52px);
  opacity: 0.5;
  transform: rotate(-12deg);
}

.bg .d {
  width: 45vw; height: 30vw;
  max-width: 520px; max-height: 360px;
  background: #8eacc8;
  bottom: 5%; left: 20%;
  filter: blur(60px);
  opacity: 0.35;
  transform: rotate(8deg);
}

.bg .e {
  width: 35vw; height: 35vw;
  max-width: 400px; max-height: 400px;
  background: #d7e5f2;
  bottom: -8%; right: 5%;
  filter: blur(44px);
  opacity: 0.45;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.mark {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.lede {
  max-width: 58ch;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.note {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.82rem;
  min-width: 860px;
}

th, td {
  text-align: left;
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

tr:last-child td { border-bottom: none; }

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.method {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 70ch;
  margin-bottom: 1.75rem;
}

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 1.5rem;
}

.offer p {
  max-width: 58ch;
  margin-bottom: 0.65rem;
  font-size: 1.02rem;
}

.price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

.fine {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 58ch;
}

.cg-yes {
  font-weight: 600;
  color: #1a1a1a;
}
.cg-no {
  color: var(--muted);
}
td.cg {
  font-family: var(--sans);
  font-size: 0.8rem;
  white-space: nowrap;
}
table { min-width: 980px; }
