/* TTH Turtly Founding List — opt-in form. A warmer, "founding" look distinct
   from the Article Magnet's green box so the two never blur together. */
.ttf {
	margin: 28px 0;
	padding: 24px 22px 20px;
	background: linear-gradient( 135deg, #eef6f1 0%, #e7f0fb 100% );
	border: 1px solid #cfe0d6;
	border-left: 4px solid #1f8a5b;
	border-radius: 10px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.ttf__pitch {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 700;
	color: #163d2b;
	line-height: 1.35;
}
.ttf__sub {
	margin: 0 0 14px;
	font-size: 17px;
	font-weight: 400;
	color: #3a554a;
	line-height: 1.55;
}
.ttf__row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}
.ttf__row:last-of-type { margin-bottom: 0; }
.ttf__name,
.ttf__email {
	flex: 1 1 220px;
	min-width: 0;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #c2d3ba;
	border-radius: 6px;
	background: #fff;
}
.ttf__name:focus,
.ttf__email:focus {
	outline: none;
	border-color: #1f8a5b;
	box-shadow: 0 0 0 3px rgba( 31, 138, 91, 0.15 );
}
.ttf__btn {
	flex: 0 0 auto;
	padding: 12px 22px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: #1f8a5b;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s ease;
}
.ttf__btn:hover { background: #18724a; }
.ttf__btn:disabled { opacity: 0.6; cursor: default; }
.ttf__btn.is-loading { color: transparent; position: relative; }
.ttf__btn.is-loading::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 16px; height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid rgba( 255, 255, 255, 0.5 );
	border-top-color: #fff;
	border-radius: 50%;
	animation: ttf-spin 0.7s linear infinite;
}
@keyframes ttf-spin { to { transform: rotate( 360deg ); } }

/* Honeypot — hidden from humans, visible to dumb bots. */
.ttf__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	opacity: 0;
}
.ttf__turnstile { margin-top: 12px; }
.ttf__status {
	margin: 10px 0 0;
	font-size: 14px;
}
.ttf__status.is-error { color: #b3261e; }
.ttf__status.is-ok { color: #1f6f43; }
.ttf__done {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: #1f6f43;
}
