/* ── SELF-HOSTED FONTS ── */
@font-face {
	font-family: 'Libre Baskerville';
	src: url('fonts/Libre_Baskerville/LibreBaskerville-VariableFont_wght.ttf')
		format('truetype');
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Libre Baskerville';
	src: url('fonts/Libre_Baskerville/LibreBaskerville-Italic-VariableFont_wght.ttf')
		format('truetype');
	font-weight: 400 700;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Source Sans 3';
	src: url('fonts/Source_Sans_3/SourceSans3-VariableFont_wght.ttf')
		format('truetype');
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Source Sans 3';
	src: url('fonts/Source_Sans_3/SourceSans3-Italic-VariableFont_wght.ttf')
		format('truetype');
	font-weight: 200 900;
	font-style: italic;
	font-display: swap;
}

:root {
	--navy: #1b2a4a;
	--deep-blue: #2c3e6b;
	--medium-blue: #3a5ba0;
	--light-blue: #e8eef7;
	--sky: #f0f4fa;
	--gold: #d4a843;
	--gold-dark: #b8922e;
	--gold-light: #fef9e7;
	--red: #c0392b;
	--red-light: #fdedec;
	--green: #27ae60;
	--green-light: #e8f8f0;
	--text-dark: #2c3e50;
	--text-med: #555;
	--text-light: #777;
	--white: #ffffff;
	--off-white: #fafbfd;
	--warm-bg: #f8f6f1;
	--border: #e0e0e0;
	--shadow: 0 4px 24px rgba(27, 42, 74, 0.08);
	--shadow-lg: 0 12px 48px rgba(27, 42, 74, 0.12);
	--radius: 12px;
	--radius-lg: 20px;
}
body {
	background: linear-gradient(175deg, var(--navy) 0%, var(--deep-blue) 100%);
	min-height: 100vh;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
	color: var(--text-dark);
	background: var(--off-white);
	line-height: 1.7;
	font-size: 20px;
	-webkit-font-smoothing: antialiased;
}

#free-cheatsheet {
	background: linear-gradient(175deg, var(--navy) 0%, var(--deep-blue) 100%);
	min-height: 100vh;
}

/* ── UTILITY ── */
.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
}
.container-wide {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 24px;
}
.text-center {
	text-align: center;
}
.serif {
	font-family: 'Libre Baskerville', Georgia, serif;
}

/* ── TOP URGENCY BAR ── */
.urgency-bar {
	background: var(--red);
	color: var(--white);
	text-align: center;
	padding: 12px 20px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.3px;
	position: relative;
	z-index: 100;
	animation: pulse-bg 3s ease-in-out infinite;
}
.urgency-bar span {
	color: var(--gold-light);
}
@keyframes pulse-bg {
	0%,
	100% {
		background: var(--red);
	}
	50% {
		background: #a93226;
	}
}

/* ── HEADER ── */
.header {
	background: linear-gradient(
		175deg,
		var(--navy) 0%,
		var(--deep-blue) 60%,
		var(--medium-blue) 100%
	);
	padding: 60px 24px 80px;
	position: relative;
	overflow: hidden;
	contain: layout style;
}
.header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(212, 168, 67, 0.08) 0%,
		transparent 70%
	);
	border-radius: 50%;
}
.header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	width: 100%;
	height: 40px;
	background: var(--off-white);
	clip-path: ellipse(55% 100% at 50% 100%);
}

