:root {
  --volt: #6be36b;
  --volt-bright: #8bff7a;
  --volt-deep: #2e8b3a;
  --graphite: #14171a;
  --graphite-2: #1d2226;
  --paper: #f5f6f4;
  --ink: #14171a;
  --slate: #5c6560;
  --line: #d9ddd8;
  --danger: #c9432f;
  --shadow: 0 1px 2px rgba(20, 23, 26, 0.06), 0 4px 16px rgba(20, 23, 26, 0.06);
  --font-display: "IBM Plex Mono", monospace;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
.hidden { display: none !important; }

/* No spinner arrows on number inputs anywhere — they only ever nudge by
   the field's step (often $0.01), which is never what anyone wants. */
input[type="number"] { -moz-appearance: textfield; }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
}

svg { display: block; flex-shrink: 0; }

/* ---------- topbar ---------- */

.topbar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 20px;
  background: var(--graphite);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
}
.brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.02em; }
.brand-mark { background: var(--volt); color: var(--graphite); border-radius: 4px; padding: 2px 6px; font-size: 12px; }
.tabs { display: flex; gap: 4px; flex: 1; }
.tab-btn {
  background: transparent; border: none; color: #c9cdc9; padding: 8px 14px;
  border-radius: 6px; cursor: pointer; font-size: 14px; transition: background .15s, color .15s;
}
.tab-btn:hover { background: rgba(255,255,255,0.08); }
.tab-btn.active { background: var(--volt); color: var(--graphite); font-weight: 600; }
.topbar-actions { display: flex; gap: 8px; align-items: center; }

/* ---------- buttons ---------- */

