.tw-homepage {
	--tw-ink: #13293d;
	--tw-ink-soft: #52657a;
	--tw-paper: #f7f3ec;
	--tw-surface: #fffdf8;
	--tw-accent: #d96c3f;
	--tw-accent-strong: #b85026;
	--tw-line: rgba(19, 41, 61, 0.12);
	--tw-shadow: 0 24px 60px rgba(19, 41, 61, 0.08);
	color: var(--tw-ink);
	background:
		radial-gradient(circle at top left, rgba(217, 108, 63, 0.16), transparent 32%),
		linear-gradient(180deg, #fffaf3 0%, #f6efe4 100%);
	font-family: Georgia, "Times New Roman", serif;
}

.tw-homepage--section {
	margin: 0;
}

.tw-homepage *,
.tw-homepage *::before,
.tw-homepage *::after {
	box-sizing: border-box;
}

.tw-section {
	padding: 88px 24px;
}

.tw-shell {
	max-width: 1180px;
	margin: 0 auto;
}

.tw-kicker {
	display: inline-block;
	margin-bottom: 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--tw-accent-strong);
}

.tw-heading {
	max-width: 760px;
	margin-bottom: 36px;
}

.tw-heading h2,
.tw-hero h1,
.tw-slab h2,
.tw-cta h2 {
	margin: 0;
	line-height: 1;
	letter-spacing: -0.03em;
	font-weight: 700;
}

.tw-hero h1 {
	font-size: clamp(42px, 7vw, 82px);
}

.tw-heading h2,
.tw-slab h2,
.tw-cta h2 {
	font-size: clamp(30px, 4.5vw, 52px);
}

.tw-lead,
.tw-heading p,
.tw-card p,
.tw-timeline__item p,
.tw-slab li,
.tw-cta p,
.tw-panel__eyebrow {
	font-family: "Helvetica Neue", Arial, sans-serif;
	line-height: 1.7;
	color: var(--tw-ink-soft);
}

.tw-hero__grid,
.tw-audience__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

.tw-hero__panel,
.tw-card,
.tw-slab,
.tw-cta__box,
.tw-stat {
	background: rgba(255, 253, 248, 0.84);
	border: 1px solid var(--tw-line);
	box-shadow: var(--tw-shadow);
	backdrop-filter: blur(10px);
}

.tw-hero__panel,
.tw-slab,
.tw-cta__box {
	padding: 30px;
	border-radius: 28px;
}

.tw-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.tw-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border-radius: 999px;
	text-decoration: none;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 700;
	transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.tw-button:hover,
.tw-button:focus {
	transform: translateY(-2px);
}

.tw-button--primary {
	background: var(--tw-accent);
	color: #fff;
}

.tw-button--primary:hover,
.tw-button--primary:focus {
	background: var(--tw-accent-strong);
	color: #fff;
}

.tw-button--secondary {
	background: transparent;
	color: var(--tw-ink);
	border: 1px solid var(--tw-line);
}

.tw-checklist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tw-checklist li {
	position: relative;
	padding-left: 28px;
	margin: 0 0 12px;
	font-family: "Helvetica Neue", Arial, sans-serif;
}

.tw-checklist li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--tw-accent), #f0c066);
}

.tw-statbar,
.tw-card-grid,
.tw-pill-grid {
	display: grid;
	gap: 18px;
}

.tw-statbar {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 28px;
}

.tw-stat {
	padding: 22px;
	border-radius: 22px;
}

.tw-stat__value {
	display: block;
	font-size: 26px;
	font-weight: 700;
}

.tw-stat__label {
	display: block;
	margin-top: 8px;
	font-family: "Helvetica Neue", Arial, sans-serif;
	color: var(--tw-ink-soft);
}

.tw-card-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tw-card {
	padding: 28px;
	border-radius: 26px;
}

.tw-card h3 {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 26px;
	line-height: 1.15;
}

.tw-timeline {
	display: grid;
	gap: 18px;
}

.tw-timeline__item {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 20px;
	padding: 22px 0;
	border-top: 1px solid var(--tw-line);
}

.tw-timeline__item:last-child {
	border-bottom: 1px solid var(--tw-line);
}

.tw-timeline__index {
	display: inline-flex;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--tw-ink);
	color: #fff;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 700;
}

.tw-pill-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tw-pill {
	padding: 24px;
	border-top: 1px solid var(--tw-line);
	border-bottom: 1px solid var(--tw-line);
	font-size: 24px;
	font-weight: 700;
}

.tw-cta__box {
	text-align: center;
}

.tw-homepage.is-visible .tw-fade-in {
	opacity: 1;
	transform: translateY(0);
}

.tw-fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (max-width: 960px) {
	.tw-hero__grid,
	.tw-audience__grid,
	.tw-card-grid,
	.tw-statbar,
	.tw-pill-grid {
		grid-template-columns: 1fr;
	}

	.tw-section {
		padding: 72px 20px;
	}
}

@media (max-width: 640px) {
	.tw-hero h1,
	.tw-heading h2,
	.tw-slab h2,
	.tw-cta h2 {
		line-height: 1.06;
	}

	.tw-timeline__item {
		grid-template-columns: 1fr;
	}
}
