/**
 * Franchise Planet Launch Offer — front-end styles
 * Brand: black background, gold (#C9922A), Plus Jakarta Sans / Inter
 */

.fp-launch-offer {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #fff;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.fp-launch-offer * { box-sizing: border-box; }

/* === TIER CARDS === */
.fp-launch-tiers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.fp-launch-tier {
	position: relative;
	background: #111;
	border: 1px solid #2a2a2a;
	border-radius: 12px;
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, border-color .2s ease;
}

.fp-launch-tier:hover {
	transform: translateY(-4px);
	border-color: #C9922A;
}

.fp-launch-tier--featured {
	border-color: #C9922A;
	background: linear-gradient(180deg, #1a1410 0%, #111 100%);
	box-shadow: 0 0 30px rgba(201, 146, 42, 0.2);
}

.fp-launch-tier__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #C9922A;
	color: #000;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 99px;
}

.fp-launch-tier__title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	margin: 0 0 .5rem 0;
	color: #fff;
}

.fp-launch-tier__offer {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: 1.75rem;
	color: #C9922A;
	margin-bottom: .25rem;
	line-height: 1.2;
}

.fp-launch-tier__normal {
	font-size: .9rem;
	color: #999;
	margin-bottom: 1.5rem;
}

.fp-launch-tier__normal strong {
	color: #C9922A;
}

.fp-launch-tier__features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
	flex: 1;
}

.fp-launch-tier__features li {
	padding: .5rem 0 .5rem 1.5rem;
	position: relative;
	color: #ccc;
	font-size: .95rem;
	border-bottom: 1px solid #1f1f1f;
}

.fp-launch-tier__features li:last-child { border-bottom: none; }

.fp-launch-tier__features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: .5rem;
	color: #C9922A;
	font-weight: 700;
}

.fp-launch-tier__btn {
	display: block;
	width: 100%;
	padding: .9rem 1.5rem;
	background: #C9922A;
	color: #000;
	border: none;
	border-radius: 8px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: background .2s ease, transform .1s ease;
}

.fp-launch-tier__btn:hover { background: #d9a23a; }
.fp-launch-tier__btn:active { transform: scale(.98); }

/* === FORM === */
.fp-launch-form {
	background: #111;
	border: 1px solid #2a2a2a;
	border-radius: 12px;
	padding: 2.5rem;
	max-width: 600px;
	margin: 0 auto;
}

.fp-launch-form__title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	margin: 0 0 .5rem 0;
	color: #fff;
}

