/* =============================================================================
 * BonusSolutions — Invoice Pilot marketing theme
 * v1.0.0
 *
 * Color discipline: same palette as the product dashboard so visitors who
 * convert see visual continuity. Type: Inter via system stack so we stay
 * fast and free of external fonts.
 * ========================================================================== */

:root {
	--bg:        #ffffff;
	--bg-alt:    #f7f8fa;
	--bg-deep:   #f1f2f5;
	--surface:   #ffffff;
	--border:    #e5e7eb;
	--border-strong: #d1d5db;

	--text:      #0f172a;
	--text-soft: #475569;
	--text-mute: #94a3b8;

	--brand:     #7c3aed;        /* violet — primary brand */
	--brand-2:   #2271b1;        /* blue gradient partner */
	--brand-deep:#5b21b6;
	--brand-bg:  #faf5ff;

	--in:        #10b981;
	--in-bg:     #ecfdf5;
	--out:       #ef4444;
	--out-bg:    #fef2f2;
	--warn:      #f59e0b;
	--warn-bg:   #fffbeb;
	--info:      #2563eb;
	--info-bg:   #eff6ff;

	--radius:    10px;
	--radius-lg: 16px;

	--shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
	--shadow-md: 0 4px 6px -1px rgba(15,23,42,.07), 0 2px 4px -2px rgba(15,23,42,.05);
	--shadow-lg: 0 10px 25px -3px rgba(15,23,42,.10), 0 4px 6px -4px rgba(15,23,42,.05);
	--shadow-xl: 0 20px 40px -10px rgba(15,23,42,.18);

	--font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.55;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }

/* -----------------------------------------------------------------------------
 * Layout
 * -------------------------------------------------------------------------- */

.bs-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}
.bs-main { display: block; }

.bs-section { padding: 80px 0; }
.bs-section-alt { background: var(--bg-alt); }
.bs-section-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 56px;
}
.bs-section-head h2 {
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
}
.bs-section-head p {
	margin: 0;
	color: var(--text-soft);
	font-size: 17px;
}

/* Page hero (used by Pricing / Features) */
.bs-page-hero {
	padding: 88px 0 56px;
	background: linear-gradient(180deg, var(--brand-bg) 0%, transparent 100%);
	text-align: center;
}
.bs-page-hero .bs-h1 { margin-bottom: 16px; }

/* -----------------------------------------------------------------------------
 * Header
 * -------------------------------------------------------------------------- */

.bs-header {
	position: sticky;
	top: 0;
	background: rgba(255,255,255,.85);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--border);
	z-index: 50;
}
.bs-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 72px;
}
.bs-wordmark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text);
	text-decoration: none;
	line-height: 1;
}
.bs-wordmark:hover { text-decoration: none; }
.bs-wordmark-mark {
	width: 32px;
	height: 32px;
	display: inline-grid;
	place-items: center;
	flex-shrink: 0;
	transition: transform .2s ease;
}
.bs-wordmark:hover .bs-wordmark-mark {
	transform: rotate(-6deg) scale(1.05);
}
.bs-wordmark-mark svg {
	width: 100%;
	height: 100%;
	display: block;
	filter: drop-shadow(0 1px 2px rgba(124, 58, 237, .15));
}
.bs-wordmark-text {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.02em;
	display: inline-flex;
	white-space: nowrap;
}
.bs-wordmark-bonus     { font-weight: 800; color: var(--text); }
.bs-wordmark-solutions { font-weight: 500; color: var(--text-soft); }

