/* Shared one-pager stylesheet — print-ready A4. */
@page { size: A4; margin: 14mm 14mm 14mm 14mm; }

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: #131313;
  background: #fff;
  font-size: 10.5pt;
  line-height: 1.45;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.page {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px 32px 24px;
}

header.brand {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #131313;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.brand .logo {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18pt;
}
.brand .logo .dot { color: #9bbf2e; padding: 0 4px; }
.brand .meta { color: #555; font-size: 9pt; }

h1 {
  font-size: 22pt;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.tagline { color: #555; font-size: 10.5pt; margin: 0 0 16px; }

.price-band {
  background: #f5f2eb;
  border-left: 4px solid #9bbf2e;
  padding: 12px 16px;
  margin: 8px 0 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.price {
  font-size: 22pt;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price small { font-size: 11pt; font-weight: 500; color: #555; }

h2 {
  font-size: 11pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #131313;
  margin: 18px 0 8px;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 4px;
}

.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

ul { margin: 4px 0; padding-left: 18px; }
li { margin: 0 0 4px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.timeline div {
  background: #f5f2eb;
  border-radius: 6px;
  padding: 8px;
  font-size: 9pt;
}
.timeline strong {
  display: block;
  font-size: 8.5pt;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6a6a6a;
  margin-bottom: 4px;
}

.faq dt { font-weight: 700; margin-top: 8px; }
.faq dd { margin: 2px 0 0 0; color: #444; }

footer.foot {
  margin-top: 22px;
  padding-top: 8px;
  border-top: 1px solid #d8d8d8;
  font-size: 8.5pt;
  color: #888;
  display: flex;
  justify-content: space-between;
}

.deliverable {
  background: #f5f2eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 10pt;
}

a { color: #9bbf2e; }

@media screen {
  body { background: #1c1c1c; }
  .page { background: #fff; margin: 24px auto; box-shadow: 0 12px 40px rgba(0,0,0,0.5); border-radius: 6px; }
}
