:root {
	--tz-deep-teal: #00566b;
	--tz-ocean-teal: #008c9e;
	--tz-aqua: #18c7c9;
	--tz-sun-gold: #f7c948;
	--tz-sunset-orange: #f28c38;
	--tz-leaf-green: #58a65c;
	--tz-white: #ffffff;
	--tz-soft-bg: #f5fbfb;
	--tz-text: #1c2f36;
	--tz-muted: #667980;
	--tz-font-body: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
	--tz-font-accent: Georgia, "Times New Roman", serif;
	--tz-radius: 12px;
	--tz-shadow: 0 8px 24px rgba(0, 86, 107, 0.08);
}

.tz-container {
	width: min(1120px, 92vw);
	margin-inline: auto;
}

.tz-section {
	padding: 3.5rem 0;
}

.tz-section--soft {
	background: var(--tz-soft-bg);
}

.tz-hero {
	background: linear-gradient(135deg, var(--tz-deep-teal) 0%, var(--tz-ocean-teal) 55%, var(--tz-aqua) 100%);
	color: var(--tz-white);
	padding: 4.5rem 0;
}

.tz-hero__inner {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.tz-hero__logo {
	max-width: 220px;
	height: auto;
}

.tz-hero__eyebrow {
	font-family: var(--tz-font-accent);
	font-style: italic;
	color: var(--tz-sun-gold);
	margin-bottom: 0.75rem;
}

.tz-hero__title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.1;
	margin: 0 0 1rem;
}

.tz-hero__subtitle {
	font-size: clamp(1.05rem, 2.5vw, 1.35rem);
	color: rgba(255, 255, 255, 0.92);
	max-width: 42rem;
	margin: 0 0 1.5rem;
}

.tz-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tz-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tz-card {
	background: var(--tz-white);
	border: 1px solid rgba(0, 86, 107, 0.12);
	border-radius: var(--tz-radius);
	padding: 1.5rem;
	box-shadow: var(--tz-shadow);
}

.tz-card h3 {
	color: var(--tz-deep-teal);
	margin-top: 0;
}

.tz-button,
.tz-button-primary,
.tz-button-secondary {
	display: inline-block;
	padding: 0.85rem 1.35rem;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tz-button-primary {
	background: var(--tz-sunset-orange);
	color: var(--tz-white);
	border: 2px solid var(--tz-sunset-orange);
}

.tz-button-primary:hover,
.tz-button-primary:focus {
	color: var(--tz-white);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(242, 140, 56, 0.35);
}

.tz-button-secondary {
	background: transparent;
	color: var(--tz-white);
	border: 2px solid rgba(255, 255, 255, 0.85);
}

.tz-section:not(.tz-hero) .tz-button-secondary {
	color: var(--tz-deep-teal);
	border-color: var(--tz-ocean-teal);
}

.tz-button-secondary:hover,
.tz-button-secondary:focus {
	color: var(--tz-deep-teal);
	background: rgba(24, 199, 201, 0.12);
}

.tz-badge {
	display: inline-block;
	background: rgba(247, 201, 72, 0.18);
	color: var(--tz-deep-teal);
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
}

.tz-disclaimer,
.tz-footer-disclaimer {
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--tz-muted);
}

.tz-product-card {
	display: grid;
	gap: 1rem;
}

.tz-product-card__title {
	color: var(--tz-deep-teal);
	margin: 0;
}

.tz-product-card ul {
	margin: 0;
	padding-left: 1.2rem;
}

.tz-trust-row {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tz-trust-row__item {
	text-align: center;
	padding: 1rem;
	border-radius: var(--tz-radius);
	background: var(--tz-soft-bg);
}

.tz-trust-row__item strong {
	display: block;
	color: var(--tz-deep-teal);
	margin-bottom: 0.35rem;
}

.tz-footer-ecosystem-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	justify-content: center;
	padding: 1rem 0;
}

.tz-footer-ecosystem-links a {
	color: var(--tz-ocean-teal);
	font-weight: 600;
	text-decoration: none;
}

.tz-footer-ecosystem-links a:hover,
.tz-footer-ecosystem-links a:focus {
	color: var(--tz-deep-teal);
	text-decoration: underline;
}

.tz-topic-grid__item h3 {
	margin-top: 0;
	color: var(--tz-ocean-teal);
}

.tz-email-signup {
	background: var(--tz-soft-bg);
	border: 1px dashed rgba(0, 140, 158, 0.35);
	border-radius: var(--tz-radius);
	padding: 2rem;
	text-align: center;
}

.tz-prose {
	color: var(--tz-text);
	line-height: 1.7;
}

.tz-prose h2 {
	color: var(--tz-deep-teal);
	margin-top: 2rem;
}

.tz-site-footer-block {
	border-top: 1px solid rgba(0, 86, 107, 0.12);
	padding: 2rem 0 1rem;
	background: var(--tz-soft-bg);
}

@media (min-width: 768px) {
	.tz-hero__inner {
		grid-template-columns: auto 1fr;
	}
}

@media (max-width: 767px) {
	.tz-hero {
		padding: 3rem 0;
	}

	.tz-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.tz-button,
	.tz-button-primary,
	.tz-button-secondary {
		text-align: center;
	}
}