.fp-launch-form__tier-label { color: #C9922A; }

.fp-launch-form__intro {
	color: #999;
	font-size: .95rem;
	margin: 0 0 2rem 0;
}

.fp-launch-form__row {
	margin-bottom: 1.25rem;
}

.fp-launch-form__row label {
	display: block;
	margin-bottom: .4rem;
	font-weight: 500;
	font-size: .9rem;
	color: #ddd;
}

.fp-launch-form__row input[type="text"],
.fp-launch-form__row input[type="email"],
.fp-launch-form__row input[type="url"] {
	width: 100%;
	padding: .75rem 1rem;
	background: #000;
	border: 1px solid #333;
	border-radius: 6px;
	color: #fff;
	font-family: inherit;
	font-size: 1rem;
	transition: border-color .2s ease;
}

.fp-launch-form__row input:focus {
	border-color: #C9922A;
	outline: none;
}

.fp-launch-form__row small {
	display: block;
	margin-top: .35rem;
	color: #777;
	font-size: .8rem;
}

/* Honeypot - hidden from real users */
.fp-launch-form__hp {
	position: absolute;
	left: -9999px;
	top: -9999px;
	height: 0;
	overflow: hidden;
}

.fp-launch-form__consent {
	margin: 1.5rem 0;
	font-size: .85rem;
	color: #aaa;
	line-height: 1.5;
}

.fp-launch-form__consent label {
	display: flex;
	gap: .6rem;
	align-items: flex-start;
	cursor: pointer;
}

.fp-launch-form__consent input { margin-top: .2rem; flex-shrink: 0; }

.fp-launch-form__consent a {
	color: #C9922A;
	text-decoration: underline;
}

.fp-launch-form__actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.fp-launch-form__back {
	padding: .9rem 1.5rem;
	background: transparent;
	color: #999;
	border: 1px solid #333;
	border-radius: 8px;
	font-family: inherit;
	font-size: .95rem;
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease;
}

.fp-launch-form__back:hover {
	border-color: #C9922A;
	color: #C9922A;
}

.fp-launch-form__submit {
	flex: 1;
	padding: .9rem 1.5rem;
	background: #C9922A;
	color: #000;
	border: none;
	border-radius: 8px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: background .2s ease;
}

.fp-launch-form__submit:hover { background: #d9a23a; }
.fp-launch-form__submit:disabled {
	background: #555;
	color: #999;
	cursor: not-allowed;
}

.fp-launch-form__msg {
	margin-top: 1rem;
	padding: 0;
	font-size: .9rem;
	min-height: 1.5em;
}

.fp-launch-form__msg.fp-msg-error {
	background: rgba(220, 53, 69, .1);
	border: 1px solid rgba(220, 53, 69, .3);
	border-radius: 6px;
	padding: .75rem 1rem;
	color: #f8a3aa;
}

.fp-launch-form__msg.fp-msg-success {
	background: rgba(40, 167, 69, .1);
	border: 1px solid rgba(40, 167, 69, .3);
	border-radius: 6px;
	padding: .75rem 1rem;
	color: #9fdca8;
}

/* === Offer ended === */
.fp-launch-offer--ended {
	text-align: center;
	padding: 3rem 1rem;
}

.fp-launch-offer--ended h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	color: #C9922A;
	font-size: 1.5rem;
}

@media (max-width: 600px) {
	.fp-launch-form { padding: 1.5rem; }
	.fp-launch-form__actions { flex-direction: column-reverse; }
	.fp-launch-form__back, .fp-launch-form__submit { width: 100%; }
}

/* === NEWS ARTICLE UPSELL === */
.fp-news-upsell {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	max-width: 600px;
	margin: 2rem auto;
	background: linear-gradient(180deg, #1a1410 0%, #111 100%);
	border: 1px solid #C9922A;
	border-radius: 12px;
	padding: 2.5rem;
	color: #fff;
	box-shadow: 0 0 30px rgba(201, 146, 42, 0.15);
}
.fp-news-upsell__head { margin-bottom: 1.5rem; text-align: center; }
.fp-news-upsell__badge {
	display: inline-block;
	background: #C9922A;
	color: #000;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 99px;
	margin-bottom: 1rem;
}
.fp-news-upsell__title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	color: #fff;
	margin: 0 0 .75rem 0;
}
.fp-news-upsell__intro {
	color: #ccc;
	font-size: .95rem;
	margin: 0;
	line-height: 1.5;
}
.fp-news-upsell__pricing { text-align: center; padding: 1.25rem 0; border-bottom: 1px solid #2a2a2a; }
.fp-news-upsell__price-strike {
	color: #777;
	text-decoration: line-through;
	font-size: 1.1rem;
	margin-right: .5rem;
}
.fp-news-upsell__price-now {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: 2.25rem;
	color: #C9922A;
}
.fp-news-upsell__price-note {
	color: #999;
	font-size: .85rem;
	margin-left: .25rem;
}
.fp-news-upsell__features { list-style: none; padding: 0; margin: 1.5rem 0; }
.fp-news-upsell__features li {
	padding: .5rem 0 .5rem 1.5rem;
	position: relative;
	color: #ccc;
	font-size: .9rem;
	border-bottom: 1px solid #1f1f1f;
}
.fp-news-upsell__features li:last-child { border-bottom: none; }
.fp-news-upsell__features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: .5rem;
	color: #C9922A;
	font-weight: 700;
}
.fp-news-upsell__actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}
.fp-news-upsell__cta {
	flex: 1;
	min-width: 200px;
	display: block;
	padding: .9rem 1.5rem;
	background: #C9922A;
	color: #000 !important;
	border: none;
	border-radius: 8px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	text-align: center;
	text-decoration: none;
	transition: background .2s ease;
}
.fp-news-upsell__cta:hover { background: #d9a23a; color: #000 !important; }
.fp-news-upsell__skip {
	padding: .9rem 1.5rem;
	background: transparent;
	color: #999;
	border: 1px solid #333;
	border-radius: 8px;
	font-family: inherit;
	font-size: .95rem;
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease;
}
.fp-news-upsell__skip:hover { border-color: #C9922A; color: #C9922A; }
.fp-news-upsell__disclaimer {
	text-align: center;
	color: #666;
	font-size: .8rem;
	margin: 1rem 0 0 0;
}
@media (max-width: 600px) {
	.fp-news-upsell { padding: 1.5rem; margin: 1rem; }
	.fp-news-upsell__actions { flex-direction: column; }
	.fp-news-upsell__cta, .fp-news-upsell__skip { width: 100%; }
}
