:root {
  --bg: #ffffff;
  --ink: #17211f;
  --muted: #64706c;
  --line: #dce6e2;
  --soft: #f4f8f6;
  --teal: #0d8f86;
  --teal-dark: #086d67;
  --amber: #c9822a;
  --shadow: 0 24px 70px rgba(20, 42, 37, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 230, 226, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  font-size: 15px;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: var(--teal);
  color: #ffffff;
  font-size: 14px;
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

nav a:hover {
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: auto;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px) clamp(56px, 7vw, 84px);
}

.hero > * {
  min-width: 0;
}

.hero h1 {
  display: grid;
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  font-weight: 820;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-lede {
  margin: 24px 0 0;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.18;
  font-weight: 720;
  color: var(--teal-dark);
}

.hero-text {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 760;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
}

.button.secondary {
  background: #ffffff;
}

.product-preview {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.preview-topbar strong {
  color: var(--teal-dark);
  font-size: 13px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(180deg, #fbfdfc 0%, #eef6f3 100%);
}

.preview-panel {
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.preview-panel p,
.preview-panel strong {
  margin: 0;
}

.preview-panel p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.score-panel strong {
  display: block;
  margin-top: 26px;
  font-size: 54px;
  line-height: 1;
}

.score-panel span {
  display: block;
  margin-top: 10px;
  color: var(--amber);
  font-weight: 760;
}

.wide {
  grid-column: 1 / -1;
}

.stage-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.stage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.stage-list span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 6px;
  background: var(--soft);
  color: var(--teal-dark);
  font-size: 12px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.check-row:last-child {
  border-bottom: 0;
}

.check-row span {
  width: 14px;
  height: 14px;
  border: 2px solid var(--line);
  border-radius: 4px;
}

.check-row.complete span {
  border-color: var(--teal);
  background: var(--teal);
}

.band {
  background: var(--soft);
}

.pain,
.process,
.deliverables,
.packages,
.proof,
.contact {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-copy {
  max-width: 760px;
}

.section-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.pain {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.pain-list {
  display: grid;
  gap: 12px;
}

.pain-list div {
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  background: #ffffff;
  font-weight: 720;
  box-shadow: 0 12px 34px rgba(32, 54, 49, 0.06);
}

.steps,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.steps article,
.pricing article,
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.steps article {
  padding: 26px;
}

.steps span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.steps h3,
.proof-grid h3,
.pricing h3 {
  margin: 16px 0 0;
  font-size: 24px;
}

.steps p,
.proof-grid p,
.pricing p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.package-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.deliverable-table {
  max-width: 980px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.deliverable-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.deliverable-table strong {
  padding-left: 22px;
}

.deliverable-table span {
  padding-right: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing article {
  padding: 28px;
}

.pricing article.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.pricing strong {
  display: block;
  margin-top: 14px;
  font-size: 42px;
}

.pricing a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 24px;
  padding: 0 15px;
  border-radius: 7px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
}

.pricing .featured a {
  background: var(--teal);
}

.proof-grid article {
  padding: 24px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.builder-hero {
  padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 72px) 34px;
}

.builder-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.builder-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 52px);
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 104px);
}

.builder-form {
  align-self: start;
  box-shadow: none;
}

.audit-output {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.output-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.toolbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.toolbar-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.output-toolbar h2 {
  margin: 0;
  font-size: 18px;
}

.output-toolbar button {
  width: auto;
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.audit-output pre {
  min-height: 680px;
  max-height: 820px;
  margin: 0;
  padding: 22px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.65;
  background: linear-gradient(180deg, #fbfdfc 0%, #ffffff 100%);
}

.lead-result {
  grid-column: 1 / -1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lead-result pre {
  min-height: 300px;
  margin: 0;
  padding: 20px;
  color: var(--ink);
  font: inherit;
  line-height: 1.7;
  white-space: pre-wrap;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  line-height: 1.5;
}

.crm-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 52px);
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 104px);
}

.crm-form {
  align-self: start;
  box-shadow: none;
}

.crm-workspace {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.message-preview {
  min-height: 250px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--ink);
  background: #fbfdfc;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.65;
}

.crm-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.crm-summary div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.crm-summary strong,
.crm-summary span {
  display: block;
}

.crm-summary strong {
  font-size: 34px;
  line-height: 1;
}

.crm-summary span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.output-toolbar.compact {
  margin-top: 10px;
}

.prospect-list {
  display: grid;
  gap: 12px;
}

.prospect-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.prospect-row h3,
.prospect-row p {
  margin: 0;
}

.prospect-row h3 {
  font-size: 18px;
}

.prospect-row p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.prospect-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prospect-actions button {
  width: auto;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
}

.status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 7px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.status.new {
  background: var(--soft);
  color: var(--muted);
}

.status.sent {
  background: #eef6f3;
  color: var(--teal-dark);
}

.status.warm {
  background: #fff4e5;
  color: #9b5e16;
}

.status.won {
  background: #e9f7ef;
  color: #207242;
}

.empty-state {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fbfdfc;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 72px);
}

.dashboard-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: 0;
}

.dashboard-hero p {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-actions {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.dashboard-metrics div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(20, 42, 37, 0.07);
}

.dashboard-metrics strong,
.dashboard-metrics span {
  display: block;
}

.dashboard-metrics strong {
  font-size: 44px;
  line-height: 1;
}

.dashboard-metrics span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 760;
}

.dashboard-section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.lead-inbox-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-top: 30px;
}

.lead-row {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.lead-row h3 {
  margin: 0;
  font-size: 22px;
}

.lead-row p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.lead-row .lead-meta {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 760;
}

.lead-row details {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.lead-row summary {
  cursor: pointer;
  color: var(--teal-dark);
  font-weight: 760;
}

.lead-row pre {
  max-height: 320px;
  margin: 14px 0 0;
  padding: 16px;
  overflow: auto;
  background: #f7faf9;
  color: var(--ink);
  font: inherit;
  line-height: 1.65;
  white-space: pre-wrap;
}

.tool-chain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.tool-card {
  display: grid;
  min-height: 210px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 143, 134, 0.45);
  box-shadow: 0 18px 48px rgba(20, 42, 37, 0.1);
}

.tool-card span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.tool-card h3 {
  margin: 18px 0 0;
  font-size: 24px;
}

.tool-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.action-grid article {
  padding: 22px;
  border-left: 4px solid var(--teal);
  background: #ffffff;
}

.action-grid h3,
.action-grid p {
  margin: 0;
}

.action-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.asset-list {
  display: grid;
  max-width: 980px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.asset-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.asset-list span {
  color: var(--muted);
  line-height: 1.55;
}

.launch-section {
  min-width: 0;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.launch-section > *,
.readiness-grid,
.launch-grid,
.launch-steps {
  min-width: 0;
}

.launch-section .section-copy p {
  overflow-wrap: anywhere;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin-top: 34px;
}

.readiness-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.readiness-item > div,
.launch-panel {
  min-width: 0;
}

.readiness-item.ready {
  border-color: rgba(13, 143, 134, 0.38);
}

.readiness-item.pending {
  border-color: rgba(201, 130, 42, 0.42);
}

.readiness-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.readiness-item.ready .readiness-dot {
  background: var(--teal);
}

.readiness-item strong,
.readiness-item small {
  display: block;
}

.readiness-item small {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  max-width: 1100px;
  margin-top: 34px;
}

.checklist-panel,
.launch-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.checklist-panel {
  display: grid;
  gap: 4px;
}

.check-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.check-item input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.check-item strong,
.check-item small {
  display: block;
}

.check-item small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.checklist-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
}

.checklist-footer .button {
  min-height: 40px;
}

.launch-panel h3,
.launch-panel p {
  margin: 0;
}

.launch-panel p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.launch-panel .button {
  margin-top: 24px;
}

.launch-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin-top: 34px;
}

.launch-steps article {
  padding: 22px;
  border-left: 4px solid var(--teal);
  background: var(--soft);
}

.launch-steps span,
.launch-steps strong,
.launch-steps p {
  display: block;
}

.launch-steps span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.launch-steps strong {
  margin-top: 14px;
  font-size: 18px;
}

.launch-steps p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.payment-qr-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: center;
  max-width: 980px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(20, 42, 37, 0.08);
}

.payment-qr-card h3,
.payment-qr-card p {
  margin: 0;
}

.payment-qr-card h3 {
  font-size: 28px;
}

.payment-qr-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.payment-qr-card img {
  width: 100%;
  max-width: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

button {
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  background: var(--teal);
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero,
  .pain,
  .contact,
  .builder-shell,
  .crm-shell,
  .dashboard-hero {
    grid-template-columns: 1fr;
  }

  .tool-chain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    gap: 32px;
  }

  .product-preview {
    max-width: 640px;
  }

  .steps,
  .pricing,
  .proof-grid,
  .readiness-grid,
  .launch-steps {
    grid-template-columns: 1fr;
  }

  .launch-grid {
    grid-template-columns: 1fr;
  }

  .deliverable-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .deliverable-table strong,
  .deliverable-table span {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 700px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 46px);
    line-height: 1.04;
  }

  .hero-lede {
    font-size: 24px;
  }

  .button {
    width: auto;
  }

  .preview-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero,
  .pain,
  .process,
  .deliverables,
  .packages,
  .proof,
  .contact,
  .builder-hero,
  .builder-shell,
  .crm-shell,
  .dashboard-hero,
  .dashboard-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .dashboard-metrics,
  .tool-chain,
  .action-grid,
  .readiness-grid,
  .launch-steps {
    grid-template-columns: 1fr;
  }

  .asset-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .payment-qr-card {
    grid-template-columns: 1fr;
  }

  .payment-qr-card img {
    max-width: 100%;
  }

  .crm-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prospect-row {
    grid-template-columns: 1fr;
  }

  .prospect-actions {
    flex-wrap: wrap;
  }

  .audit-output pre {
    min-height: 540px;
    font-size: 13px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }
}
