:root {
  --red: #C41E3A; --bronze: #C9A227; --dark: #14161a; --dark2: #1d2026;
  --ink: #1a1f2e; --soft: #4b5563; --line: #e5e3dc; --bg: #faf9f6;
  --green: #0f6e3d; --green-bg: #e7f2ea; --red-bg: #fbeaed; --amber: #92400e;
}
* { box-sizing: border-box; margin: 0; }
body { font-family: -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; }
a { color: var(--red); }
main { max-width: 880px; margin: 0 auto; padding: 0 20px 60px; }

.site-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; background: var(--dark); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.shield { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--dark2); border: 2px solid var(--bronze); color: var(--red); font-weight: 800; font-size: 19px; }
.shield-small { width: 22px; height: 22px; font-size: 12px; border-width: 1.5px; }
.brand-name { color: #fff; font-weight: 800; letter-spacing: 1px; }
.brand-by { color: #8a8f98; font-size: 12px; }
.site-header nav { display: flex; align-items: center; gap: 18px; }
.site-header nav a { color: #d1d5db; text-decoration: none; font-size: 14px; }

.btn { display: inline-block; background: var(--red); color: #fff !important; font-weight: 700; text-decoration: none; padding: 14px 26px; border-radius: 8px; border: 0; font-size: 16px; cursor: pointer; }
.btn:hover { background: #a8172f; }
.btn-small { padding: 8px 16px; font-size: 13px; border-radius: 6px; }
.btn-block { display: block; width: 100%; text-align: center; }
.trust-line { font-size: 13px; color: var(--soft); margin-top: 10px; }

.hero-form { display: flex; flex-direction: column; gap: 12px; max-width: 560px; margin: 0 auto; }
.hero-form input { width: 100%; padding: 18px 20px; font-size: 19px; border: 2px solid #cfd4dc; border-radius: 10px; background: #fff; min-width: 0; box-shadow: 0 4px 18px rgba(20,22,26,.07); }
.hero-form input:focus { outline: 3px solid var(--red); border-color: var(--red); }
.hero-form .btn { width: 100%; font-size: 17px; padding: 17px 26px; }
.hero-form.dark input { border-color: #3a3f47; }

.hero { text-align: center; padding: 64px 0 40px; }
.hero h1 { font-size: 40px; line-height: 1.15; letter-spacing: -0.5px; }
.hero .sub { font-size: 18px; color: var(--soft); max-width: 640px; margin: 18px auto 28px; }

/* two-column hero: copy left, the product right */
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.hero-grid > * { min-width: 0; }
.eng-ico { width: 16px; height: 16px; vertical-align: -3px; margin-right: 5px; border-radius: 3px; }
.mock-table th .eng-ico { width: 15px; height: 15px; }
@media (min-width: 1020px) {
  main { max-width: 1180px; }
  main > :not(.hero) { max-width: 840px; margin-left: auto; margin-right: auto; }
  .hero { text-align: left; padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 6fr 7fr; gap: 48px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-copy .sub { margin: 16px 0 24px; max-width: none; }
  .hero-copy .hero-form { margin: 0; max-width: 520px; }
  .hero-visual .mock-report { box-shadow: 0 24px 60px rgba(20,22,26,.18); transform: rotate(0.6deg); }
  .hero-visual .mock-caption { text-align: center; }
}
.eyebrow { color: var(--red); font-weight: 800; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }

.section { margin-top: 56px; }
.section h2 { font-size: 26px; margin-bottom: 14px; }
.cards3 { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 18px; }
@media (min-width: 700px) { .cards3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 20px; }
.card h3 { font-size: 16px; margin-bottom: 6px; }
.card p { font-size: 14px; color: var(--soft); }
.card .big { font-size: 30px; font-weight: 800; }

.dark-band { background: var(--dark); color: #d1d5db; border-radius: 12px; padding: 28px; margin-top: 56px; }
.dark-band h2 { color: #fff; }
.dark-band .gold { color: var(--bronze); }

form .field { margin-bottom: 16px; }
form label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 5px; }
form .hint { font-size: 12px; color: var(--soft); margin-top: 4px; }
.form-card input[type="text"], .form-card input[type="email"],
form input[type="text"], form input[type="email"], form input[type="url"] {
  width: 100%; padding: 13px 14px; font-size: 16px; border: 1.5px solid #cfd4dc; border-radius: 8px; background: #fff;
}
.form-card input:focus, form input:focus { outline: 2px solid var(--red); border-color: var(--red); }
.form-card input.input-xl { padding: 18px 20px; font-size: 19px; border-radius: 10px; border-width: 2px; }
.add-row input { width: auto; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px;
}
.site-header :focus-visible, .dark-band :focus-visible, .sticky-bar :focus-visible, .site-footer :focus-visible {
  outline-color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 28px; max-width: 560px; margin: 0 auto; }
.error-msg { color: var(--red); font-weight: 600; font-size: 14px; margin-top: 10px; display: none; }

/* report page */
.report-loading { text-align: center; padding: 50px 0; }
.progress-track { background: #e9e7e1; border-radius: 99px; height: 12px; max-width: 420px; margin: 22px auto; overflow: hidden; }
.progress-fill { background: var(--red); height: 100%; width: 3%; transition: width .8s ease; }
.stage-label { color: var(--soft); font-size: 14px; }
.email-gate { max-width: 460px; margin: 26px auto 0; text-align: left; }

.snapshot { display: flex; gap: 26px; align-items: center; margin-top: 26px; flex-wrap: wrap; }
.site-shot { width: 210px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 10px 28px rgba(20,22,26,.12); }
.site-shot .ss-bar { background: var(--dark); display: flex; align-items: center; gap: 4px; padding: 6px 9px; }
.site-shot .ss-bar span { width: 7px; height: 7px; border-radius: 50%; background: #3a3f47; }
.site-shot .ss-bar i { font-style: normal; color: #9aa1ab; font-size: 10px; margin-left: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-shot img { width: 100%; height: 145px; object-fit: cover; object-position: top; display: block; background: #f0efe9; }
.donut-wrap { position: relative; width: 170px; height: 170px; flex: 0 0 auto; }
.donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.donut-center .pct { font-size: 38px; font-weight: 800; }
.donut-center .lbl { font-size: 11px; color: var(--soft); }
.snapshot-text { flex: 1; min-width: 260px; }
.snapshot-text h2 { font-size: 22px; line-height: 1.3; }
.snapshot-text p { color: var(--soft); margin-top: 8px; }

.engine-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-top: 24px; }
.engine-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px; text-align: center; }
.engine-card .name { font-size: 12px; color: var(--soft); }
.engine-card .pct { font-size: 26px; font-weight: 800; margin: 4px 0; }
.engine-card .sub { font-size: 11px; color: var(--soft); }

.sov { margin-top: 26px; }
.sov-row { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.sov-name { width: 200px; font-size: 13px; text-align: right; flex: 0 0 auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sov-name.you { font-weight: 800; color: var(--red); }
.sov-track { flex: 1; background: #edebe5; border-radius: 6px; height: 20px; }
.sov-fill { height: 100%; border-radius: 6px; background: #6b7280; }
.sov-fill.you { background: var(--red); }
.sov-pct { width: 44px; font-size: 13px; font-weight: 700; }

.verdict-box { background: #fff; border-left: 4px solid var(--red); border-radius: 0 10px 10px 0; padding: 18px 20px; margin-top: 26px; }
.verdict-box .eyebrow { margin-bottom: 6px; display: block; }

.sources-list { margin-top: 14px; }
.src-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 14px; }
.src-name { width: 220px; text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.src-name.you { color: var(--red); font-weight: 800; }
.src-track { flex: 1; background: #edebe5; border-radius: 5px; height: 16px; }
.src-fill { height: 100%; border-radius: 5px; background: #b3aa9b; }
.src-fill.comp { background: #3a3f47; }
.src-fill.you { background: var(--red); }
.src-count { width: 36px; font-weight: 700; font-size: 13px; }

.moves { margin-top: 14px; }
.move { display: flex; gap: 14px; margin-bottom: 14px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px; }
.move-num { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--dark); color: var(--bronze); font-weight: 800; display: flex; align-items: center; justify-content: center; }

details.evidence { margin-top: 30px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
details.evidence > summary { cursor: pointer; padding: 16px 20px; font-weight: 800; font-size: 16px; }
details.evidence .evidence-body { padding: 0 20px 20px; }
.evidence-body { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bmap { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 13px; margin-top: 10px; }
.bmap th { background: var(--dark); color: #fff; padding: 7px 8px; text-align: left; font-size: 12px; }
.bmap td { border: 1px solid #fff; padding: 7px 8px; vertical-align: middle; }
.bmap .cell-you { background: var(--green-bg); color: var(--green); font-weight: 800; text-align: center; }
.bmap .cell-miss { background: var(--red-bg); color: var(--red); font-weight: 700; text-align: center; font-size: 12px; }
.bmap .cell-na { background: #f3f4f6; color: #4b5563; text-align: center; font-size: 12px; }
.quote-box { background: #f7f6f3; border-left: 4px solid var(--red); padding: 14px 16px; margin: 12px 0; font-size: 14px; }
.quote-attr { color: var(--red); font-weight: 700; font-size: 12px; margin-top: 6px; }

/* pricing */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-top: 26px; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; display: flex; flex-direction: column; }
.tier h4 { font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; color: #9a7b16; margin: 16px 0 6px; }
.tier ul + h4 { margin-top: 14px; }
.tier ul { list-style: none; padding-left: 0; }
.tier li { padding-left: 22px; position: relative; }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.btn-ghost { display: block; text-align: center; margin-top: 8px; font-size: 13.5px; font-weight: 700; color: var(--ink); text-decoration: none; padding: 8px; border: 1.5px solid #cfd4dc; border-radius: 8px; }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.tier .btn-block { margin-top: 4px; }
.tier-incl { font-weight: 800; font-size: 13px; background: #f4f3ee; border-radius: 8px; padding: 8px 12px; margin-top: 14px; }
.tier-honest { margin-top: 14px; font-size: 13px; color: var(--soft); font-style: italic; border-top: 1px solid var(--line); padding-top: 12px; }
.tier.popular { border: 2px solid var(--red); position: relative; }
.tier .pop-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 12px; border-radius: 99px; }
.tier h3 { font-size: 17px; }
.tier .price { font-size: 28px; font-weight: 800; margin: 8px 0 2px; }
.tier .setup { font-size: 15px; color: var(--soft); margin-bottom: 12px; }
.tier-guar { font-size: 12.5px; color: var(--green); font-weight: 700; margin: -4px 0 10px; }
.tier-guar a { color: inherit; }
.tier ul { padding-left: 18px; font-size: 13.5px; color: var(--soft); flex: 1; }
.tier li { margin-bottom: 7px; }
.tier .btn { margin-top: 16px; }
.honesty { background: var(--dark); color: #d1d5db; border-radius: 12px; padding: 24px; margin-top: 40px; font-size: 14.5px; }
.honesty h3 { color: var(--bronze); margin-bottom: 8px; }
.faq { margin-top: 40px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 10px; padding: 0; }
.faq summary { font-weight: 700; cursor: pointer; padding: 14px 18px; }
.faq p { margin: 0; padding: 0 18px 14px; color: var(--soft); font-size: 14.5px; }

/* mock sample report on landing */
.mock-report { max-width: 840px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 18px 45px rgba(20,22,26,.14); }
.mock-table-wrap { overflow-x: auto; margin-top: 14px; }
.mock-table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: 14px; }
.mock-table th { background: var(--dark); color: #fff; padding: 9px 12px; text-align: left; font-size: 12.5px; }
.mock-table td { padding: 8px 12px; border-bottom: 1px solid var(--line); }
.mock-table .you-name { color: var(--red); font-weight: 800; white-space: nowrap; }
.mock-cell { display: inline-block; min-width: 52px; text-align: center; font-weight: 800; padding: 5px 9px; border-radius: 6px; font-size: 13px; }
.mock-chrome { background: var(--dark); display: flex; align-items: center; gap: 6px; padding: 10px 14px; }
.mock-chrome .dot { width: 10px; height: 10px; border-radius: 50%; background: #3a3f47; }
.mock-title { color: #9aa1ab; font-size: 12px; margin-left: 10px; }
.mock-body { display: flex; gap: 24px; padding: 24px; align-items: center; flex-wrap: wrap; }
.mock-left { flex: 0 0 auto; }
.mock-donut { width: 130px; height: 130px; border-radius: 50%; background: conic-gradient(var(--red) calc(var(--p) * 1%), #eceae5 0); display: flex; align-items: center; justify-content: center; }
.mock-donut-center { width: 92px; height: 92px; border-radius: 50%; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mock-donut-center b { font-size: 24px; }
.mock-donut-center span { font-size: 10px; color: var(--soft); }
.mock-right { flex: 1; min-width: 260px; }
.mock-line { font-size: 14.5px; margin-bottom: 12px; }
.mock-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; font-size: 12.5px; }
.mock-name { width: 100px; text-align: right; color: var(--soft); white-space: nowrap; }
.mock-row.you .mock-name { color: var(--red); font-weight: 800; }
.mock-track { flex: 1; background: #edebe5; height: 14px; border-radius: 5px; overflow: hidden; display: block; }
.mock-track i { display: block; height: 100%; background: #9aa1ab; border-radius: 5px; }
.mock-track i.you { background: var(--red); }
.mock-engines { margin-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 99px; }
.chip-red { background: var(--red-bg); color: var(--red); }
.chip-amber { background: #fdf0e3; color: var(--amber); }
.chip-green { background: var(--green-bg); color: var(--green); }
.mock-caption { text-align: center; color: var(--soft); font-size: 13px; margin-top: 12px; }

/* steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } .steps.steps-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 480px) and (max-width: 699px) { .steps.steps-4 { grid-template-columns: repeat(2, 1fr); } }
.step { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.step-num { font-size: 30px; font-weight: 800; color: #9a7b16; margin-bottom: 8px; }
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--soft); }

/* founder strip */
.founder { display: flex; gap: 20px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.founder-avatar { flex: 0 0 auto; width: 72px; height: 72px; border-radius: 50%; background: var(--dark); border: 3px solid var(--bronze); color: #fff; font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; }
.founder-photo { flex: 0 0 auto; width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--bronze); }

/* testimonials */
.tgrid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 22px; }
@media (min-width: 700px) { .tgrid { grid-template-columns: repeat(3, 1fr); } .tgrid.tgrid-2 { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-left: auto; margin-right: auto; } }

/* featured recommendation letter */
.letter-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 28px; margin-top: 22px; box-shadow: 0 10px 30px rgba(20,22,26,.08); }
.letter-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.letter-head img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bronze); }
.letter-head b { display: block; font-size: 16px; }
.letter-head span { font-size: 13px; color: var(--soft); }
.letter-head .tchip { margin-left: auto; margin-bottom: 0; }
.letter-card blockquote p { color: var(--soft); font-size: 14.5px; margin-bottom: 12px; }
.letter-card blockquote p:last-child { margin-bottom: 0; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; display: flex; flex-direction: column; }
.tmedia { margin: -22px -22px 16px; border-radius: 12px 12px 0 0; overflow: hidden; background: #000; aspect-ratio: 16 / 9; }
.tmedia iframe { width: 100%; height: 100%; border: 0; display: block; }
.tmedia.tphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tchip { align-self: flex-start; background: var(--green-bg); color: var(--green); font-weight: 800; font-size: 12px; padding: 4px 12px; border-radius: 99px; margin-bottom: 12px; }
.tcard blockquote { font-size: 14px; color: var(--soft); line-height: 1.6; flex: 1; }
.tname { margin-top: 14px; font-weight: 700; font-size: 13.5px; }
.tname span { color: var(--soft); font-weight: 400; }

/* homepage mini pricing */
.mini-tiers { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
@media (min-width: 700px) { .mini-tiers { grid-template-columns: repeat(3, 1fr); } }
.mini-tier { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; text-align: center; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 4px; }
.mini-tier.pop { border: 2px solid var(--red); }
.mt-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 10px; border-radius: 99px; }
.mt-price { font-size: 22px; font-weight: 800; }
.mt-setup { font-size: 14px; color: var(--soft); }
.mt-setup s, .tier .setup s { color: #6b7280; font-weight: 700; text-decoration-thickness: 2px; text-decoration-color: var(--red); }
.mt-items { list-style: none; padding: 0; margin: 12px 0 0; text-align: left; font-size: 12.5px; color: var(--soft); border-top: 1px solid var(--line); padding-top: 10px; }
.mt-items li { padding-left: 18px; position: relative; margin-bottom: 5px; }
.mt-items li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* free vs paid explainer */
.free-vs-paid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin: 10px 0 8px; }
.fvp { border-radius: 12px; padding: 22px; }
.fvp.free { background: var(--green-bg); border: 2px solid #bcd9c6; }
.fvp.paid { background: var(--dark); color: #d1d5db; }
.fvp.paid b { color: #fff; }
.fvp-tag { font-size: 11px; font-weight: 800; letter-spacing: 1px; color: var(--green); margin-bottom: 6px; }
.fvp-tag.gold { color: var(--bronze); }
.fvp b { font-size: 17px; display: block; margin-bottom: 8px; }
.fvp ul { list-style: none; padding: 0; margin: 0 0 12px; font-size: 14px; }
.fvp li { padding-left: 20px; position: relative; margin-bottom: 6px; }
.fvp.free li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.fvp.paid li::before { content: "→"; position: absolute; left: 0; color: var(--bronze); font-weight: 800; }
.fvp .btn-ghost { display: inline-block; background: #fff; }

/* real-answer proof card */
.proof-card { margin-top: 22px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; padding: 20px 22px; }
.proof-q { font-size: 14px; color: var(--soft); margin-bottom: 10px; }
.proof-card blockquote { font-size: 15px; line-height: 1.6; color: var(--ink); }
.proof-meta { margin-top: 12px; font-size: 13px; color: var(--soft); border-top: 1px solid var(--line); padding-top: 10px; }

.shot-img { width: 100%; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 12px; display: block; background: #fff; }

/* Ascent proof strip on the report page */
.proof-strip { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
.proof-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.proof-stat { background: var(--green-bg); border-radius: 10px; padding: 10px 16px; text-align: center; flex: 1; min-width: 130px; }
.proof-stat i { font-style: normal; font-weight: 800; font-size: 19px; color: var(--green); display: block; white-space: nowrap; }
.proof-stat span { font-size: 12px; color: var(--soft); }
.proof-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px auto 0; max-width: 540px; }
.proof-lbl { font-weight: 800; font-size: 12px; margin-bottom: 6px; text-align: center; }
.proof-shots img { width: 100%; border: 1px solid var(--line); border-radius: 8px; display: block; }

/* mini report previews inside cards */
.mini-viz { background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 10px; margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 5px; min-height: 86px; align-content: center; }
.mini-map, .mini-srcs { display: block; }
.mm-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 11px; color: var(--soft); padding: 3px 0; }
.mm-row span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mm-row i { font-style: normal; font-weight: 800; font-size: 10.5px; white-space: nowrap; padding: 2px 7px; border-radius: 6px; }
.mm-hit { background: var(--green-bg); color: var(--green); }
.mm-miss { background: var(--red-bg); color: var(--red); }
.ms-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--soft); padding: 3px 0; }
.ms-row span { width: 110px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: right; flex: 0 0 auto; }
.ms-row i { display: block; height: 10px; border-radius: 4px; background: #6b7280; }
.ms-row.you span { color: var(--red); font-weight: 800; }
.ms-row.you i { background: var(--red); }

/* verticals strip */
.verticals { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.verticals span { background: #fff; border: 1px solid var(--line); border-radius: 99px; padding: 7px 16px; font-size: 13.5px; font-weight: 700; }

/* monthly proof illustration */
.trend-mock { margin-top: 26px; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.tm-head { background: var(--dark); color: #fff; font-weight: 800; font-size: 14px; padding: 10px 16px; }
.tm-tag { color: #9aa1ab; font-weight: 400; font-size: 11.5px; margin-left: 8px; }
.tm-body { display: flex; gap: 24px; padding: 20px; flex-wrap: wrap; align-items: center; }
.tm-chart { display: flex; gap: 16px; align-items: flex-end; flex: 0 0 auto; }
.tm-month { text-align: center; }
.tm-bars { display: flex; gap: 4px; align-items: flex-end; height: 90px; }
.tm-bars i { display: block; width: 18px; border-radius: 4px 4px 0 0; background: #c3c9d1; }
.tm-bars i.you { background: var(--red); }
.tm-month span { font-size: 11px; color: var(--soft); }
.tm-legend { font-size: 11px; color: var(--soft); align-self: center; }
.tm-legend b { font-weight: 700; color: #c3c9d1; display: block; }
.tm-legend b.you { color: var(--red); }
.tm-quote { flex: 1; min-width: 240px; font-size: 13.5px; }
.tm-before { color: var(--soft); padding: 8px 12px; background: var(--red-bg); border-radius: 8px; }
.tm-after { color: var(--ink); padding: 8px 12px; background: var(--green-bg); border-radius: 8px; margin-top: 8px; }

/* founding-client deal */
.deal-strip { background: #fdf0e3; border: 1px solid #f0ddc2; color: var(--amber); border-radius: 10px; padding: 12px 18px; margin: 14px 0 6px; font-size: 14.5px; text-align: center; }
.tier .setup s { color: #9ca3af; }
.tier .setup .deal { color: var(--green); display: block; margin-top: 2px; font-size: 14px; }
.tiers-3 { grid-template-columns: 1fr; }
@media (min-width: 860px) { .tiers-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) and (max-width: 859px) { .tiers-3 { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }

/* 4-tier grid (with the $99 One-Page Starter) */
.tiers-4 { grid-template-columns: 1fr; }
@media (min-width: 560px) and (max-width: 1019px) { .tiers-4 { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-left: auto; margin-right: auto; } }
@media (min-width: 1020px) { .tiers.tiers-4 { grid-template-columns: repeat(4, 1fr); max-width: 1100px; margin-left: auto; margin-right: auto; gap: 14px; } }
.tier.tier-starter { background: #faf9f6; }
.tier-starter h3 { color: var(--soft); }
/* "honest limit" exclusions read as NOT-included, not features */
.tier ul.tier-limit li::before { content: "✕"; color: #9ca3af; font-weight: 700; }
.tier ul.tier-limit { color: #9ca3af; }

/* done-for-you: 3-column comparison */
.compare3 { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 22px; max-width: 760px; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .compare3 { grid-template-columns: repeat(3, 1fr); } }
.cmp { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 16px; }
.cmp-win { border: 2px solid var(--green); background: var(--green-bg); }
.cmp-num { font-size: 32px; font-weight: 800; }
.cmp-win .cmp-num { color: var(--green); }
.cmp-num s { color: #9ca3af; text-decoration-thickness: 2px; }
.cmp-lbl { font-size: 13.5px; color: var(--ink); margin-top: 6px; font-weight: 700; }
.cmp-lbl span { display: block; font-weight: 400; color: var(--soft); font-size: 12.5px; margin-top: 3px; }

/* done-for-you: demo sites grid */
.demos { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 22px; text-align: left; }
@media (min-width: 520px) { .demos { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .demos { grid-template-columns: repeat(3, 1fr); } }
.demo-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; text-decoration: none; color: var(--ink); transition: transform .12s ease, box-shadow .12s ease; }
.demo-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(20,22,26,.14); }
.demo-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: top; display: block; background: #f0efe9; border-bottom: 1px solid var(--line); }
.demo-meta { padding: 12px 14px; display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.demo-meta b { font-size: 14px; }
.demo-meta span { font-size: 12px; color: var(--soft); white-space: nowrap; }
.demo-card::after { content: "View live demo →"; display: block; padding: 0 14px 12px; color: var(--red); font-weight: 700; font-size: 12.5px; margin-top: -4px; }

/* done-for-you banner on pricing */
.dfy-banner { display: flex; align-items: stretch; gap: 14px; background: var(--dark); border-radius: 12px; padding: 18px 22px; color: #d1d5db; margin: 10px 0 8px; flex-wrap: wrap; }
.dfy-col { display: flex; flex-direction: column; gap: 2px; }
.dfy-col b { color: var(--bronze); font-size: 13px; letter-spacing: .5px; text-transform: uppercase; }
.dfy-col span { font-size: 14.5px; }
.dfy-col.wide { flex: 1; min-width: 240px; }
.dfy-arrow { align-self: center; color: var(--red); font-size: 22px; font-weight: 800; }

/* wizard */
.wizard-dots { display: flex; align-items: center; justify-content: center; gap: 0; margin: 36px auto 8px; max-width: 640px; }
.wdot { display: flex; flex-direction: column; align-items: center; gap: 4px; position: relative; }
.wdot span:not(.wlabel) { width: 34px; height: 34px; border-radius: 50%; background: #e9e7e1; color: var(--soft); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 14px; border: 2px solid #d8d5cd; }
.wdot .wlabel { font-size: 11px; color: var(--soft); white-space: nowrap; }
.wdot.active span:not(.wlabel) { background: var(--red); border-color: var(--red); color: #fff; }
.wdot.active .wlabel { color: var(--ink); font-weight: 700; }
.wdot.done span:not(.wlabel) { background: var(--dark); border-color: var(--dark); color: var(--bronze); }
.wline { flex: 1; height: 2px; background: #d8d5cd; margin: 0 6px 18px; min-width: 24px; }
.wstep .whead { text-align: center; max-width: 620px; margin: 26px auto 22px; }
.wstep .whead h1 { font-size: 28px; }
.wstep .whead p { color: var(--soft); margin-top: 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.comp-chip { display: inline-flex; align-items: center; gap: 7px; background: var(--red-bg); color: var(--red); font-weight: 700; font-size: 14px; padding: 7px 12px; border-radius: 99px; }
.comp-chip button { border: 0; background: none; color: var(--red); font-size: 16px; cursor: pointer; padding: 0; line-height: 1; min-width: 32px; min-height: 32px; margin: -8px -6px -8px -4px; display: inline-flex; align-items: center; justify-content: center; }
.add-row { display: flex; gap: 8px; }
.add-row input { flex: 1; }
.add-row .btn { padding: 10px 18px; }
.qlist { margin-bottom: 14px; }
.qrow { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #f4f3ee; border-radius: 8px; padding: 11px 14px; margin-bottom: 8px; font-size: 14.5px; }
.qrow button { border: 0; background: none; color: var(--red); font-size: 18px; font-weight: 800; cursor: pointer; min-width: 32px; min-height: 32px; display: inline-flex; align-items: center; justify-content: center; }

/* report extras */
.heat { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 13px; }
.heat th { background: var(--dark); color: #fff; padding: 8px 10px; text-align: left; font-size: 11.5px; }
.heat td { padding: 7px 10px; border-bottom: 1px solid var(--line); }
.heat-cell { display: inline-block; min-width: 46px; text-align: center; font-weight: 800; padding: 4px 8px; border-radius: 6px; font-size: 12px; }
.heat-you { color: var(--red); font-weight: 800; }
.move-offer { border: 2px solid var(--red); background: #fff; }
.cta-video { max-width: 620px; margin: 20px auto 0; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; background: #000; box-shadow: 0 14px 40px rgba(0,0,0,.4); }
.cta-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.cta-points { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; text-align: left; }
@media (min-width: 640px) { .cta-points { grid-template-columns: 1fr 1fr; } }
.cta-point { background: rgba(255,255,255,.05); border: 1px solid #2a2e35; border-radius: 10px; padding: 14px 16px; font-size: 14px; line-height: 1.6; color: #d1d5db; }
.cta-point b { color: #fff; }
.demo-banner { background: var(--dark); color: #d1d5db; border-radius: 10px; padding: 12px 18px; font-size: 13.5px; margin-bottom: 18px; }
.demo-banner b { color: var(--bronze); }
.demo-banner a { color: #fff; font-weight: 700; }
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; background: var(--dark); color: #d1d5db; display: flex; align-items: center; justify-content: center; gap: 16px; padding: 12px 16px; z-index: 50; box-shadow: 0 -6px 24px rgba(20,22,26,.25); }
.sticky-txt { font-size: 14px; }
.sticky-close { border: 0; background: none; color: #9aa1ab; font-size: 22px; cursor: pointer; min-width: 36px; min-height: 36px; line-height: 1; }
@media (max-width: 560px) {
  .wdot .wlabel { display: none; }
  .sticky-bar { gap: 10px; padding: 9px 12px; }
  .sticky-txt { font-size: 12.5px; line-height: 1.35; }
  .sticky-txt b { display: block; }
  .sticky-bar .btn { font-size: 13px; padding: 10px 14px; white-space: nowrap; }
  .sticky-close { min-width: 30px; min-height: 30px; font-size: 19px; }
}

.site-footer { background: var(--dark); color: #9aa1ab; padding: 26px 22px; font-size: 13px; margin-top: 60px; }
.site-footer a { color: #d1d5db; }
.footer-fine { font-size: 12px; margin-top: 8px; color: #9aa1ab; }
.footer-fine a { color: #9aa1ab; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; padding-bottom: 10px; border-bottom: 1px solid #2a2e35; }
.footer-links a { text-decoration: none; font-size: 13px; }

@media (max-width: 640px) {
  main h1 { font-size: 27px; line-height: 1.2; }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 27px; }
  .hero .sub { font-size: 16px; margin: 14px auto 22px; }
  .section { margin-top: 44px; }
  .section h2 { font-size: 22px; }
  .dark-band { padding: 22px 18px; }
  .sov-name, .src-name { width: 120px; font-size: 11px; }
  .site-header { padding: 10px 14px; }
  .brand-name { font-size: 14px; white-space: nowrap; }
  .brand-by { display: none; }
  .shield { width: 28px; height: 28px; font-size: 15px; }
  .site-header nav { gap: 10px; }
  .site-header nav a:not(.btn) { font-size: 13px; }
  .btn-small { padding: 7px 12px; font-size: 12px; white-space: nowrap; }
  .hero-form .btn { font-size: 14px; padding: 13px 10px; }
}