/* Dark variant — used in the footer where the background is var(--text). */
.bs-wordmark-on-dark .bs-wordmark-bonus     { color: #ffffff; }
.bs-wordmark-on-dark .bs-wordmark-solutions { color: rgba(255,255,255,.6); }
.bs-wordmark-on-dark .bs-wordmark-mark svg {
	filter: drop-shadow(0 1px 2px rgba(124, 58, 237, .35));
}

@media (max-width: 480px) {
	.bs-wordmark-text { font-size: 17px; }
	.bs-wordmark-mark { width: 28px; height: 28px; }
}
.bs-nav-list {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.bs-nav-list a {
	color: var(--text-soft);
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
	transition: color .15s;
}
.bs-nav-list a:hover { color: var(--text); }
.bs-header-cta { display: flex; gap: 12px; }
@media (max-width: 720px) {
	.bs-nav { display: none; }
}

/* -----------------------------------------------------------------------------
 * Buttons
 * -------------------------------------------------------------------------- */

.bs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
	white-space: nowrap;
}
.bs-btn:hover { text-decoration: none; transform: translateY(-1px); }
.bs-btn-primary {
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
	color: #ffffff;
	box-shadow: var(--shadow-sm);
}
.bs-btn-primary:hover { color: #fff; box-shadow: var(--shadow-md); }
.bs-btn-ghost {
	background: var(--surface);
	color: var(--text);
	border-color: var(--border-strong);
}
.bs-btn-ghost:hover { background: var(--bg-alt); }
.bs-btn-lg { padding: 14px 26px; font-size: 15px; }
.bs-btn-block { width: 100%; }

/* -----------------------------------------------------------------------------
 * Typography
 * -------------------------------------------------------------------------- */

.bs-h1 {
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.025em;
	margin: 0 0 20px;
}
.bs-accent {
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.bs-lede {
	font-size: clamp(17px, 2vw, 20px);
	color: var(--text-soft);
	margin: 0 0 28px;
	line-height: 1.55;
}

.bs-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: var(--brand-bg);
	color: var(--brand-deep);
	font-size: 13px;
	font-weight: 600;
	border-radius: 999px;
	margin-bottom: 20px;
}
.bs-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--brand);
	box-shadow: 0 0 0 4px rgba(124, 58, 237, .15);
	animation: bs-pulse 2s infinite;
}
@keyframes bs-pulse {
	0%   { box-shadow: 0 0 0 0  rgba(124,58,237,.4); }
	70%  { box-shadow: 0 0 0 8px rgba(124,58,237,0); }
	100% { box-shadow: 0 0 0 0  rgba(124,58,237,0); }
}

/* -----------------------------------------------------------------------------
 * Hero
 * -------------------------------------------------------------------------- */

.bs-hero {
	padding: 80px 0 60px;
	background:
		radial-gradient(ellipse at 80% -10%, rgba(124,58,237,.10) 0%, transparent 55%),
		radial-gradient(ellipse at -5% 30%, rgba(34,113,177,.08) 0%, transparent 50%),
		var(--bg);
	overflow: hidden;
}
.bs-hero-inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 60px;
	align-items: center;
}
@media (max-width: 960px) {
	.bs-hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.bs-hero-visual { order: -1; }
}
.bs-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 24px 0 16px;
}
.bs-hero-fineprint {
	margin: 0;
	font-size: 13px;
	color: var(--text-mute);
}
.bs-mockup {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 30px 60px rgba(15,23,42,.18));
}

/* -----------------------------------------------------------------------------
 * Trust strip
 * -------------------------------------------------------------------------- */

.bs-trust {
	padding: 36px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--bg-alt);
}
.bs-trust-label {
	margin: 0 0 12px;
	text-align: center;
	color: var(--text-mute);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.bs-trust-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 40px;
	color: var(--text-soft);
	font-size: 14px;
	font-weight: 500;
}

/* -----------------------------------------------------------------------------
 * Features grid
 * -------------------------------------------------------------------------- */

.bs-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 900px) { .bs-features { grid-template-columns: 1fr; } }
.bs-feature {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.bs-feature:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	border-color: var(--border-strong);
}
.bs-feature-icon {
	width: 48px; height: 48px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 24px;
	background: var(--bg-alt);
	margin-bottom: 20px;
}
.bs-feature-in   { background: var(--in-bg); }
.bs-feature-ai   { background: var(--brand-bg); }
.bs-feature-flow { background: var(--info-bg); }
.bs-feature h3 {
	margin: 0 0 8px;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.bs-feature p {
	margin: 0;
	color: var(--text-soft);
	font-size: 15px;
	line-height: 1.6;
}

/* Detailed feature list (Features page) */
.bs-feature-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 820px;
	margin: 0 auto;
}
.bs-feature-row {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 20px;
	padding: 24px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: box-shadow .15s, border-color .15s;
}
.bs-feature-row:hover {
	box-shadow: var(--shadow-sm);
	border-color: var(--border-strong);
}
.bs-feature-row-icon {
	width: 56px; height: 56px;
	border-radius: 12px;
	background: var(--brand-bg);
	display: grid;
	place-items: center;
	font-size: 26px;
}
.bs-feature-row-text h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
}
.bs-feature-row-text p {
	margin: 0;
	color: var(--text-soft);
	font-size: 15px;
	line-height: 1.6;
}

