/* ==========================================================================
   Free Bundle landing pages — /free/ and /free/<grade>/   (1.0.296)
   Scoped entirely under .hft-fb. Per-grade accent comes in as --fb-accent /
   --fb-tint on <main>. Brand tokens from hft-brand-2026.css.
   ========================================================================== */

.hft-fb {
	--fb-accent: var(--hft-navy, #1B437D);
	--fb-tint: #E2EAF6;
	--fb-navy: var(--hft-navy, #1B437D);
	--fb-ink: var(--hft-ink, #231F20);
	--fb-body: #3d4a57;
	--fb-cream: var(--hft-cream, #FBF5EC);
	--fb-cream-50: var(--hft-cream-50, #FFFCF6);
	--fb-line: var(--hft-line, #E9E0D4);
	--fb-cta: var(--hft-cta, #D6337B);
	--fb-cta-h: var(--hft-cta-hover, #B62A67);
	--fb-yellow: var(--hft-sail-yellow, #FBB915);
	--fb-display: var(--hft-font-display, 'Fredoka', system-ui, sans-serif);
	--fb-font: var(--hft-font-body, 'Nunito Sans', system-ui, sans-serif);
	--fb-r: 24px;
	--fb-shadow: 0 18px 40px -18px rgba(27, 67, 125, .35), 0 4px 10px rgba(27, 67, 125, .06);
	font-family: var(--fb-font);
	color: var(--fb-body);
	background: var(--fb-cream-50);
	overflow-x: clip;
}
.hft-fb *,
.hft-fb *::before,
.hft-fb *::after { box-sizing: border-box; }
.hft-fb img { max-width: 100%; display: block; }
.hft-fb .hftn-wrap { max-width: 1240px; }
.hft-fb .hft-fb-inside .hftn-wrap { max-width: 1380px; }

/* ---------- type ---------- */
.hft-fb-h1 {
	font-family: var(--fb-display);
	font-weight: 700;
	color: var(--fb-navy);
	font-size: clamp(40px, 5.6vw, 72px);
	line-height: 1.02;
	letter-spacing: -.02em;
	margin: 18px 0 20px;
	text-wrap: balance;
}
.hft-fb-h1 em {
	font-style: normal;
	color: var(--fb-accent);
	position: relative;
	white-space: nowrap;
}
.hft-fb-h1 em::after {
	content: "";
	position: absolute;
	left: -2%;
	right: -2%;
	bottom: .02em;
	height: .26em;
	background: var(--fb-yellow);
	border-radius: 999px;
	z-index: -1;
	opacity: .75;
	transform: rotate(-1.5deg);
}
.hft-fb-h2 {
	font-family: var(--fb-display);
	font-weight: 700;
	color: var(--fb-navy);
	font-size: clamp(30px, 3.6vw, 46px);
	line-height: 1.08;
	letter-spacing: -.015em;
	margin: 8px 0 14px;
	text-wrap: balance;
}
.hft-fb-h2--light { color: #fff; }
.hft-fb-lede {
	font-size: clamp(18px, 1.6vw, 21px);
	line-height: 1.55;
	color: var(--fb-body);
	max-width: 36em;
	margin: 0 0 14px;
}
.hft-fb-offer {
	font-size: 17px;
	line-height: 1.55;
	margin: 0 0 28px;
	max-width: 36em;
}
.hft-fb-offer b { color: var(--fb-navy); }
.hft-fb-sub {
	font-size: 18px;
	line-height: 1.55;
	margin: 0 auto;
	max-width: 42em;
}
.hft-fb-eyebrow {
	display: inline-block;
	font-family: var(--fb-display);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--fb-accent);
	margin: 0;
}
.hft-fb-eyebrow--light { color: var(--fb-yellow); }
.hft-fb-sechead { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.hft-fb-center { text-align: center; margin: 48px 0 0; }

/* ---------- pill + buttons ---------- */
.hft-fb-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: var(--fb-accent);
	font-weight: 800;
	font-size: 15px;
	padding: 9px 16px 9px 13px;
	border-radius: 999px;
	box-shadow: 0 6px 16px -8px rgba(27, 67, 125, .35);
	border: 2px solid var(--fb-tint);
	margin: 0;
}
.hft-fb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--fb-cta);
	color: #fff !important;
	font-family: var(--fb-font);
	font-weight: 800;
	font-size: 17px;
	line-height: 1.1;
	min-height: 52px;
	padding: 14px 28px;
	border-radius: 999px;
	text-decoration: none !important;
	box-shadow: 0 10px 22px -10px rgba(214, 51, 123, .75);
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
	border: 0;
	cursor: pointer;
}
.hft-fb-btn:hover,
.hft-fb-btn:focus-visible {
	background: var(--fb-cta-h);
	transform: translateY(-2px);
	box-shadow: 0 14px 26px -10px rgba(214, 51, 123, .8);
}
.hft-fb-btn svg { transition: transform .18s ease; }
.hft-fb-btn:hover svg { transform: translateX(3px); }
.hft-fb-btn--lg { min-height: 62px; padding: 18px 36px; font-size: 19px; }
.hft-fb-btn--block { width: 100%; }
.hft-fb-btn--ghost {
	background: #fff;
	color: var(--fb-navy) !important;
	box-shadow: inset 0 0 0 2px var(--fb-navy);
}
.hft-fb-btn--ghost:hover,
.hft-fb-btn--ghost:focus-visible {
	background: var(--fb-navy);
	color: #fff !important;
	box-shadow: inset 0 0 0 2px var(--fb-navy);
}

/* ---------- soft background blobs ---------- */
.hft-fb-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hft-fb-blobs i { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; }
.hft-fb-blobs i:nth-child(1) { width: 520px; height: 520px; background: var(--fb-tint); right: -140px; top: -160px; }
.hft-fb-blobs i:nth-child(2) { width: 260px; height: 260px; background: #FFF1C9; left: -90px; bottom: -80px; }
.hft-fb-blobs i:nth-child(3) { width: 34px; height: 34px; background: var(--fb-yellow); left: 46%; top: 12%; opacity: .9; }
.hft-fb-blobs i:nth-child(4) { width: 18px; height: 18px; background: var(--fb-accent); left: 8%; top: 22%; opacity: .5; }

/* ==========================================================================
   1 — HERO
   ========================================================================== */
.hft-fb-hero {
	position: relative;
	background: linear-gradient(180deg, var(--fb-cream) 0%, var(--fb-cream-50) 100%);
	padding: clamp(40px, 6vw, 88px) 0 clamp(56px, 7vw, 110px);
	isolation: isolate;
}
.hft-fb-hero-in {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: clamp(32px, 5vw, 80px);
	align-items: center;
}
.hft-fb-hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.hft-fb-nocard { font-size: 15px; font-weight: 700; color: var(--hft-slate, #5A6B7D); }
.hft-fb-proof {
	list-style: none;
	margin: 36px 0 0;
	padding: 24px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 34px;
	border-top: 2px dashed var(--fb-line);
}
.hft-fb-proof li { font-size: 15px; line-height: 1.3; color: var(--fb-body); max-width: 11em; }
.hft-fb-proof b {
	display: block;
	font-family: var(--fb-display);
	font-size: 30px;
	line-height: 1;
	color: var(--fb-navy);
	margin-bottom: 4px;
}

/* fanned covers */
.hft-fb-fan {
	position: relative;
	height: clamp(420px, 44vw, 600px);
}
.hft-fb-fan-i,
.hft-fb-fan-v {
	position: absolute;
	margin: 0;
	background: #fff;
	border-radius: 18px;
	padding: 10px;
	box-shadow: var(--fb-shadow);
	transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.hft-fb-fan-i img,
.hft-fb-fan-v img { border-radius: 10px; width: 100%; height: auto; }
.hft-fb-fan-i { width: 44%; }
.hft-fb-fan-i--1 { left: 28%; top: 4%; z-index: 5; transform: rotate(-2deg); }
.hft-fb-fan-i--2 { left: 2%; top: 14%; z-index: 4; transform: rotate(-11deg); }
.hft-fb-fan-i--3 { left: 54%; top: 16%; z-index: 3; transform: rotate(9deg); }
.hft-fb-fan-i--4 { left: 10%; top: 42%; z-index: 2; transform: rotate(-5deg); opacity: .96; }
.hft-fb-fan-i--5 { left: 48%; top: 44%; z-index: 1; transform: rotate(6deg); opacity: .96; }
.hft-fb-fan:hover .hft-fb-fan-i--1 { transform: rotate(0) translateY(-10px) scale(1.02); }
.hft-fb-fan:hover .hft-fb-fan-i--2 { transform: rotate(-14deg) translateX(-10px); }
.hft-fb-fan:hover .hft-fb-fan-i--3 { transform: rotate(12deg) translateX(10px); }
.hft-fb-fan-v {
	width: 36%;
	right: -2%;
	bottom: 2%;
	z-index: 7;
	transform: rotate(4deg);
	padding: 8px;
}
.hft-fb-fan-play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 58px;
	height: 58px;
	margin: -29px 0 0 -29px;
	border-radius: 50%;
	background: var(--fb-cta);
	color: #fff;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 18px -6px rgba(214, 51, 123, .8), 0 0 0 6px rgba(255, 255, 255, .85);
}
.hft-fb-sticker {
	position: absolute;
	z-index: 8;
	font-family: var(--fb-display);
	font-weight: 700;
	color: #fff;
	text-align: center;
	box-shadow: 0 12px 24px -10px rgba(0, 0, 0, .35);
}
.hft-fb-sticker--free {
	left: -1%;
	top: -2%;
	width: 118px;
	height: 118px;
	border-radius: 50%;
	background: var(--fb-accent);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: rotate(-12deg);
	border: 5px solid #fff;
	animation: hft-fb-bob 5s ease-in-out infinite;
}
.hft-fb-sticker--free b { font-size: 48px; line-height: .9; }
.hft-fb-sticker--free i { font-style: normal; font-size: 17px; letter-spacing: .14em; }
.hft-fb-sticker--print {
	left: 4%;
	bottom: 6%;
	background: var(--fb-yellow);
	color: var(--fb-navy);
	font-size: 20px;
	padding: 12px 22px;
	border-radius: 999px;
	transform: rotate(-4deg);
	border: 4px solid #fff;
}
@keyframes hft-fb-bob { 0%, 100% { transform: rotate(-12deg) translateY(0); } 50% { transform: rotate(-8deg) translateY(-8px); } }

/* ==========================================================================
   2 — CLAIM
   ========================================================================== */
.hft-fb-claim {
	position: relative;
	padding: clamp(56px, 7vw, 96px) 0;
	background: #fff;
	scroll-margin-top: 90px;
}
.hft-fb-claim::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -34px;
	height: 70px;
	background: #fff;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hft-fb-claim-in { position: relative; }
.hft-fb-claim-head { text-align: center; max-width: 780px; margin: 0 auto 36px; }
.hft-fb-card {
	max-width: 1120px;
	margin: 0 auto;
	border-radius: 30px;
	padding: 8px;
	background: linear-gradient(135deg, var(--fb-accent), var(--fb-yellow));
	box-shadow: 0 30px 60px -30px rgba(27, 67, 125, .45);
}
.hft-fb-card .hft-bc { margin: 0 !important; border-radius: 24px; }
/* The page already says what this is; the card's own header would repeat it. */
.hft-fb-card .hft-bc-offer .hft-bc-head { display: none; }
.hft-fb-member {
	text-align: center;
	background: var(--fb-tint);
	border-radius: var(--fb-r);
	padding: 48px 24px;
	max-width: 780px;
	margin: 0 auto;
}

/* ==========================================================================
   3 — WHAT'S INSIDE (big covers)
   ========================================================================== */
.hft-fb-inside {
	padding: clamp(64px, 8vw, 120px) 0;
	background: var(--fb-tint);
	position: relative;
}
.hft-fb-gallery {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 36px 28px;
}
.hft-fb-g { margin: 0; }
.hft-fb-g-art {
	position: relative;
	margin: 0 0 16px;
	aspect-ratio: 4 / 5;
	background: #fff;
	border-radius: 20px;
	padding: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--fb-shadow);
	transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
}
.hft-fb-g:nth-child(odd) .hft-fb-g-art { transform: rotate(-1.2deg); }
.hft-fb-g:nth-child(even) .hft-fb-g-art { transform: rotate(1.2deg); }
.hft-fb-g-art:hover { transform: rotate(0) translateY(-8px) scale(1.03) !important; box-shadow: 0 28px 50px -22px rgba(27, 67, 125, .5); }
.hft-fb-g-art img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.hft-fb-g-num {
	position: absolute;
	top: -12px;
	left: -12px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--fb-accent);
	color: #fff;
	font-family: var(--fb-display);
	font-weight: 700;
	font-size: 18px;
	display: grid;
	place-items: center;
	border: 3px solid #fff;
}
.hft-fb-g .hft-fb-fan-play { width: 50px; height: 50px; margin: -25px 0 0 -25px; }
.hft-fb-g-tag {
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--fb-accent);
}
.hft-fb-g-tag span { opacity: .5; }
.hft-fb-g-name {
	margin: 0;
	font-family: var(--fb-display);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.25;
	color: var(--fb-navy);
}

/* ==========================================================================
   4 — DREAM
   ========================================================================== */
.hft-fb-dream { padding: clamp(64px, 8vw, 120px) 0; background: var(--fb-cream-50); }
.hft-fb-dream-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.hft-fb-dream-c {
	border-radius: 28px;
	padding: 40px 34px 38px;
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: var(--fb-shadow);
	isolation: isolate;
}
.hft-fb-dream-c::after {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	right: -70px;
	bottom: -90px;
	background: rgba(255, 255, 255, .12);
	z-index: -1;
}
.hft-fb-dream-c--1 { background: var(--fb-accent); }
.hft-fb-dream-c--2 { background: var(--fb-navy); }
.hft-fb-dream-c--3 { background: var(--hft-green-deep, #1F8551); }
.hft-fb--first-grade .hft-fb-dream-c--3 { background: var(--hft-purple, #7A3FA8); }
.hft-fb--sixth-grade .hft-fb-dream-c--2 { background: var(--hft-purple, #7A3FA8); }
.hft-fb-dream-ico {
	width: 62px;
	height: 62px;
	border-radius: 18px;
	background: rgba(255, 255, 255, .18);
	display: grid;
	place-items: center;
	color: var(--fb-yellow);
	margin-bottom: 24px;
}
.hft-fb-dream-c h3 {
	font-family: var(--fb-display);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.12;
	margin: 0 0 12px;
	color: #fff;
}
.hft-fb-dream-c p { font-size: 17px; line-height: 1.55; margin: 0; color: rgba(255, 255, 255, .92); }

/* ==========================================================================
   5 — STEPS
   ========================================================================== */
.hft-fb-steps { padding: 0 0 clamp(64px, 8vw, 120px); background: var(--fb-cream-50); }
.hft-fb-steps-list {
	list-style: none;
	counter-reset: s;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	position: relative;
}
.hft-fb-steps-list li {
	counter-increment: s;
	background: #fff;
	border: 2px solid var(--fb-line);
	border-radius: 24px;
	padding: 34px 30px 30px;
	position: relative;
}
.hft-fb-steps-list li::before {
	content: counter(s);
	position: absolute;
	top: 26px;
	right: 28px;
	font-family: var(--fb-display);
	font-weight: 700;
	font-size: 64px;
	line-height: 1;
	color: var(--fb-tint);
}
.hft-fb-step-ico {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: var(--fb-tint);
	color: var(--fb-accent);
	display: grid;
	place-items: center;
	margin-bottom: 20px;
}
.hft-fb-steps-list h3 {
	font-family: var(--fb-display);
	font-weight: 700;
	font-size: 23px;
	color: var(--fb-navy);
	margin: 0 0 8px;
}
.hft-fb-steps-list p { margin: 0; font-size: 16px; line-height: 1.55; }

/* ==========================================================================
   6 — MEMBERSHIP
   ========================================================================== */
.hft-fb-plans {
	position: relative;
	background: var(--fb-navy);
	color: #fff;
	padding: clamp(72px, 9vw, 130px) 0;
	overflow: hidden;
	isolation: isolate;
}
.hft-fb-plans-deco i { position: absolute; border-radius: 50%; z-index: -1; }
.hft-fb-plans-deco i:nth-child(1) { width: 480px; height: 480px; background: rgba(255, 255, 255, .05); left: -160px; top: -200px; }
.hft-fb-plans-deco i:nth-child(2) { width: 300px; height: 300px; background: rgba(251, 185, 21, .12); right: -80px; bottom: -120px; }
.hft-fb-plans-deco i:nth-child(3) { width: 26px; height: 26px; background: var(--fb-yellow); right: 44%; top: 14%; }
.hft-fb-plans-in {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(36px, 5vw, 80px);
	align-items: center;
}
.hft-fb-plans-lede { font-size: 19px; line-height: 1.6; color: rgba(255, 255, 255, .88); margin: 0 0 24px; }
.hft-fb-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.hft-fb-feats li { display: flex; gap: 12px; align-items: center; font-size: 17px; font-weight: 700; color: #fff; }
.hft-fb-feats svg { flex: none; color: var(--fb-navy); background: var(--fb-yellow); border-radius: 50%; padding: 3px; width: 26px; height: 26px; }
.hft-fb-plan-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; align-items: stretch; }
.hft-fb-plan-cap { grid-column: 1 / -1; margin: 0 0 6px; text-align: center; font-family: var(--fb-display); font-weight: 600; font-size: 18px; color: #fff; }
.hft-fb-plan-cap b { color: var(--fb-yellow); }
.hft-fb-plan {
	position: relative;
	background: #fff;
	color: var(--fb-body);
	border-radius: 26px;
	padding: 36px 28px 26px;
	display: flex;
	flex-direction: column;
	text-align: center;
	box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .55);
}
.hft-fb-plan--year { outline: 4px solid var(--fb-yellow); outline-offset: -4px; transform: translateY(-10px); }
.hft-fb-plan-badge {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--fb-yellow);
	color: var(--fb-navy);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 999px;
	white-space: nowrap;
}
.hft-fb-plan-name { font-family: var(--fb-display); font-weight: 700; font-size: 22px; color: var(--fb-navy); margin: 0 0 14px; }
.hft-fb-plan-price { margin: 0; color: var(--fb-navy); display: flex; align-items: flex-start; justify-content: center; gap: 2px; }
.hft-fb-plan-price .cur { font-family: var(--fb-display); font-size: 26px; font-weight: 700; margin-top: 8px; }
.hft-fb-plan-price .amt { font-family: var(--fb-display); font-size: 58px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.hft-fb-plan-price .per { align-self: flex-end; font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--hft-slate, #5A6B7D); }
.hft-fb-plan-note { margin: 8px 0 22px; font-weight: 700; color: var(--hft-green-deep, #1F8551); font-size: 15px; }
.hft-fb-plan--month .hft-fb-plan-note { color: var(--hft-slate, #5A6B7D); }
.hft-fb-plan .hft-fb-btn { margin-top: auto; }
.hft-fb-plan-fine { margin: 12px 0 0; font-size: 14px; font-weight: 700; color: var(--hft-slate, #5A6B7D); }

/* ==========================================================================
   7 — FAQ
   ========================================================================== */
.hft-fb-faq { padding: clamp(64px, 8vw, 110px) 0; background: #fff; }
.hft-fb .hft-fb-faq-in { max-width: 860px; }
.hft-fb-faq-list { display: grid; gap: 14px; }
.hft-fb-faq-i {
	background: var(--fb-cream-50);
	border: 2px solid var(--fb-line);
	border-radius: 20px;
	padding: 0 26px;
	transition: border-color .2s ease;
}
.hft-fb-faq-i[open] { border-color: var(--fb-accent); background: #fff; }
.hft-fb-faq-i summary {
	list-style: none;
	cursor: pointer;
	padding: 22px 36px 22px 0;
	font-family: var(--fb-display);
	font-weight: 600;
	font-size: 20px;
	color: var(--fb-navy);
	position: relative;
}
.hft-fb-faq-i summary::-webkit-details-marker { display: none; }
.hft-fb-faq-i summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--fb-tint);
	color: var(--fb-accent);
	font-size: 22px;
	line-height: 32px;
	text-align: center;
	transition: transform .2s ease;
}
.hft-fb-faq-i[open] summary::after { content: "–"; }
.hft-fb-faq-i p { margin: 0 0 22px; font-size: 17px; line-height: 1.6; }

/* ==========================================================================
   8 — FINAL
   ========================================================================== */
.hft-fb-final {
	position: relative;
	text-align: center;
	padding: clamp(72px, 9vw, 130px) 0;
	background: var(--fb-tint);
	isolation: isolate;
}
.hft-fb-final-in { position: relative; z-index: 1; }
.hft-fb-final .hft-fb-h2 { font-size: clamp(34px, 4.4vw, 56px); }
.hft-fb-final .hft-fb-sub { margin-bottom: 32px; font-size: 20px; }

/* ==========================================================================
   HUB
   ========================================================================== */
.hft-fb-hero--hub { text-align: center; padding-bottom: clamp(72px, 8vw, 120px); }
.hft-fb-hub-in { position: relative; z-index: 1; max-width: 900px; margin-bottom: 56px; }
.hft-fb-hub-in .hft-fb-lede { margin: 0 auto; }
.hft-fb-hub-grid {
	position: relative;
	z-index: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}
.hft-fb-hub-tile {
	display: flex;
	flex-direction: column;
	text-align: left;
	background: #fff;
	border-radius: 26px;
	padding: 18px 18px 22px;
	text-decoration: none !important;
	box-shadow: var(--fb-shadow);
	border-top: 8px solid var(--fb-accent);
	transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease;
	height: 100%;
}
.hft-fb-hub-tile:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -24px rgba(27, 67, 125, .5); }
.hft-fb-hub-img {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	background: var(--fb-tint);
	border-radius: 18px;
	margin-bottom: 16px;
	overflow: hidden;
	padding: 14px;
}
.hft-fb-hub-img img { height: 100%; width: auto; object-fit: contain; border-radius: 6px; box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .35); transform: rotate(-3deg); }
.hft-fb-hub-t { font-family: var(--fb-display); font-weight: 700; font-size: 26px; color: var(--fb-navy); line-height: 1.1; }
.hft-fb-hub-s { font-size: 15px; font-weight: 700; color: var(--hft-slate, #5A6B7D); margin: 4px 0 14px; }
.hft-fb-hub-go { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 800; color: var(--fb-cta); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
	.hft-fb-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.hft-fb-hub-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
	.hft-fb-hero-in { grid-template-columns: 1fr; }
	.hft-fb-fan { height: 440px; max-width: 560px; width: 100%; margin: 0 auto; }
	.hft-fb-plans-in { grid-template-columns: 1fr; }
	.hft-fb-dream-grid,
	.hft-fb-steps-list { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
	.hft-fb-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.hft-fb-h1 { font-size: 40px; }
	.hft-fb-h1 em { white-space: normal; }
	.hft-fb-hero { padding-top: 28px; }
	.hft-fb-hero-cta .hft-fb-btn { width: 100%; }
	.hft-fb-nocard { width: 100%; text-align: center; }
	.hft-fb-proof { gap: 14px 22px; }
	.hft-fb-proof b { font-size: 24px; }
	.hft-fb-fan { height: 340px; }
	.hft-fb-sticker--free { width: 88px; height: 88px; }
	.hft-fb-sticker--free b { font-size: 34px; }
	.hft-fb-sticker--free i { font-size: 13px; }
	.hft-fb-sticker--print { font-size: 15px; padding: 9px 16px; }
	.hft-fb-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
	.hft-fb-g-name { font-size: 16px; }
	.hft-fb-plan-cards { grid-template-columns: 1fr; }
	.hft-fb-plan--year { transform: none; }
	.hft-fb-card { padding: 5px; border-radius: 22px; }
	.hft-fb-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
	.hft-fb-hub-t { font-size: 20px; }
	.hft-fb-faq-i summary { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
	.hft-fb * { animation: none !important; transition: none !important; }
}

/* ==========================================================================
   1.0.297 — form in the hero, state-aware CTAs, admin preview
   ========================================================================== */
.hft-fb-kicker {
	font-family: var(--fb-display);
	font-weight: 600;
	font-size: clamp(20px, 2vw, 26px);
	line-height: 1.2;
	color: var(--fb-accent);
	margin: 18px 0 0;
}
.hft-fb-kicker em { font-style: normal; }
.hft-fb-hero .hft-fb-h1 { margin-top: 6px; font-size: clamp(38px, 5vw, 64px); }
.hft-fb-hero-in { align-items: start; }
.hft-fb-hero .hft-fb-fan { margin-top: 40px; }
.hft-fb-offer { margin-bottom: 22px; }

/* Visitor states: .hft-fb-new = hasn't claimed, .hft-fb-used = already claimed. */
.hft-fb-used { display: none !important; }
html.hft-fc-claimed .hft-fb-new { display: none !important; }
html.hft-fc-claimed a.hft-fb-used,
html.hft-fc-claimed .hft-fb-btn.hft-fb-used { display: inline-flex !important; }
html.hft-fc-claimed p.hft-fb-used,
html.hft-fc-claimed span.hft-fb-used { display: block !important; }

/* The form card (restyles the shared .hft-bc chrome) */
.hft-fb .hft-bc.hft-fb-form {
	position: relative;
	max-width: 560px;
	margin: 0;
	padding: 24px 24px 18px;
	background: #fff;
	border: 0;
	border-radius: 26px;
	box-shadow: 0 30px 60px -30px rgba(27, 67, 125, .45), 0 0 0 3px var(--fb-tint);
	border-top: 8px solid var(--fb-accent);
	scroll-margin-top: 100px;
}
.hft-fb-form-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 12px; margin: 0 0 14px; }
.hft-fb-form-chip {
	display: inline-flex; align-items: center; gap: 7px;
	background: var(--fb-tint); color: var(--fb-accent);
	font-family: var(--fb-display); font-weight: 600; font-size: 17px;
	padding: 7px 14px; border-radius: 999px;
}
.hft-fb-form-mix { font-size: 14px; font-weight: 800; color: var(--hft-slate, #5A6B7D); }
.hft-fb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hft-fb .hft-fb-form .hft-bc-f { margin: 0 0 10px; }
.hft-fb .hft-fb-form input[type="text"],
.hft-fb .hft-fb-form input[type="email"],
.hft-fb .hft-fb-form input[type="password"] { min-height: 52px; font-size: 16px; border-radius: 14px; }
.hft-fb .hft-fb-form input:focus { border-color: var(--fb-accent); box-shadow: 0 0 0 3px var(--fb-tint); }
.hft-fb .hft-fb-form .hft-bc-btn { width: 100%; min-height: 60px; font-size: 18px; margin-top: 4px; box-shadow: 0 10px 22px -10px rgba(214, 51, 123, .75); }
.hft-fb-form-fine { margin: 12px 0 0; font-size: 13px; line-height: 1.5; color: var(--hft-slate, #5A6B7D); }
.hft-fb-form-fine a { color: var(--fb-accent); font-weight: 800; }
.hft-fb .hft-fb-form .hft-bc-used { padding: 4px 2px; background: none; }
.hft-fb-form-flag { margin: 0 0 6px; font-family: var(--fb-display); font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--fb-accent); }
.hft-fb-form-h { margin: 0 0 8px; font-family: var(--fb-display); font-weight: 700; font-size: 26px; line-height: 1.15; color: var(--fb-navy); }
.hft-fb-form-p { margin: 0 0 18px; font-size: 16px; line-height: 1.55; }
.hft-fb-trust { margin: 18px 0 0; font-size: 15px; color: var(--hft-slate, #5A6B7D); }
.hft-fb-trust b { color: var(--fb-navy); font-family: var(--fb-display); font-size: 17px; }
.hft-fb-trust span { margin: 0 6px; opacity: .6; }
.hft-fb-hero .hft-fb-member { text-align: left; max-width: 560px; margin: 0; padding: 28px; background: #fff; border-top: 8px solid var(--fb-accent); box-shadow: 0 30px 60px -30px rgba(27, 67, 125, .45); }
.hft-fb-member-h { font-family: var(--fb-display); font-weight: 700; font-size: 26px; color: var(--fb-navy); margin: 6px 0 18px; }
.hft-fb-adminbar { margin: 0; padding: 10px 16px; text-align: center; background: var(--fb-navy); color: #fff; font-weight: 700; font-size: 14px; }
.hft-fb-dream .hft-fb-sechead .hft-fb-sub { margin-top: 6px; }
@media (max-width: 960px) {
	.hft-fb .hft-bc.hft-fb-form, .hft-fb-hero .hft-fb-member { max-width: none; }
	.hft-fb-hero .hft-fb-fan { margin-top: 10px; }
}
@media (max-width: 520px) {
	.hft-fb-form-row { grid-template-columns: 1fr; gap: 0; }
	.hft-fb .hft-bc.hft-fb-form { padding: 20px 16px 14px; }
}

/* ==========================================================================
   1.0.298 — FREE BUNDLES HUB at /resources/free/  (.hft-fh-*)
   Hero = the grade picker. Each tile carries its own grade accent.
   ========================================================================== */
.hft-fh-hero { text-align: center; padding-top: clamp(32px, 4.5vw, 64px); padding-bottom: clamp(56px, 7vw, 100px); }
.hft-fh-hero-in { position: relative; z-index: 1; max-width: 920px; }
.hft-fh-hero .hft-fb-kicker { margin-top: 16px; }
.hft-fh-hero .hft-fb-h1 { margin: 6px 0 16px; font-size: clamp(38px, 5vw, 64px); }
.hft-fh-offer { margin: 0 auto 10px; max-width: 40em; }
.hft-fh-note {
	display: inline-block;
	margin: 10px auto 0;
	padding: 12px 20px;
	background: #fff;
	border: 2px solid var(--fb-tint);
	border-radius: 999px;
	font-weight: 700;
	font-size: 16px;
	color: var(--fb-navy);
	box-shadow: 0 6px 16px -8px rgba(27, 67, 125, .35);
}
.hft-fh-note a { color: var(--fb-cta); font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
html.hft-fc-claimed p.hft-fh-note.hft-fb-used { display: inline-block !important; }
.hft-fh-grid-wrap { position: relative; z-index: 1; margin-top: clamp(28px, 3.5vw, 44px); }
.hft-fh-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px 24px;
}
.hft-fh-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-align: left;
	background: #fff;
	border-radius: 26px;
	padding: 14px 14px 20px;
	text-decoration: none !important;
	border-top: 8px solid var(--fb-accent);
	box-shadow: var(--fb-shadow);
	transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s ease;
}
.hft-fh-tile:hover,
.hft-fh-tile:focus-visible { transform: translateY(-8px); box-shadow: 0 30px 50px -24px rgba(27, 67, 125, .5); }
.hft-fh-tile:focus-visible { outline: 3px solid var(--fb-accent); outline-offset: 3px; }
/* mini fan of three real covers */
.hft-fh-art {
	position: relative;
	display: block;
	aspect-ratio: 5 / 4;
	background: var(--fb-tint);
	border-radius: 18px;
	margin-bottom: 16px;
	overflow: hidden;
}
.hft-fh-cov {
	position: absolute;
	top: 12%;
	width: 44%;
	background: #fff;
	padding: 5px;
	border-radius: 10px;
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .4);
	transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.hft-fh-cov img { width: 100%; height: auto; border-radius: 6px; }
.hft-fh-cov--1 { left: 28%; z-index: 3; transform: rotate(-2deg); top: 9%; }
.hft-fh-cov--2 { left: 6%; z-index: 2; transform: rotate(-11deg); top: 17%; }
.hft-fh-cov--3 { left: 50%; z-index: 1; transform: rotate(9deg); top: 18%; }
.hft-fh-tile:hover .hft-fh-cov--1 { transform: rotate(0) translateY(-6px) scale(1.04); }
.hft-fh-tile:hover .hft-fh-cov--2 { transform: rotate(-15deg) translateX(-8px); }
.hft-fh-tile:hover .hft-fh-cov--3 { transform: rotate(13deg) translateX(8px); }
.hft-fh-badge {
	position: absolute;
	z-index: 4;
	right: 8px;
	top: 8px;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: var(--fb-accent);
	color: #fff;
	border: 4px solid #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: var(--fb-display);
	font-weight: 700;
	transform: rotate(-12deg);
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .4);
}
.hft-fh-badge b { font-size: 24px; line-height: .9; }
.hft-fh-badge i { font-style: normal; font-size: 10px; letter-spacing: .14em; }
.hft-fh-tile:hover .hft-fh-badge { animation: hft-fb-bob 1.6s ease-in-out infinite; }
.hft-fh-t { font-family: var(--fb-display); font-weight: 700; font-size: 26px; line-height: 1.1; color: var(--fb-navy); padding: 0 6px; }
.hft-fh-s { font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--hft-slate, #5A6B7D); margin: 4px 0 14px; padding: 0 6px; }
.hft-fh-s b { display: block; color: var(--fb-accent); font-weight: 800; margin-bottom: 1px; }
.hft-fh-go {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--fb-cta);
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	line-height: 1.15;
	text-align: center;
	box-shadow: 0 10px 22px -12px rgba(214, 51, 123, .8);
	transition: background-color .18s ease;
}
.hft-fh-go svg { flex: none; transition: transform .18s ease; }
.hft-fh-tile:hover .hft-fh-go { background: var(--fb-cta-h); }
.hft-fh-tile:hover .hft-fh-go svg { transform: translateX(3px); }
.hft-fh-trust { text-align: center; margin-top: 30px; }

/* dream cards on the hub use the page pink, then navy, then green */
.hft-fh-dream { padding-top: clamp(64px, 8vw, 110px); }

/* peek gallery: one cover per grade, 4 across */
.hft-fh-peek { background: var(--fb-cream); }
.hft-fh-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 1180px; margin: 0 auto; }
.hft-fh-g-link { display: block; text-decoration: none !important; }
.hft-fh-g-grade {
	position: absolute;
	top: -12px;
	left: -10px;
	background: var(--fb-accent);
	color: #fff;
	font-family: var(--fb-display);
	font-weight: 700;
	font-size: 15px;
	padding: 6px 14px;
	border-radius: 999px;
	border: 3px solid #fff;
	transform: rotate(-4deg);
}
.hft-fh-g-link:hover .hft-fb-g-art { transform: rotate(0) translateY(-8px) scale(1.03); box-shadow: 0 28px 50px -22px rgba(27, 67, 125, .5); }

.hft-fh-steps { padding-top: clamp(64px, 8vw, 110px); }

/* final band grade chips */
.hft-fh-chips { list-style: none; margin: 0 auto; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 1180px; }
html.hft-fc-claimed .hft-fh-chips.hft-fb-new { display: none !important; }
.hft-fh-chip {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding: 10px 20px;
	border-radius: 999px;
	background: #fff;
	color: var(--fb-accent) !important;
	border: 3px solid var(--fb-accent);
	font-family: var(--fb-display);
	font-weight: 700;
	font-size: 18px;
	text-decoration: none !important;
	transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.hft-fh-chip:hover,
.hft-fh-chip:focus-visible { background: var(--fb-accent); color: #fff !important; transform: translateY(-3px) rotate(-2deg); }

@media (max-width: 1100px) {
	.hft-fh-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
	.hft-fh-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 620px; }
}
@media (max-width: 760px) {
	.hft-fh-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 14px; }
	.hft-fh-tile { padding: 10px 10px 14px; border-radius: 20px; border-top-width: 6px; }
	.hft-fh-art { margin-bottom: 10px; border-radius: 14px; }
	.hft-fh-badge { width: 46px; height: 46px; border-width: 3px; right: 5px; top: 5px; }
	.hft-fh-badge b { font-size: 18px; }
	.hft-fh-badge i { font-size: 8px; }
	.hft-fh-t { font-size: 20px; padding: 0 2px; }
	.hft-fh-s { font-size: 12.5px; margin-bottom: 10px; padding: 0 2px; }
	.hft-fh-go { font-size: 13.5px; min-height: 42px; padding: 8px 10px; gap: 5px; }
	.hft-fh-go svg { width: 15px; height: 15px; }
	.hft-fh-note { border-radius: 18px; font-size: 15px; }
}
@media (max-width: 640px) {
	.hft-fh-hero .hft-fb-h1 { font-size: 38px; }
	.hft-fh-hero .hft-fb-pill { font-size: 13px; }
	.hft-fh-chip { font-size: 16px; min-height: 44px; padding: 8px 16px; }
}

/* ==========================================================================
   1.0.300 — HOMEPAGE (.hft-hm-*) — same model; hero = dream + grade picker
   ========================================================================== */
.hft-hm-hero .hft-fb-h1 { font-size: clamp(42px, 5.8vw, 76px); }
.hft-hm-alt { margin: 26px 0 0; text-align: center; font-size: 17px; font-weight: 700; color: var(--fb-navy); }
.hft-hm-alt a { color: var(--fb-cta); font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.hft-hm-alt a:hover { text-decoration: underline; }
.hft-hm .hft-fh-trust { margin-top: 14px; }

/* stats */
.hft-hm-stats { background: var(--fb-cream-50); padding: 0 0 clamp(40px, 5vw, 64px); margin-top: -8px; position: relative; z-index: 2; }
.hft-hm-stats-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.hft-hm-stat {
	background: #fff;
	border-radius: 24px;
	padding: 22px 18px 20px;
	text-align: center;
	box-shadow: var(--fb-shadow);
	border-bottom: 6px solid var(--st, var(--fb-accent));
}
.hft-hm-stat--1 { --st: #D6337B; }
.hft-hm-stat--2 { --st: #1F8551; }
.hft-hm-stat--3 { --st: #0758A1; }
.hft-hm-stat--4 { --st: #D2470B; }
.hft-hm-stat b { display: block; font-family: var(--fb-display); font-weight: 700; font-size: clamp(30px, 3.2vw, 44px); line-height: 1; color: var(--st); margin-bottom: 6px; }
.hft-hm-stat span { font-size: 15px; font-weight: 700; color: var(--fb-navy); }

/* live sliders keep their component; just give them room */
.hft-hm .hft-hm-slider { padding-top: clamp(24px, 3vw, 40px); padding-bottom: clamp(40px, 5vw, 72px); }

/* showcase */
.hft-hm-show { position: relative; background: var(--fb-tint); padding: clamp(64px, 8vw, 120px) 0; overflow: hidden; }
.hft-hm-show-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.hft-hm-show-copy .hft-fb-h2 { text-align: left; }
.hft-hm-formats { list-style: none; margin: 8px 0 30px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.hft-hm-formats a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 18px;
	border-radius: 999px;
	background: #fff;
	color: var(--fb-accent) !important;
	border: 2px solid var(--fb-accent);
	font-family: var(--fb-display);
	font-weight: 600;
	font-size: 17px;
	text-decoration: none !important;
	transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.hft-hm-formats li:nth-child(odd) a { transform: rotate(-1.5deg); }
.hft-hm-formats li:nth-child(even) a { transform: rotate(1.5deg); }
.hft-hm-formats a:hover,
.hft-hm-formats a:focus-visible { background: var(--fb-accent); color: #fff !important; transform: translateY(-3px) rotate(0); }
.hft-hm-show-cta { margin: 0; }
.hft-hm-fan { --fb-accent: #D6337B; }
.hft-hm-sticker b { font-size: 34px !important; }
.hft-hm-sticker i { font-size: 13px !important; }

/* testimonials */
.hft-hm-quotes { background: var(--fb-cream-50); padding: clamp(64px, 8vw, 120px) 0; }
.hft-hm-quotes-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.hft-hm-quote {
	position: relative;
	margin: 0;
	background: #fff;
	border-radius: 28px;
	padding: 34px 30px 28px;
	box-shadow: var(--fb-shadow);
	border-top: 8px solid var(--qc);
	display: flex;
	flex-direction: column;
}
.hft-hm-quote--1 { --qc: #D6337B; transform: rotate(-1deg); }
.hft-hm-quote--2 { --qc: #0758A1; transform: translateY(-10px); }
.hft-hm-quote--3 { --qc: #1F8551; transform: rotate(1deg); }
.hft-hm-quote-mark { position: absolute; top: -6px; right: 22px; font-family: var(--fb-display); font-weight: 700; font-size: 110px; line-height: 1; color: var(--qc); opacity: .16; }
.hft-hm-quote-stars { color: var(--fb-yellow); font-size: 20px; letter-spacing: 3px; margin-bottom: 12px; }
.hft-hm-quote blockquote { margin: 0 0 22px; font-size: 18px; line-height: 1.6; color: var(--fb-body); flex: 1; }
.hft-hm-quote figcaption { display: flex; align-items: center; gap: 12px; }
.hft-hm-quote figcaption img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--qc); }
.hft-hm-quote figcaption b { display: block; font-family: var(--fb-display); font-weight: 700; font-size: 18px; color: var(--fb-navy); }
.hft-hm-quote figcaption i { font-style: normal; font-size: 14px; font-weight: 700; color: var(--hft-slate, #5A6B7D); }

/* plans: school link */
.hft-hm-school { grid-column: 1 / -1; margin: 6px 0 0; text-align: center; color: rgba(255, 255, 255, .88); font-weight: 700; font-size: 16px; }
.hft-hm-school a { color: var(--fb-yellow) !important; font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.hft-hm-school a:hover { text-decoration: underline; }

/* final */
.hft-hm-final-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 0; }
html.hft-fc-claimed .hft-hm-final-btns .hft-fb-new { display: none !important; }
.hft-hm-final-fine { margin: 16px 0 0; font-size: 14px; font-weight: 700; color: var(--hft-slate, #5A6B7D); }

@media (max-width: 960px) {
	.hft-hm-stats-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	.hft-hm-show-in { grid-template-columns: 1fr; }
	.hft-hm-quotes-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
	.hft-hm-quote--1, .hft-hm-quote--2, .hft-hm-quote--3 { transform: none; }
}
@media (max-width: 640px) {
	.hft-hm-hero .hft-fb-h1 { font-size: 42px; }
	.hft-hm-stat { padding: 16px 10px 14px; border-radius: 18px; }
	.hft-hm-stat span { font-size: 13px; }
	.hft-hm-formats a { font-size: 15px; min-height: 38px; padding: 6px 14px; }
	.hft-hm-final-btns .hft-fb-btn { width: 100%; }
	.hft-hm-sticker b { font-size: 26px !important; }
	.hft-hm-sticker i { font-size: 10px !important; }
}
.hft-fb-pill svg { width: 18px; height: 18px; flex: none; }