.shield-icon {
	font-size: 64px;
	display: block;
	text-align: center;
	margin-bottom: 20px;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
	animation: float 3s ease-in-out infinite;
}
.shield-icon img {
	width: 100px;
	height: auto;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.header h1 {
	font-family: 'Libre Baskerville', Georgia, serif;
	color: var(--white);
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	max-width: 700px;
	margin: 0 auto 16px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.header h1 .gold {
	color: var(--gold);
}

.header .subtitle {
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(19px, 3vw, 23px);
	text-align: center;
	max-width: 580px;
	margin: 0 auto 32px;
	line-height: 1.6;
}

.header-cta {
	text-align: center;
}

/* ── BUTTONS ── */
.btn {
	display: inline-block;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
	color: var(--navy) !important;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 22px;
	font-weight: 900;
	text-decoration: none;
	padding: 18px 48px;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
	letter-spacing: 0.3px;
	text-transform: uppercase;
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(212, 168, 67, 0.5);
	background: linear-gradient(135deg, #e0b44e 0%, var(--gold) 100%);
}
.btn-sub {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	margin-top: 10px;
	font-weight: 400;
}
.btn-sub-dark {
	color: var(--text-light);
}

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding: 24px;
	text-align: center;
}
.proof-bar .stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	max-width: 700px;
	margin: 0 auto;
}
.proof-bar .stat {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	color: var(--text-med);
}
.proof-bar .stat strong {
	color: var(--navy);
	font-size: 20px;
}
.proof-bar .stat-icon {
	font-size: 20px;
}

/* ── SECTIONS ── */
section {
	padding: 60px 24px;
}
section.alt {
	background: var(--warm-bg);
}
section.blue-bg {
	background: var(--light-blue);
}

.section-label {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--gold-dark);
	text-align: center;
	margin-bottom: 12px;
}
.section-title {
	font-family: 'Libre Baskerville', Georgia, serif;
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 700;
	color: var(--navy);
	text-align: center;
	margin-bottom: 16px;
	line-height: 1.3;
}
.section-sub {
	font-size: 21px;
	color: var(--text-med);
	text-align: center;
	max-width: 620px;
	margin: 0 auto 40px;
}

/* ── PROBLEM SECTION ── */
.problem-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	max-width: 700px;
	margin: 0 auto;
}
.problem-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: var(--white);
	border-left: 4px solid var(--red);
	padding: 20px 24px;
	border-radius: 0 var(--radius) var(--radius) 0;
	box-shadow: var(--shadow);
}
.problem-card .icon {
	font-size: 28px;
	flex-shrink: 0;
	margin-top: 2px;
}
.problem-card p {
	font-size: 20px;
	line-height: 1.6;
}
.problem-card strong {
	color: var(--red);
}
.highlight-card {
	background: var(--red-light);
	border-left: 4px solid var(--red);
	border-top: 1px solid rgba(192, 57, 43, 0.2);
	border-right: 1px solid rgba(192, 57, 43, 0.2);
	border-bottom: 1px solid rgba(192, 57, 43, 0.2);
}

/* ── WHAT'S INSIDE ── */
.inside-list {
	max-width: 680px;
	margin: 0 auto;
	list-style: none;
}
.inside-list li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--border);
	font-size: 20px;
	line-height: 1.6;
}
.inside-list li:last-child {
	border-bottom: none;
}
.inside-list .check {
	color: var(--green);
	font-size: 24px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}
.testimonial {
	background: var(--white);
	padding: 28px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	position: relative;
}
.testimonial::before {
	content: '"';
	font-family: 'Libre Baskerville', Georgia, serif;
	font-size: 60px;
	color: var(--gold);
	position: absolute;
	top: 8px;
	left: 20px;
	line-height: 1;
	opacity: 0.4;
}
.testimonial p {
	font-size: 20px;
	font-style: italic;
	color: var(--text-med);
	margin-bottom: 16px;
	padding-top: 20px;
	line-height: 1.7;
}
.testimonial .author {
	font-weight: 700;
	font-style: normal;
	color: var(--navy);
	font-size: 15px;
}
.testimonial .stars {
	color: var(--gold);
	font-size: 16px;
	margin-bottom: 6px;
	letter-spacing: 2px;
}

/* ── SCAM STATS ── */
.stat-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	max-width: 750px;
	margin: 0 auto 40px;
}
.stat-card {
	background: var(--white);
	text-align: center;
	padding: 28px 20px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border-top: 4px solid var(--gold);
}
.stat-card .number {
	font-family: 'Libre Baskerville', Georgia, serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--red);
	margin-bottom: 6px;
}
.stat-card .label {
	font-size: 15px;
	color: var(--text-med);
	line-height: 1.5;
}

