/* Shared styling for the two deliverables sheets.
 *
 * Built for ONE job: Boston screen-shares these on a sales call. That drives every
 * decision here — large type that survives video compression, high contrast, one column
 * so there is no "which bit is he looking at", and generous spacing so a prospect's eye
 * lands where Boston's voice is. It is not a marketing page and it does not scroll for
 * ten screens.
 *
 * Brand colours are the app's own tokens (packages/ui/src/tokens.ts) so the sheet and
 * the product a prospect is about to be shown look like the same company.
 */
:root {
  --bg: #060708;
  --panel: #141926;
  --panel2: #1C2333;
  --line: #2E3A4F;
  --text: #F7FAFF;
  --muted: #AEB9CC;
  --dim: #7A8699;
  --accent: #38BDF8;
  --accent2: #1E90E8;
  --good: #38E0F0;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  padding: 48px 24px 80px;
}

.wrap { max-width: 940px; margin: 0 auto; }

/* ── Header ─────────────────────────────────────────────────────────── */
.brand {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 800; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--dim); margin-bottom: 18px;
}
.brand .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 14px var(--accent);
}

h1 {
  font-size: 52px; font-weight: 850; letter-spacing: -1.6px; line-height: 1.05;
  background: linear-gradient(180deg, #FFFFFF 15%, #9FC6E0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.tagline {
  font-size: 19px; color: var(--muted); margin-top: 14px; max-width: 66ch;
}

.pricebar {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
}
.pill {
  border: 1px solid var(--line); background: var(--panel);
  border-radius: 999px; padding: 8px 16px;
  font-size: 13.5px; font-weight: 700; color: var(--muted);
}
.pill strong { color: var(--text); }
.pill.hot { border-color: var(--accent); color: var(--accent); }

hr.rule {
  border: 0; height: 1px; margin: 40px 0 34px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
}

/* ── Deliverable blocks ─────────────────────────────────────────────── */
.item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  margin-bottom: 16px;
}
.item.flag {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.22), 0 10px 40px rgba(56,189,248,0.06);
}

.item-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.num {
  font-size: 12.5px; font-weight: 850; color: var(--accent);
  letter-spacing: 1.6px; min-width: 26px;
}
h2 { font-size: 25px; font-weight: 820; letter-spacing: -0.55px; }

.tag {
  font-size: 10.5px; font-weight: 850; letter-spacing: 1.3px; text-transform: uppercase;
  color: #041520; background: var(--accent);
  border-radius: 999px; padding: 4px 10px;
}
.tag.soft { background: transparent; color: var(--dim); border: 1px solid var(--line); }

.lede { color: var(--muted); font-size: 16.5px; margin-top: 10px; max-width: 74ch; }

ul { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
li {
  position: relative; padding-left: 26px;
  color: var(--muted); font-size: 15.5px;
}
li::before {
  content: ''; position: absolute; left: 6px; top: 9px;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--accent); opacity: 0.85;
}
li strong { color: var(--text); font-weight: 700; }

/* ── App block ──────────────────────────────────────────────────────────
 * Sits above the numbered deliverables. It is not a deliverable itself — it is the
 * answer to "what am I actually getting this in", so it reads as a panel rather than
 * another item, and the numbering below it stays 01..N.
 */
.appnote {
  margin-bottom: 26px; padding: 26px 28px;
  border-radius: 18px; border: 1px solid var(--accent);
  background: linear-gradient(135deg, rgba(56,189,248,0.13), rgba(30,144,232,0.03));
  box-shadow: 0 10px 40px rgba(56,189,248,0.06);
}
.appnote .item-head { margin-bottom: 2px; }
.appnote h2 { font-size: 23px; }
.appnote p { color: var(--muted); font-size: 16.5px; margin-top: 10px; max-width: 74ch; }
.appnote p strong { color: var(--text); font-weight: 700; }

/* ── Closing block ──────────────────────────────────────────────────── */
.closer {
  margin-top: 34px; padding: 28px 30px;
  border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(56,189,248,0.10), rgba(30,144,232,0.03));
}
.closer h3 { font-size: 21px; font-weight: 820; letter-spacing: -0.4px; }
.closer p { color: var(--muted); font-size: 16px; margin-top: 9px; max-width: 72ch; }

/* ── Process + guarantee ────────────────────────────────────────────────
 * Both come straight from Hunter's own 1-on-1 doc. They are not deliverables, so they sit
 * below the numbered list under their own headings rather than continuing the numbering.
 */
.sec-head {
  margin: 44px 0 18px;
  font-size: 13px; font-weight: 850; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--dim);
  display: flex; align-items: center; gap: 14px;
}
.sec-head::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.steps { display: grid; gap: 12px; }
.step {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; padding: 22px 26px;
  display: grid; grid-template-columns: 44px 1fr; align-items: start; gap: 6px 16px;
}
.step .sn {
  grid-row: 1 / span 2;
  font-size: 22px; font-weight: 850; color: var(--accent); line-height: 1.2;
}
.step h4 { font-size: 19px; font-weight: 820; letter-spacing: -0.3px; }
.step p { color: var(--muted); font-size: 15.5px; max-width: 72ch; }

.guarantee {
  padding: 28px 30px; border-radius: 18px;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(30,144,232,0.03));
  box-shadow: 0 10px 40px rgba(56,189,248,0.06);
}
.guarantee h3 { font-size: 22px; font-weight: 830; letter-spacing: -0.4px; }
.guarantee p { color: var(--muted); font-size: 16.5px; margin-top: 10px; max-width: 74ch; }
.guarantee p strong { color: var(--text); font-weight: 700; }
.guarantee .fine { font-size: 14px; color: var(--dim); margin-top: 12px; }

.foot {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--dim); font-size: 13px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.foot a { color: var(--accent); text-decoration: none; }

/* Screen-share is the point, but Boston may also want a PDF to leave behind. */
@media print {
  body { background: #fff; color: #111; padding: 0; }
  h1 { color: #0B2C42; -webkit-text-fill-color: #0B2C42; }
  .item, .closer { border-color: #ccd6e0; background: #fff; break-inside: avoid; }
  .lede, li, .closer p, .tagline { color: #33404d; }
  .tag { background: #0B2C42; color: #fff; }
  .foot { color: #667; }
}

@media (max-width: 720px) {
  h1 { font-size: 36px; }
  body { padding: 30px 16px 60px; }
  .item { padding: 20px; }
  h2 { font-size: 21px; }
}
