/* Tessa sales page draft (v2) — components layered on top of tessa-product.css.
   All selectors nest inside .tessa-product so the tp-* custom properties apply. */

/* Hero trust chips */

.tessa-product .ts-chips {
	margin: 26px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	list-style: none;
}

.tessa-product .ts-chips li {
	padding: 5px 10px;
	border: 1px solid var(--tp-line);
	border-radius: 3px;
	font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--tp-muted);
	background: #fff;
}

/* Proof band under hero */

.tessa-product .ts-proof-band {
	padding: 40px 0 36px;
	border-bottom: 1px solid var(--tp-line);
	background: #fff;
}

.tessa-product .ts-proof-grid {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
}

.tessa-product .ts-proof-grid > div {
	min-width: 0;
	padding-left: 16px;
	border-left: 2px solid var(--tp-blue);
}

.tessa-product .ts-proof-grid dt {
	font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
	font-size: 1.625rem;
	font-weight: 600;
	line-height: 1.1;
	color: var(--tp-ink);
	white-space: nowrap;
}

.tessa-product .ts-proof-grid dd {
	margin: 8px 0 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--tp-muted);
}

/* Trust band */

.tessa-product .ts-trust {
	padding: 104px 0 112px;
	border-bottom: 1px solid var(--tp-line-soft);
}

.tessa-product .ts-trust-grid {
	margin-top: 56px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.tessa-product .ts-trust-pillar {
	min-width: 0;
	padding-top: 18px;
	border-top: 1px solid var(--tp-ink);
}

.tessa-product .ts-trust-pillar > span {
	font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--tp-faint);
}

.tessa-product .ts-trust-pillar h3 {
	margin: 12px 0 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--tp-ink);
}

.tessa-product .ts-trust-pillar p {
	margin-top: 10px;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--tp-muted);
}

/* Ways to start — inside workflow section */

.tessa-product .ts-start-modes {
	margin-top: 36px;
	margin-bottom: 28px;
	border: 1px solid var(--tp-line);
	border-radius: 4px;
	background: #fff;
	overflow: hidden;
}

.tessa-product .ts-start-modes-head {
	padding: 18px 24px;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--tp-line);
	background: var(--tp-raised);
}

.tessa-product .ts-start-modes-head h4 {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--tp-ink);
}

.tessa-product .ts-start-modes-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tessa-product .ts-start-modes-grid article {
	min-width: 0;
	padding: 20px 24px 24px;
}

.tessa-product .ts-start-modes-grid article + article {
	border-left: 1px solid var(--tp-line-soft);
}

.tessa-product .ts-start-modes-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 1px solid #82afea;
	border-radius: 9999px;
	font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--tp-blue);
}

.tessa-product .ts-start-modes-grid h5 {
	margin: 12px 0 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--tp-ink);
}

.tessa-product .ts-start-modes-grid p {
	margin-top: 6px;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--tp-muted);
}

/* Mid-page CTA band */

.tessa-product .ts-midcta {
	padding: 72px 0;
	border-bottom: 1px solid var(--tp-line);
	background: var(--tp-blue-soft);
}

.tessa-product .ts-midcta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.tessa-product .ts-midcta h2 {
	margin: 10px 0 0;
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--tp-ink);
}

.tessa-product .ts-midcta p:not(.tp-eyebrow) {
	margin-top: 12px;
	max-width: 560px;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--tp-muted);
}

.tessa-product .ts-midcta .tp-button {
	flex: none;
}

/* Responsive */

@media (max-width: 980px) {
	.tessa-product .ts-proof-grid,
	.tessa-product .ts-trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tessa-product .ts-trust-grid {
		gap: 32px 24px;
	}
}

@media (max-width: 700px) {
	.tessa-product .ts-proof-band {
		padding: 28px 0;
	}

	.tessa-product .ts-proof-grid {
		gap: 20px 16px;
	}

	.tessa-product .ts-proof-grid dt {
		font-size: 1.25rem;
	}

	.tessa-product .ts-trust {
		padding: 72px 0 76px;
	}

	.tessa-product .ts-trust-grid {
		margin-top: 36px;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.tessa-product .ts-start-modes-grid {
		grid-template-columns: 1fr;
	}

	.tessa-product .ts-start-modes-grid article + article {
		border-left: 0;
		border-top: 1px solid var(--tp-line-soft);
	}

	.tessa-product .ts-midcta {
		padding: 56px 0;
	}

	.tessa-product .ts-midcta h2 {
		font-size: 1.4375rem;
	}
}