/* -----------------------------------------------------------------------------
 * How it works
 * -------------------------------------------------------------------------- */

.bs-flow-illustration {
	max-width: 720px;
	margin: 0 auto 56px;
}
.bs-flow {
	width: 100%;
	height: auto;
}
.bs-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 900px) { .bs-steps { grid-template-columns: 1fr; } }
.bs-step {
	text-align: center;
}
.bs-step-num {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
	color: #fff;
	font-weight: 700;
	display: grid;
	place-items: center;
	margin: 0 auto 16px;
	box-shadow: var(--shadow-md);
}
.bs-step h3 {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
}
.bs-step p {
	margin: 0;
	color: var(--text-soft);
	font-size: 15px;
	max-width: 280px;
	margin-inline: auto;
}

/* -----------------------------------------------------------------------------
 * Pricing
 * -------------------------------------------------------------------------- */

.bs-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
	align-items: stretch;
}
@media (max-width: 900px) { .bs-pricing { grid-template-columns: 1fr; } }

.bs-tier {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	transition: transform .15s ease, box-shadow .2s ease;
}
.bs-tier:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}
.bs-tier.is-highlight {
	border: 2px solid var(--brand);
	box-shadow: var(--shadow-lg), 0 0 0 1px rgba(124,58,237,.06);
	transform: scale(1.02);
}
.bs-tier.is-highlight:hover { transform: scale(1.02) translateY(-2px); }
.bs-tier-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 999px;
}
.bs-tier-name {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 700;
	color: var(--text-soft);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.bs-tier-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 8px;
}
.bs-tier-amount {
	font-size: 42px;
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--text);
}
.bs-tier-period {
	font-size: 14px;
	color: var(--text-mute);
}
.bs-tier-tagline {
	margin: 0 0 24px;
	color: var(--text-soft);
	font-size: 14px;
	line-height: 1.5;
}
.bs-tier-features {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.bs-tier-features li {
	font-size: 14px;
	color: var(--text);
	padding-left: 26px;
	position: relative;
	line-height: 1.5;
}
.bs-tier-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--in);
	font-weight: 800;
}
.bs-tier-cta { width: 100%; }

/* -----------------------------------------------------------------------------
 * FAQ
 * -------------------------------------------------------------------------- */