/* ── PRICING / CTA BOX ── */
.cta-box {
	max-width: 580px;
	margin: 0 auto;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	border: 2px solid var(--gold);
}
.cta-box-header {
	background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
	padding: 28px;
	text-align: center;
}
.cta-box-header h3 {
	font-family: 'Libre Baskerville', Georgia, serif;
	color: var(--white);
	font-size: 22px;
	margin-bottom: 4px;
}
.cta-box-header p {
	color: var(--gold);
	font-size: 15px;
}
.cta-box-body {
	padding: 36px 32px;
	text-align: center;
}
.price-display {
	margin-bottom: 24px;
}
.price-original {
	font-size: 22px;
	color: var(--text-light);
	text-decoration: line-through;
	margin-right: 8px;
}
.price-current {
	font-family: 'Libre Baskerville', Georgia, serif;
	font-size: 52px;
	font-weight: 700;
	color: var(--navy);
}
.price-current sup {
	font-size: 28px;
	vertical-align: super;
}
.price-note {
	font-size: 15px;
	color: var(--text-light);
	margin-top: 4px;
}

.cta-includes {
	text-align: left;
	margin: 24px 0;
	padding: 0;
	list-style: none;
}
.cta-includes li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	font-size: 17px;
	color: var(--text-dark);
}
.cta-includes .check {
	color: var(--green);
	font-weight: 700;
	font-size: 20px;
	flex-shrink: 0;
}

.guarantee {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--green-light);
	border: 1px solid rgba(39, 174, 96, 0.2);
	border-radius: var(--radius);
	padding: 16px 20px;
	margin-top: 24px;
	text-align: left;
}
.guarantee-icon {
	font-size: 36px;
	flex-shrink: 0;
}
.guarantee p {
	font-size: 15px;
	color: var(--text-dark);
	line-height: 1.5;
}
.guarantee strong {
	color: var(--green);
}

/* ── FAQ ── */
.faq-list {
	max-width: 680px;
	margin: 0 auto;
}
.faq-item {
	border-bottom: 1px solid var(--border);
	padding: 20px 0;
}
.faq-q {
	font-weight: 700;
	font-size: 18px;
	color: var(--navy);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.faq-q::after {
	content: '+';
	font-size: 24px;
	color: var(--gold);
	font-weight: 400;
	flex-shrink: 0;
	transition: transform 0.3s;
}
.faq-item.open .faq-q::after {
	content: '−';
}
.faq-a {
	font-size: 19px;
	color: var(--text-med);
	line-height: 1.7;
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.4s ease,
		padding 0.3s ease;
	padding-top: 0;
}
.faq-item.open .faq-a {
	max-height: 300px;
	padding-top: 14px;
}

/* ── ABOUT / TRUST ── */
.trust-badges {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
	margin: 30px auto;
	max-width: 600px;
}
.trust-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--text-med);
	font-weight: 600;
}
.trust-badge .badge-icon {
	font-size: 32px;
}

.trust-text {
	max-width: 420px;
}

/* ── FINAL CTA ── */
.final-cta {
	background: linear-gradient(175deg, var(--navy) 0%, var(--deep-blue) 100%);
	padding: 80px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.final-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(212, 168, 67, 0.06) 0%,
		transparent 70%
	);
	border-radius: 50%;
}
.final-cta h2 {
	font-family: 'Libre Baskerville', Georgia, serif;
	color: var(--white);
	font-size: clamp(24px, 4vw, 34px);
	margin-bottom: 16px;
	line-height: 1.3;
}
.final-cta p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 19px;
	max-width: 560px;
	margin: 0 auto 32px;
	line-height: 1.6;
}

/* ── FOOTER ── */
footer {
	background: var(--navy);
	border-top: 3px solid var(--gold);
	padding: 32px 24px;
	text-align: center;
}
footer p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	line-height: 1.8;
}
footer a {
	color: rgba(255, 255, 255, 0.6);
}

/* ── EMAIL FORM ── */
.email-form {
	max-width: 460px;
	margin: 0 auto;
	display: flex;
	gap: 0;
	border-radius: 50px;
	overflow: hidden;
	box-shadow: var(--shadow);
}
.email-form input {
	flex: 1;
	padding: 16px 24px;
	font-size: 17px;
	font-family: 'Source Sans 3', sans-serif;
	border: 2px solid var(--border);
	border-right: none;
	border-radius: 50px 0 0 50px;
	outline: none;
	color: var(--text-dark);
	min-width: 0;
}
.email-form input:focus {
	border-color: var(--gold);
}
.email-form input::placeholder {
	color: #aaa;
}
.email-form button {
	padding: 16px 32px;
	font-size: 17px;
	font-weight: 800;
	border-radius: 0 50px 50px 0;
	white-space: nowrap;
}