button, .file-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .05s;
}
button:hover, .file-btn:hover { border-color: var(--slate); }
button:active, .file-btn:active { transform: translateY(1px); }
button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.topbar-actions button, .topbar-actions .file-btn { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.topbar-actions button:hover, .topbar-actions .file-btn:hover { border-color: #fff; }
.file-btn { display: inline-flex; align-items: center; }

.tour-btn-primary {
  background: var(--volt); border-color: var(--volt); color: var(--graphite); font-weight: 600;
}
.tour-btn-primary:hover { background: var(--volt-bright); border-color: var(--volt-bright); }
.tour-btn-outline { background: transparent; }
.tour-btn-text { background: transparent; border-color: transparent; color: var(--slate); }
.tour-btn-text:hover { color: var(--ink); border-color: transparent; text-decoration: underline; }

/* ---------- layout ---------- */

main { padding: 24px; max-width: 1400px; margin: 0 auto; }
.panel { display: none; }
.panel.active { display: block; }

.section-intro { margin-bottom: 18px; }
.section-intro h1 { font-family: var(--font-display); font-size: 20px; margin: 0 0 4px; }
.section-intro p { margin: 0; color: var(--slate); font-size: 13px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 4px;
}

.toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.hint { color: var(--slate); font-size: 12px; margin-left: auto; }

.bid-meta.card { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px; margin-bottom: 14px; padding: 14px 16px; }
.stacked-label { display: flex; flex-direction: column; font-size: 12px; color: var(--slate); gap: 4px; }
.bid-fields { display: flex; gap: 14px; flex-wrap: wrap; }
.bid-fields label { display: flex; flex-direction: column; font-size: 12px; color: var(--slate); gap: 4px; }
.bid-fields input { font-size: 13px; padding: 7px 8px; border: 1px solid var(--line); border-radius: 6px; }
.bid-fields input:focus, #bid-select:focus { outline: 2px solid var(--volt); outline-offset: 1px; }
.bid-notes-field { width: 100%; margin-top: 12px; }
.bid-notes-field textarea {
  width: 100%; min-height: 50px; font-size: 13px; font-family: var(--font-body);
  padding: 8px 10px; border: 1px solid var(--line); border-radius: 6px; resize: vertical;
}
#bid-select { font-size: 13px; padding: 8px; border-radius: 6px; border: 1px solid var(--line); }

.totals { display: flex; gap: 24px; margin-top: 14px; padding: 14px 18px; background: var(--graphite-2); color: #fff; border-radius: 10px; font-size: 14px; box-shadow: var(--shadow); }
.totals strong { color: var(--volt-bright); }

.stats-bar { display: flex; gap: 18px; margin-bottom: 10px; font-size: 12px; color: var(--slate); }
.stats-bar strong { color: var(--ink); font-weight: 600; }

.grid-btn { font-size: 12px; padding: 5px 10px; border-radius: 5px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.grid-btn:hover { background: var(--volt); border-color: var(--volt); }

/* ---------- empty states ---------- */

.empty-state { text-align: center; padding: 40px 20px; color: var(--slate); }
.empty-state strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 6px; }
.empty-state p { margin: 0; font-size: 13px; max-width: 360px; margin-left: auto; margin-right: auto; }

/* ---------- modals ---------- */

.modal-backdrop {
  position: fixed; inset: 0; background: rgba(15,18,15,0.55);
  display: flex; align-items: center; justify-content: center; z-index: 100;
  animation: fade-in .15s ease-out;
}
.modal-backdrop.hidden { display: none; }
.modal {
  background: #fff; border-radius: 12px; padding: 26px; width: 560px; max-width: 92vw;
  max-height: 86vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: pop-in .18s ease-out;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop-in { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }

.modal h2 { margin-top: 0; font-family: var(--font-display); font-size: 18px; }
.complexity-q { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.complexity-q label { font-size: 13px; flex: 1; }
.complexity-q select { font-size: 13px; padding: 6px; border-radius: 6px; border: 1px solid var(--line); min-width: 220px; }
.complexity-result-box { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; margin: 12px 0; }
.complexity-result-box.ai { background: #f1fbf0; border-color: var(--volt); }
.complexity-result-box strong { display: flex; align-items: center; gap: 6px; }
.complexity-result-box pre { white-space: pre-wrap; font-family: var(--font-body); font-size: 13px; margin: 8px 0 0; color: var(--slate); }
#complexity-notes { width: 100%; min-height: 60px; margin-top: 10px; padding: 8px; border-radius: 6px; border: 1px solid var(--line); font-family: var(--font-body); resize: vertical; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 18px; }
#modal-settings label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; margin: 12px 0; }
#modal-settings input { padding: 8px; border-radius: 6px; border: 1px solid var(--line); }

.ai-status-badge { display: flex; align-items: flex-start; gap: 8px; padding: 12px 14px; border-radius: 8px; font-size: 13px; line-height: 1.5; }
.ai-status-badge.ready { background: #f1fbf0; color: var(--volt-deep); border: 1px solid var(--volt); }
.ai-status-badge.not-ready { background: var(--paper); color: var(--slate); border: 1px solid var(--line); }
.ai-status-badge svg { margin-top: 2px; }

.settings-advanced { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 12px; }
.settings-advanced summary { cursor: pointer; font-size: 13px; color: var(--slate); }
.settings-help { font-size: 12px; color: var(--slate); margin: 10px 0; }

/* ---------- welcome modal ---------- */

.welcome-modal { text-align: left; }
.welcome-mark {
  width: 44px; height: 44px; border-radius: 10px; background: var(--volt); color: var(--graphite);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-weight: 700; font-size: 15px; margin-bottom: 14px;
}
.welcome-steps { padding-left: 20px; margin: 10px 0; font-size: 14px; line-height: 1.7; }
.welcome-note { font-size: 12px; color: var(--slate); background: var(--paper); border-radius: 8px; padding: 10px 12px; }
.welcome-actions { justify-content: space-between; align-items: center; }

/* ---------- toasts ---------- */

#toast-container {
  position: fixed; bottom: 20px; right: 20px; z-index: 300;
  display: flex; flex-direction: column; gap: 8px; max-width: 340px;
}
.toast {
  display: flex; align-items: center; gap: 8px;
  background: var(--graphite); color: #fff; padding: 11px 14px; border-radius: 8px;
  font-size: 13px; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(6px); transition: opacity .2s, transform .2s;
}
.toast.show { opacity: 1; transform: none; }
.toast-icon { color: var(--volt-bright); display: flex; }
.toast.toast-error { background: #3a1f1c; }
.toast.toast-error .toast-icon { color: #ff8a75; }

/* ---------- spinner ---------- */

.spinner {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.15); border-top-color: currentColor;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- guided tour ---------- */

.tour-backdrop {
  position: fixed; inset: 0; background: rgba(15,18,15,0.55); z-index: 200; cursor: pointer;
}
.tour-backdrop.hidden { display: none; }
.tour-highlight {
  position: fixed; z-index: 201; border-radius: 10px;
  box-shadow: 0 0 0 4px var(--volt), 0 0 0 6000px rgba(15,18,15,0.55);
  pointer-events: none; transition: top .2s ease, left .2s ease, width .2s ease, height .2s ease;
}
.tour-highlight.hidden { display: none; }
.tour-tooltip {
  position: fixed; z-index: 202; background: #fff; border-radius: 12px; padding: 18px 20px;
  width: 320px; max-width: calc(100vw - 32px); box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: top .2s ease, left .2s ease;
}
.tour-tooltip.hidden { display: none; }
.tour-step-count { font-family: var(--font-display); font-size: 11px; color: var(--volt-deep); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.tour-tooltip h3 { margin: 0 0 8px; font-size: 15px; }
.tour-tooltip p { margin: 0; font-size: 13px; color: var(--slate); line-height: 1.55; }
.tour-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.tour-nav { display: flex; gap: 8px; }

/* ---------- item cards (Bid Builder) ---------- */

#bid-items-list { display: flex; flex-direction: column; gap: 10px; }
.item-card {
  display: flex; align-items: center; gap: 18px; padding: 14px 16px;
}
.item-card-clin {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line); color: var(--slate);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}
.item-card-main { flex: 1; min-width: 0; }
.item-card-title { font-weight: 600; font-size: 14px; }
.item-card-meta { font-size: 12px; color: var(--slate); margin-top: 2px; }
.item-card-numbers { display: flex; gap: 22px; }
.item-card-numbers > div { display: flex; flex-direction: column; align-items: flex-end; font-size: 12px; color: var(--slate); }
.item-card-numbers strong { font-size: 15px; color: var(--ink); }
.item-card-reorder { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.icon-btn {
  padding: 3px; border-radius: 4px; border: 1px solid var(--line); background: var(--paper);
  cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--slate);
}
.icon-btn:hover { border-color: var(--slate); color: var(--ink); }
.icon-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.item-card-actions { display: flex; gap: 8px; flex-shrink: 0; }
.grid-btn.danger:hover { background: var(--danger); border-color: var(--danger); color: #fff; }

/* ---------- input affixes ($, %, /hr) ---------- */

.input-affix { position: relative; display: flex; }
.input-affix input { width: 100%; }
.input-affix-prefix, .input-affix-suffix {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--slate); font-size: 13px; pointer-events: none;
}
.input-affix-prefix { left: 11px; }
.input-affix-suffix { right: 11px; }
.input-affix.prefix input { padding-left: 24px !important; }
.input-affix.suffix input { padding-right: 30px !important; }

/* ---------- item wizard ---------- */

.wizard-modal { width: 620px; }
.wizard-header { margin-bottom: 16px; }
.wizard-header h2 { margin: 0 0 10px; }

.wizard-progress { display: flex; align-items: center; gap: 6px; }
.wizard-progress-step { display: flex; align-items: center; gap: 6px; flex: 1; }
.wizard-progress-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--paper); border: 1px solid var(--line); color: var(--slate);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; transition: background .15s, border-color .15s, color .15s;
}
.wizard-progress-dot.done { background: var(--volt); border-color: var(--volt); color: var(--graphite); }
.wizard-progress-dot.active { border-color: var(--volt); color: var(--volt-deep); background: #fff; box-shadow: 0 0 0 3px rgba(107,227,107,0.25); }
.wizard-progress-line { flex: 1; height: 2px; background: var(--line); }
.wizard-progress-line.done { background: var(--volt); }
.wizard-step-title { font-size: 16px; font-weight: 600; margin: 14px 0 16px; }
.wizard-step .stacked-label { margin-bottom: 14px; }
.wizard-step .stacked-label input { font-size: 14px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 7px; width: 100%; }
.field-error { color: var(--danger); font-size: 12px; margin-top: 5px; }
input.input-error, .input-affix.input-error input { border-color: var(--danger) !important; }
.wizard-hint { font-size: 12px; color: var(--slate); margin: 0 0 10px; }
.wizard-suggestion-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #f1fbf0; border: 1px solid var(--volt); border-radius: 8px; padding: 12px 14px;
  font-size: 13px; margin-bottom: 12px;
}
.wizard-estimate-help { margin: -4px 0 14px; font-size: 13px; }
.wizard-estimate-help summary { cursor: pointer; color: var(--slate); padding: 4px 0; }
.wizard-buildup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.wizard-buildup-grid label { display: flex; flex-direction: column; font-size: 12px; color: var(--slate); gap: 4px; }
.wizard-buildup-grid input { font-size: 13px; padding: 7px 8px; border: 1px solid var(--line); border-radius: 6px; }
.wizard-buildup-total { font-size: 13px; font-weight: 600; margin: 10px 0; }
.wizard-lc-block { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; margin-bottom: 16px; }
.wizard-toggle { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; cursor: pointer; }
.wizard-toggle input { margin-top: 2px; }
#wizard-lc-slope { margin-top: 8px; font-size: 13px; padding: 6px; border-radius: 6px; border: 1px solid var(--line); }
#wizard-ai-btn { margin-top: 10px; }
.wizard-receipt { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 6px 16px; }
.wizard-receipt-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.wizard-receipt-row:last-child { border-bottom: none; }
.wizard-receipt-row.emphasize { font-weight: 700; font-size: 15px; }
.wizard-margin-field { margin-top: 14px; max-width: 180px; }
.wizard-margin-field input { font-size: 13px; padding: 7px 8px; border: 1px solid var(--line); border-radius: 6px; width: 100%; }
.wizard-nav { display: flex; align-items: center; justify-content: space-between; }

/* ---------- tabulator ---------- */

.tabulator { font-size: 13px; border: none; border-radius: 8px; overflow: hidden; }
.tabulator-row.tabulator-selected { background: rgba(107,227,107,0.18) !important; }
.tabulator-row:hover { background: rgba(20,23,26,0.03); }
.tabulator-col { background: var(--paper) !important; }

/* ---------- responsive ---------- */

@media (max-width: 720px) {
  .topbar { flex-wrap: wrap; gap: 10px; }
  main { padding: 14px; }
  .tour-tooltip { width: calc(100vw - 32px); }
  .item-card { flex-wrap: wrap; }
  .item-card-numbers { flex: 1; justify-content: space-between; }
  .wizard-buildup-grid { grid-template-columns: 1fr; }
}

/* ---------- SOW import ---------- */

.sow-modal { width: 640px; }
.sow-modal textarea { width: 100%; min-height: 160px; font-size: 13px; font-family: var(--font-body); padding: 8px 10px; border: 1px solid var(--line); border-radius: 6px; resize: vertical; margin-top: 10px; }
.wizard-subhead-sow { font-size: 13px; margin: 16px 0 8px; color: var(--slate); text-transform: uppercase; letter-spacing: .03em; }
.sow-review-row { display: grid; grid-template-columns: 20px 1.4fr 1fr 70px; gap: 8px; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--line); }
.sow-review-row:has(.sow-req-check) { grid-template-columns: 20px 100px 1fr; }
.sow-review-row input[type="text"], .sow-review-row input[type="number"] { font-size: 13px; padding: 6px 7px; border: 1px solid var(--line); border-radius: 5px; width: 100%; }

/* ---------- proposal tab ---------- */

.proposal-section { padding: 16px 18px; margin-bottom: 14px; }
.proposal-section h3 { margin: 0 0 10px; font-size: 15px; }
.proposal-section textarea {
  width: 100%; min-height: 80px; font-size: 13px; font-family: var(--font-body);
  padding: 8px 10px; border: 1px solid var(--line); border-radius: 6px; resize: vertical; margin-bottom: 10px;
}

.data-table { width: 100%; border-collapse: collapse; margin-bottom: 12px; font-size: 13px; }
.data-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .03em; color: var(--slate); padding: 6px 8px; border-bottom: 1px solid var(--line); }
.data-table td { padding: 4px 6px; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table input[type="text"], .data-table input[type="date"], .data-table select {
  width: 100%; font-size: 13px; padding: 6px 7px; border: 1px solid var(--line); border-radius: 5px;
}
.data-table .col-actions { width: 36px; text-align: center; }
.data-table .row-delete { background: none; border: none; color: var(--slate); cursor: pointer; padding: 4px; display: flex; }
.data-table .row-delete:hover { color: var(--danger); }
.data-table-empty { color: var(--slate); font-size: 13px; padding: 10px 4px; }

/* ---------- print proposal ---------- */

.print-only { display: none; }

.proposal-header { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 2px solid var(--ink); padding-bottom: 14px; margin-bottom: 18px; }
.proposal-brand { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.proposal-meta { text-align: right; font-size: 13px; line-height: 1.6; }
.proposal-meta .label { color: var(--slate); }
.proposal-notes { font-size: 13px; color: var(--slate); margin: 0 0 16px; white-space: pre-wrap; }
.proposal-section-title { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; border-bottom: 1px solid var(--line); padding-bottom: 6px; margin: 22px 0 12px; }
.proposal-boe-item { margin-bottom: 10px; font-size: 13px; }
.proposal-boe-item strong { display: block; margin-bottom: 2px; }
.proposal-boe-item p { margin: 0; color: var(--slate); }
.proposal-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 18px; }
.proposal-table th, .proposal-table td { border-bottom: 1px solid var(--line); padding: 8px 10px; text-align: left; }
.proposal-table th { text-transform: uppercase; font-size: 11px; letter-spacing: .03em; color: var(--slate); }
.proposal-table td.num, .proposal-table th.num { text-align: right; }
.proposal-totals { display: flex; justify-content: flex-end; }
.proposal-totals table { border-collapse: collapse; font-size: 13px; }
.proposal-totals td { padding: 5px 10px; }
.proposal-totals tr.grand td { font-weight: 700; font-size: 16px; border-top: 2px solid var(--ink); padding-top: 10px; }

/* ---------- landing page ---------- */

a.brand { text-decoration: none; color: #fff; }
a.tour-btn-primary { text-decoration: none; display: inline-flex; }
.landing-nav-cta { padding: 8px 16px; }

.landing { padding: 0; max-width: none; }

.hero {
  max-width: 760px; margin: 0 auto; padding: 72px 24px 56px; text-align: center;
}
.hero h1 { font-family: var(--font-display); font-size: 34px; line-height: 1.25; margin: 0 0 18px; }
.hero-sub { font-size: 16px; color: var(--slate); line-height: 1.6; margin: 0 auto 28px; max-width: 620px; }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-cta { font-size: 15px; padding: 12px 26px; font-weight: 600; }
.hero-note { font-size: 12px; color: var(--slate); }

.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 920px; margin: 0 auto 64px; padding: 0 24px;
}
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 22px 24px;
}
.feature-card h3 { margin: 0 0 8px; font-size: 15px; }
.feature-card p { margin: 0; font-size: 13px; color: var(--slate); line-height: 1.6; }

.how-it-works {
  background: var(--graphite); color: #fff; padding: 56px 24px;
}
.how-it-works h2 { text-align: center; font-family: var(--font-display); font-size: 22px; margin: 0 0 36px; }
.how-steps { list-style: none; margin: 0 auto; padding: 0; max-width: 820px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-steps li { display: flex; gap: 12px; align-items: flex-start; }
.how-step-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--volt); color: var(--graphite);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 13px;
}
.how-steps strong { display: block; font-size: 14px; margin-bottom: 4px; }
.how-steps p { margin: 0; font-size: 13px; color: #c9cdc9; line-height: 1.55; }

.landing-footer-cta { text-align: center; padding: 64px 24px; }
.landing-footer-cta h2 { font-family: var(--font-display); font-size: 22px; margin: 0 0 10px; }
.landing-footer-cta p { color: var(--slate); margin: 0 0 22px; }

.landing-footer { text-align: center; padding: 22px; font-size: 12px; color: var(--slate); border-top: 1px solid var(--line); }

@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
}

@media print {
  body * { visibility: hidden; }
  #print-proposal, #print-proposal * { visibility: visible; }
  #print-proposal.print-only { display: block; position: absolute; top: 0; left: 0; width: 100%; padding: 20px; }
}