.bs-faq-container { max-width: 820px; }
.bs-faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.bs-faq-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px 24px;
	transition: border-color .15s;
}
.bs-faq-item[open] { border-color: var(--border-strong); }
.bs-faq-item summary {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.bs-faq-item summary::after {
	content: "+";
	font-size: 22px;
	color: var(--text-mute);
	font-weight: 400;
	transition: transform .2s;
}
.bs-faq-item[open] summary::after { transform: rotate(45deg); }
.bs-faq-item summary::-webkit-details-marker { display: none; }
.bs-faq-item p {
	margin: 12px 0 0;
	color: var(--text-soft);
	font-size: 15px;
	line-height: 1.6;
}

/* -----------------------------------------------------------------------------
 * Footer CTA
 * -------------------------------------------------------------------------- */

.bs-footer-cta {
	padding: 80px 24px;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(124,58,237,.18) 0%, transparent 60%),
		linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
	color: #fff;
	text-align: center;
}
.bs-footer-cta h2 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
	color: #fff;
}
.bs-footer-cta p {
	margin: 0 0 28px;
	color: rgba(255,255,255,.78);
	font-size: 17px;
}
.bs-footer-cta .bs-btn-ghost {
	background: transparent;
	border-color: rgba(255,255,255,.3);
	color: #fff;
}
.bs-footer-cta .bs-btn-ghost:hover { background: rgba(255,255,255,.08); }
.bs-cta-row {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* -----------------------------------------------------------------------------
 * Footer
 * -------------------------------------------------------------------------- */

.bs-footer {
	background: var(--text);
	color: rgba(255,255,255,.7);
	padding: 56px 0 0;
}
.bs-footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
}
@media (max-width: 720px) {
	.bs-footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
.bs-footer .bs-wordmark { color: #fff; }
.bs-footer-tagline {
	margin: 12px 0 0;
	color: rgba(255,255,255,.55);
	font-size: 14px;
	max-width: 320px;
}
.bs-footer-cols { display: contents; }
.bs-footer-cols h4 {
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 16px;
}
.bs-footer-cols ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.bs-footer-cols a {
	color: rgba(255,255,255,.65);
	font-size: 14px;
	text-decoration: none;
}
.bs-footer-cols a:hover { color: #fff; text-decoration: underline; }
.bs-footer-bar {
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 20px 0;
}
.bs-footer-bar small {
	color: rgba(255,255,255,.45);
	font-size: 12px;
}

/* -----------------------------------------------------------------------------
 * Form pages (signup / demo / thanks)
 * -------------------------------------------------------------------------- */

.bs-form-page {
	min-height: calc(100vh - 72px);
	padding: 60px 0;
	background:
		radial-gradient(ellipse at 0% 0%, rgba(124,58,237,.06) 0%, transparent 50%),
		radial-gradient(ellipse at 100% 100%, rgba(16,185,129,.05) 0%, transparent 50%),
		var(--bg);
}
.bs-form-container {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: start;
	max-width: 1100px;
}
@media (max-width: 900px) {
	.bs-form-container { grid-template-columns: 1fr; gap: 32px; }
}
.bs-form-back {
	display: inline-block;
	color: var(--text-mute);
	font-size: 14px;
	text-decoration: none;
	margin-bottom: 24px;
}
.bs-form-back:hover { color: var(--text); text-decoration: none; }
.bs-form-bullets {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.bs-form-bullets li {
	color: var(--text-soft);
	font-size: 15px;
}

.bs-form-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px;
	box-shadow: var(--shadow-md);
}
@media (max-width: 600px) { .bs-form-card { padding: 24px; } }

.bs-form-error {
	background: var(--out-bg);
	color: #7f1d1d;
	border: 1px solid #fecaca;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 20px;
	font-size: 14px;
}

.bs-field { margin-bottom: 18px; }
.bs-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 6px;
}
.bs-field input,
.bs-field textarea {
	width: 100%;
	padding: 11px 14px;
	font-size: 15px;
	font-family: inherit;
	color: var(--text);
	background: var(--bg);
	border: 1px solid var(--border-strong);
	border-radius: 8px;
	transition: border-color .15s, box-shadow .15s, background .15s;
}
.bs-field input:focus,
.bs-field textarea:focus {
	outline: none;
	border-color: var(--brand);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(124,58,237,.12);
}
.bs-field textarea { resize: vertical; min-height: 96px; }
.bs-required { color: var(--out); }

.bs-plan-pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	background: var(--brand-bg);
	color: var(--brand-deep);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
}

.bs-honeypot {
	position: absolute !important;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.bs-form-fineprint {
	margin: 16px 0 0;
	color: var(--text-mute);
	font-size: 13px;
	text-align: center;
}

/* Thank-you page */
.bs-thanks {
	max-width: 600px;
	margin: 60px auto;
	text-align: center;
}
.bs-thanks-icon {
	width: 72px; height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--in) 0%, #34d399 100%);
	color: #fff;
	font-size: 36px;
	font-weight: 800;
	display: grid;
	place-items: center;
	margin: 0 auto 24px;
	box-shadow: var(--shadow-lg);
}
.bs-thanks-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 32px;
	flex-wrap: wrap;
}

/* -----------------------------------------------------------------------------
 * Prose (WordPress editor content fallback)
 * -------------------------------------------------------------------------- */

.bs-prose {
	max-width: 720px;
	margin: 0 auto;
	color: var(--text);
	font-size: 17px;
	line-height: 1.7;
}
.bs-prose h2 { font-size: 28px; font-weight: 700; margin: 40px 0 16px; }
.bs-prose h3 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; }
.bs-prose p  { margin: 0 0 18px; }
.bs-prose a  { color: var(--brand-deep); text-decoration: underline; }
.bs-prose ul, .bs-prose ol { margin: 0 0 18px; padding-left: 24px; }
.bs-prose li { margin-bottom: 6px; }
.bs-prose code {
	background: var(--bg-deep);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 14px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