/* ── TWO COLUMN LAYOUT ── */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
#free-cheatsheet .two-col {
	align-items: center;
	gap: 60px;
}
.optin-content {
	padding-right: 20px;
}

/* ── TRUST BADGE PILLS (offer page CTA box) ── */
.badge {
	display: inline-block;
	background: var(--light-blue);
	color: var(--navy);
	font-size: 14px;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 50px;
	border: 1px solid var(--border);
}
.trust-badges .badge {
	margin: 4px;
}

/* ── SOURCE CITATION ── */
.source {
	text-align: center;
	font-size: 13px;
	color: var(--text-light);
	margin-top: 12px;
	font-style: italic;
}

/* ── FOOTER LINKS ── */
.footer-links {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 13px;
	line-height: 2;
}
.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}
.footer-links a:hover {
	color: rgba(255, 255, 255, 0.9);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
	.two-col {
		grid-template-columns: 1fr;
	}
	#free-cheatsheet .two-col {
		gap: 30px;
	}
	.optin-content {
		padding-right: 0;
		text-align: center !important;
	}
	h1.optin-title {
		text-align: center !important;
	}
	p.optin-sub {
		text-align: center !important;
	}
	.optin-checklist {
		margin: 0 auto 32px auto !important;
	}
}

@media (max-width: 600px) {
	.header {
		padding: 40px 20px 60px;
	}
	section {
		padding: 44px 20px;
	}
	.btn {
		font-size: 17px;
		padding: 16px 36px;
	}
	.stat-cards {
		grid-template-columns: 1fr;
	}
	.testimonial-grid {
		grid-template-columns: 1fr;
	}
	.proof-bar .stats {
		gap: 20px;
	}
	.email-form {
		flex-direction: column;
		border-radius: var(--radius);
	}
	.email-form input {
		border-right: 2px solid var(--border);
		border-radius: var(--radius) var(--radius) 0 0;
		border-bottom: none;
	}
	.email-form button {
		border-radius: 0 0 var(--radius) var(--radius);
	}
	.cta-box-body {
		padding: 28px 20px;
	}
	.guarantee {
		flex-direction: column;
		text-align: center;
	}
	.optin-preview {
		flex-direction: column;
		align-items: center;
	}
	.optin-checklist {
		max-width: 100%;
	}
	.optin-checklist li {
		font-size: 17px;
	}
	.hero-product-img {
		min-height: 200px;
	}
	.ai-alert-img {
		min-height: 180px;
		max-width: 280px;
	}
	.inside-img {
		min-height: 200px;
	}
	.pricing-img {
		min-height: 160px;
	}
	.cheatsheet-teaser a {
		font-size: 16px;
		padding: 14px 16px;
	}
	.cheatsheet-fallback a {
		font-size: 15px;
	}
}

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
	position: relative;
	border: 3px dashed var(--gold);
	border-radius: var(--radius);
	background: var(--gold-light);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 24px;
	gap: 8px;
}
.img-placeholder .placeholder-label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gold-dark);
	background: white;
	padding: 4px 12px;
	border-radius: 4px;
}
.img-placeholder .placeholder-desc {
	font-size: 14px;
	color: var(--text-med);
	max-width: 400px;
	line-height: 1.5;
}
.img-placeholder .placeholder-prompt {
	font-size: 12px;
	color: var(--medium-blue);
	font-family: monospace;
	background: rgba(58, 91, 160, 0.08);
	padding: 10px 14px;
	border-radius: 6px;
	max-width: 500px;
	line-height: 1.6;
	text-align: left;
	margin-top: 4px;
	word-break: break-word;
}
.img-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
}
.hero-product-img {
	max-width: 480px;
	min-height: 280px;
	margin: 30px auto 0;
}
.ai-alert-img {
	max-width: 360px;
	min-height: 240px;
	margin: 0 auto 24px;
	border-color: var(--red);
	background: var(--red-light);
}
.ai-alert-img .placeholder-label {
	color: var(--red);
}
.inside-img {
	max-width: 380px;
	min-height: 260px;
	margin: 32px auto 0;
}
.pricing-img {
	max-width: 320px;
	min-height: 200px;
	margin: 0 auto 24px;
}
.testimonial-avatar {
	width: 52px;
	height: 52px;
	min-height: unset;
	border-radius: 50%;
	padding: 0;
	margin-bottom: 4px;
	border-width: 2px;
	flex-shrink: 0;
}
.testimonial-avatar .placeholder-label {
	font-size: 8px;
	padding: 2px 4px;
}
.hero-product-img.on-dark {
	border-color: rgba(212, 168, 67, 0.5);
	background: rgba(212, 168, 67, 0.1);
}
.hero-product-img.on-dark .placeholder-label {
	color: var(--gold);
	background: rgba(0, 0, 0, 0.3);
}
.hero-product-img.on-dark .placeholder-desc {
	color: rgba(255, 255, 255, 0.7);
}
.hero-product-img.on-dark .placeholder-prompt {
	background: rgba(0, 0, 0, 0.2);
	color: rgba(255, 255, 255, 0.8);
}

