/* /small-business/ — SMB audience page. All rules scoped to classes (no bare
   element selectors — see CLAUDE.md). The hero/breadcrumb/section/button shell
   below mirrors the other audience pages' sidecars (startup/midmarket) — these
   classes are per-page, not global; @keyframes fadeUp IS global. */

/* ── Page shell (mirrors startup sidecar) ─────────────────────────────── */
.breadcrumb-wrap {
	padding-top: 96px;
}
.breadcrumb {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 48px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--mid);
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.hero-section {
	background: var(--white);
	padding-top: 0;
}
.hero {
	padding: 32px 48px 80px;
	max-width: 1100px;
	margin: 0 auto;
}
.hero-h1 {
	font-size: clamp(40px, 5vw, 68px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--black);
	margin-bottom: 28px;
	max-width: 640px;
	opacity: 0;
	animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-sub {
	font-size: 19px;
	line-height: 1.75;
	color: var(--mid);
	margin-bottom: 44px;
	max-width: 560px;
	opacity: 0;
	animation: fadeUp 0.8s ease 0.35s forwards;
}
.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
	opacity: 0;
	animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-trial-note {
	font-size: 13px;
	color: var(--mid);
}
.btn-primary-inline {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	background: var(--teal);
	text-decoration: none;
	padding: 12px 26px;
	border-radius: 100px;
	transition:
		background 0.18s,
		transform 0.12s;
	white-space: nowrap;
}
.btn-primary-inline:hover {
	background: var(--teal-mid);
	transform: translateY(-2px);
}
.btn-primary-inline:focus-visible {
	outline: 2px solid var(--teal);
	outline-offset: 3px;
}
.section-tag {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 16px;
}
.section-h2 {
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--black);
}
@media (max-width: 640px) {
	.breadcrumb {
		padding: 0 24px;
	}
	.hero {
		padding: 32px 24px 72px;
	}
}

.smb-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ── Five-minute timeline ─────────────────────────────────────────────── */
.smb-timeline-section {
	padding: 88px 0 72px;
	background: linear-gradient(180deg, #f7faf9 0%, #ffffff 100%);
}
.smb-timeline {
	margin-top: 44px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}
.smb-step {
	position: relative;
	background: var(--white);
	border: 1px solid var(--light);
	border-radius: 14px;
	padding: 22px 20px 24px;
}
.smb-step-time {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: var(--white);
	background: var(--teal);
	border-radius: 100px;
	padding: 4px 12px;
	margin-bottom: 14px;
	font-variant-numeric: tabular-nums;
}
.smb-step-title {
	font-size: 16px;
	font-weight: 750;
	color: var(--ink);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}
.smb-step-body {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--mid);
}

/* ── Feature grid ─────────────────────────────────────────────────────── */
.smb-features-section {
	padding: 80px 0;
}
.smb-features {
	margin-top: 44px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.smb-feature {
	background: var(--white);
	border: 1px solid var(--light);
	border-left: 3px solid var(--teal);
	border-radius: 12px;
	padding: 24px 22px;
}
.smb-feature-title {
	font-size: 16.5px;
	font-weight: 750;
	color: var(--ink);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}
.smb-feature-body {
	font-size: 14px;
	line-height: 1.65;
	color: var(--mid);
}

/* ── Under the hood ───────────────────────────────────────────────────── */
.smb-tech-section {
	padding: 80px 0;
	background: #0f1117;
}
.smb-tech {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 56px;
	align-items: start;
}
.smb-tech-section .section-tag {
	color: #35c2ad;
}
.smb-tech-section .section-h2 {
	color: var(--white);
}
.smb-tech-lead {
	margin-top: 18px;
	font-size: 15.5px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
}
.smb-tech-quote {
	margin-top: 26px;
	padding: 16px 20px;
	border-left: 3px solid var(--teal);
	background: rgba(255, 255, 255, 0.05);
	border-radius: 0 10px 10px 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: -0.01em;
}
.smb-tech-list {
	display: grid;
	gap: 14px;
}
.smb-tech-item {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 12px;
	padding: 16px 18px;
}
.smb-tech-item strong {
	display: block;
	font-size: 14.5px;
	font-weight: 750;
	color: var(--white);
	margin-bottom: 4px;
}
.smb-tech-item span {
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.6);
}

/* ── Pricing strip ────────────────────────────────────────────────────── */
.smb-pricing-section {
	padding: 56px 0;
	border-bottom: 1px solid var(--light);
}
.smb-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: center;
}
.smb-price-item strong {
	display: block;
	font-size: 21px;
	font-weight: 800;
	color: var(--teal);
	letter-spacing: -0.02em;
	margin-bottom: 4px;
}
.smb-price-item span {
	font-size: 13.5px;
	color: var(--mid);
}

/* ── CTA band ─────────────────────────────────────────────────────────── */
.smb-cta-section {
	padding: 88px 0 100px;
	text-align: center;
}
.smb-cta-h2 {
	font-size: clamp(28px, 4.2vw, 42px);
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--ink);
	margin-bottom: 12px;
}
.smb-cta-sub {
	font-size: 15.5px;
	color: var(--mid);
	margin-bottom: 28px;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.smb-timeline {
		grid-template-columns: repeat(2, 1fr);
	}
	.smb-features {
		grid-template-columns: repeat(2, 1fr);
	}
	.smb-tech {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}
@media (max-width: 640px) {
	.smb-timeline {
		grid-template-columns: 1fr;
	}
	.smb-features {
		grid-template-columns: 1fr;
	}
	.smb-pricing {
		grid-template-columns: 1fr;
		gap: 26px;
	}
}