/* ── ANIMATIONS ── */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── EMAIL OPT-IN ── */
.optin-box {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}
.optin-badge {
	display: inline-block;
	background: var(--gold);
	color: var(--navy);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 2px;
	padding: 6px 18px;
	border-radius: 50px;
	margin-bottom: 20px;
}
.optin-title {
	font-family: 'Libre Baskerville', Georgia, serif;
	color: var(--white);
	font-size: clamp(22px, 4vw, 30px);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 14px;
}
.optin-sub {
	color: rgba(255, 255, 255, 0.85);
	font-size: 20px;
	line-height: 1.7;
	margin-bottom: 28px;
}
.optin-sub strong {
	color: var(--gold);
}
.optin-preview {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.optin-preview-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.08);
	padding: 8px 16px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.optin-checklist {
	list-style: none;
	text-align: left;
	max-width: 420px;
	margin: 0 auto 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.optin-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	line-height: 1.5;
	background: rgba(255, 255, 255, 0.07);
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.optin-check {
	flex-shrink: 0;
	font-size: 18px;
	margin-top: 1px;
}
.optin-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 420px;
	margin: 0;
}
.optin-input {
	padding: 24px;
	font-size: 21px;
	font-family: 'Source Sans 3', sans-serif;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.95);
	color: var(--text-dark);
	outline: none;
	transition: border-color 0.3s;
}
.optin-input:focus {
	border-color: var(--gold);
}
.optin-input::placeholder {
	color: #999;
}
.optin-btn {
	width: 100%;
	font-size: 20px;
	padding: 20px 32px;
	margin-top: 8px;
	border-radius: var(--radius) !important;
}
.optin-privacy {
	color: rgba(255, 255, 255, 0.65);
	font-size: 15px;
	line-height: 1.8;
	margin-top: 16px;
	text-align: center;
}
.optin-success {
	display: none;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(39, 174, 96, 0.4);
	border-radius: var(--radius);
	padding: 28px;
	margin-top: 20px;
}
.optin-success h3 {
	color: var(--gold);
	font-size: 20px;
	margin: 10px 0 6px;
}
.optin-success p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
}

/* ── FREE CHEAT SHEET TEASER (below proof bar) ── */
.cheatsheet-teaser {
	text-align: center;
	padding: 0 24px;
	background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
	border-bottom: 3px solid var(--gold);
}
.cheatsheet-teaser a {
	color: var(--white);
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	display: block;
	padding: 18px 24px;
	transition:
		background 0.3s,
		letter-spacing 0.3s;
}
.cheatsheet-teaser a:hover {
	background: rgba(212, 168, 67, 0.1);
	letter-spacing: 0.3px;
}
.cheatsheet-teaser strong {
	text-decoration: none;
	background: linear-gradient(135deg, var(--gold) 0%, #e0b44e 100%);
	color: var(--navy);
	padding: 4px 14px;
	border-radius: 50px;
	font-size: 16px;
	margin: 0 4px;
	display: inline-block;
}

/* ── CHEAT SHEET FALLBACK (below final CTA) ── */
.cheatsheet-fallback {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cheatsheet-fallback a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 17px;
	transition: color 0.2s;
}
.cheatsheet-fallback a:hover {
	color: var(--white);
}
.cheatsheet-fallback strong {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 2px;
	font-size: 18px;
	transition: color 0.2s;
}
.cheatsheet-fallback a:hover strong {
	color: #e0b44e;
}
