/* =============================================================
   Landing Page — shared styles for all 4 track pages
   Accent color injected per-page via:
     --lp-accent / --lp-accent-lt / --lp-accent-dark
   ============================================================= */

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
	--lp-bg:         #faf9f6;
	--lp-white:      #ffffff;
	--lp-black:      #111827;
	--lp-text:       #374151;
	--lp-muted:      #6b7280;
	--lp-border:     #e5e7eb;
	--lp-radius:     14px;
	--lp-shadow:     0 2px 14px rgba(0,0,0,.07);
	--lp-shadow-lg:  0 10px 40px rgba(0,0,0,.11);
	--lp-max:        1180px;
	--lp-pad:        clamp(1.25rem, 4vw, 2.5rem);
	--lp-font-serif: 'Comic Relief', system-ui, sans-serif;
	--lp-font-sans:  'Comic Relief', system-ui, sans-serif;
	/* These get overridden per page */
	--lp-accent:      #7ed957;
	--lp-accent-lt:   #eafbd8;
	--lp-accent-dark: #5cbe33;
}

/* ─── Reset ──────────────────────────────────────────────── */
.landing-page *, .landing-page *::before, .landing-page *::after { box-sizing: border-box; }
.landing-page { font-family: var(--lp-font-sans); color: var(--lp-text); background: var(--lp-bg); }
#landing-wrapper { overflow-x: hidden; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

.lp-hero {
	background: var(--lp-bg);
	padding: 5rem 0 4.5rem;
	overflow: hidden;
}

.lp-hero__inner {
	max-width: var(--lp-max);
	margin-inline: auto;
	padding-inline: var(--lp-pad);
}

/* Centered hero */
.lp-hero--centered .lp-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lp-hero--centered .lp-hero__title {
	font-size: clamp(2.5rem, 6vw, 4.25rem);
}

.lp-hero--centered .lp-hero__sub {
	max-width: 600px;
	margin-inline: auto;
}

.lp-hero--centered .lp-hero__actions {
	justify-content: center;
}

.lp-hero--centered .lp-hero__trust {
	justify-content: center;
}

/* ── Hero image rating chip ── */
.lp-hero__rating-chip {
	position: absolute;
	bottom: 1.25rem;
	left: 1.25rem;
	background: #fff;
	border-radius: 12px;
	padding: .65rem 1rem;
	display: flex;
	align-items: center;
	gap: .65rem;
	box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.lp-hero__rating-stars {
	font-size: 1rem;
	color: #f59e0b;
	letter-spacing: .05em;
}

.lp-hero__rating-val {
	display: block;
	font-size: .95rem;
	font-weight: 800;
	color: #111827;
	line-height: 1.1;
}

.lp-hero__rating-label {
	display: block;
	font-size: .7rem;
	color: #6b7280;
	line-height: 1.2;
}

/* ── Hero image layout ── */
.lp-hero--has-image .lp-hero__inner {
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	gap: 3.5rem;
}

.lp-hero__image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 420px;
	max-height: 600px;
}

.lp-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

/* ── Left: text ── */
.lp-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: var(--lp-accent-lt);
	color: var(--lp-accent-dark);
	font-size: .75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: .35rem .9rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	border: 1.5px solid var(--lp-accent);
	opacity: .9;
}

.lp-hero__title {
	font-family: var(--lp-font-serif);
	font-size: clamp(2.25rem, 5.5vw, 3.75rem);
	font-weight: 900;
	color: #1a1a2e;
	line-height: 1.1;
	letter-spacing: -.03em;
	margin: 0 0 1.25rem;
}

.lp-hero__title span {
	color: var(--lp-accent);
}

.lp-hero__sub {
	font-size: 1.1rem;
	color: var(--lp-text);
	line-height: 1.75;
	max-width: 480px;
	margin: 0 0 2rem;
}

.lp-hero__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

.lp-btn {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .9rem 2rem;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: all .18s;
	white-space: nowrap;
	cursor: pointer;
	border: none;
}

.lp-btn--primary {
	background: var(--lp-accent);
	color: #000;
}
.lp-btn--primary:hover { background: var(--lp-accent-dark); color: #000; text-decoration: none; }

.lp-btn--ghost {
	background: transparent;
	color: var(--lp-black);
	font-size: .9rem;
	padding: .9rem 0;
	font-weight: 600;
}
.lp-btn--ghost:hover { color: var(--lp-accent); text-decoration: none; }

.lp-hero__trust {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.75rem;
	flex-wrap: wrap;
}

.lp-hero__stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.lp-hero__trust-text { font-size: .82rem; color: var(--lp-muted); font-weight: 500; }
.lp-hero__trust-sep { color: var(--lp-border); }

/* ── Right: visual ── */
.lp-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 380px;
}

.lp-hero__blob {
	width: 340px;
	height: 340px;
	background: var(--lp-accent-lt);
	border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.lp-hero__icon {
	font-size: 6rem;
	line-height: 1;
	filter: drop-shadow(0 8px 24px rgba(0,0,0,.12));
}

/* Decorative ring around blob */
.lp-hero__ring {
	position: absolute;
	width: 390px;
	height: 390px;
	border-radius: 50%;
	border: 2px dashed var(--lp-accent);
	opacity: .25;
	animation: lp-spin 30s linear infinite;
}

@keyframes lp-spin {
	to { transform: rotate(360deg); }
}

/* Floating stat chips */
.lp-hero__chip {
	position: absolute;
	background: var(--lp-white);
	border: 1.5px solid var(--lp-border);
	border-radius: 12px;
	padding: .6rem 1rem;
	display: flex;
	align-items: center;
	gap: .5rem;
	box-shadow: var(--lp-shadow);
	white-space: nowrap;
	z-index: 2;
}
.lp-hero__chip-icon { font-size: 1.25rem; }
.lp-hero__chip-text { font-size: .78rem; font-weight: 700; color: var(--lp-black); }
.lp-hero__chip-sub  { font-size: .7rem; color: var(--lp-muted); }
.lp-hero__chip-val  { display: block; font-size: .78rem; font-weight: 700; color: var(--lp-black); }
.lp-hero__chip-label { display: block; font-size: .68rem; color: var(--lp-muted); }

.lp-hero__chip--tl { top: 5%;  left: -5%; }
.lp-hero__chip--br { bottom: 5%; right: -5%; }

/* ═══════════════════════════════════════════════════════════
   BENEFITS / FEATURES
   ═══════════════════════════════════════════════════════════ */

.lp-benefits {
	background: var(--lp-white);
	padding-block: 5rem;
}

.lp-benefits__inner {
	max-width: var(--lp-max);
	margin-inline: auto;
	padding-inline: var(--lp-pad);
}

.lp-section-eyebrow {
	font-size: .75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--lp-accent);
	margin-bottom: .6rem;
}

.lp-section-title {
	font-family: var(--lp-font-serif);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 900;
	color: #1a1a2e;
	line-height: 1.2;
	letter-spacing: -.02em;
	margin: 0 0 .75rem;
}

.lp-section-sub {
	font-size: 1rem;
	color: var(--lp-muted);
	line-height: 1.7;
	max-width: 560px;
	margin: 0 0 3rem;
}

.lp-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lp-bcard {
	background: var(--lp-bg);
	border: 1.5px solid var(--lp-border);
	border-radius: 18px;
	padding: 2rem 1.75rem;
	transition: box-shadow .2s, transform .2s;
}
.lp-bcard:hover { box-shadow: var(--lp-shadow-lg); transform: translateY(-3px); }

.lp-bcard__icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--lp-accent-lt);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
}

.lp-bcard__title {
	font-family: var(--lp-font-serif);
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 .5rem;
}

.lp-bcard__desc {
	font-size: .9rem;
	color: var(--lp-text);
	line-height: 1.7;
	margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   CURRICULUM / WHAT'S INSIDE
   ═══════════════════════════════════════════════════════════ */

.lp-curriculum {
	background: var(--lp-bg);
	padding-block: 5rem;
}

.lp-curriculum__inner {
	max-width: var(--lp-max);
	margin-inline: auto;
	padding-inline: var(--lp-pad);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.lp-curriculum__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.lp-curriculum__item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	background: var(--lp-white);
	border: 1.5px solid var(--lp-border);
	border-radius: 12px;
	transition: border-color .18s;
}
.lp-curriculum__item:hover { border-color: var(--lp-accent); }

.lp-curriculum__num {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--lp-accent-lt);
	color: var(--lp-accent-dark);
	font-size: .8rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: .1rem;
}

.lp-curriculum__label { font-size: .95rem; font-weight: 600; color: var(--lp-black); margin-bottom: .2rem; }
.lp-curriculum__desc  { font-size: .82rem; color: var(--lp-muted); line-height: 1.5; margin: 0; }

/* Preview card */
.lp-preview-card {
	background: var(--lp-white);
	border: 1.5px solid var(--lp-border);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--lp-shadow-lg);
}

.lp-preview-card__header {
	background: var(--lp-accent-lt);
	padding: 2.5rem;
	text-align: center;
}

.lp-preview-card__icon { font-size: 4rem; display: block; margin-bottom: .75rem; }

.lp-preview-card__title {
	font-family: var(--lp-font-serif);
	font-size: 1.35rem;
	font-weight: 900;
	color: #1a1a2e;
	margin: 0 0 .35rem;
}

.lp-preview-card__sub { font-size: .875rem; color: var(--lp-muted); margin: 0; }

.lp-preview-card__body { padding: 1.75rem; }

.lp-preview-card__features {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.lp-preview-card__feature {
	display: flex;
	align-items: center;
	gap: .6rem;
	font-size: .875rem;
	color: var(--lp-text);
}

.lp-preview-card__check {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--lp-accent-lt);
	color: var(--lp-accent-dark);
	font-size: .65rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-preview-card__cta {
	display: flex;
	width: 100%;
	justify-content: center;
	padding: .85rem;
	background: var(--lp-accent);
	color: #000;
	border-radius: 10px;
	font-size: .95rem;
	font-weight: 700;
	text-decoration: none;
	transition: background .18s;
}
.lp-preview-card__cta:hover { background: var(--lp-accent-dark); color: #000; text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */

.lp-testimonials {
	background: var(--lp-white);
	padding-block: 5rem;
}

.lp-testimonials__inner {
	max-width: var(--lp-max);
	margin-inline: auto;
	padding-inline: var(--lp-pad);
}

.lp-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lp-tcard {
	background: var(--lp-bg);
	border: 1.5px solid var(--lp-border);
	border-radius: 18px;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.lp-tcard__stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

.lp-tcard__quote {
	font-size: .95rem;
	color: var(--lp-text);
	line-height: 1.75;
	margin: 0;
	flex: 1;
}

.lp-tcard__author {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding-top: .75rem;
	border-top: 1px solid var(--lp-border);
}

.lp-tcard__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--lp-accent-lt);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--lp-accent-dark);
	flex-shrink: 0;
	font-family: var(--lp-font-sans);
}

.lp-tcard__name  { font-size: .875rem; font-weight: 700; color: var(--lp-black); }
.lp-tcard__role  { font-size: .78rem; color: var(--lp-muted); }

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */

.lp-faq {
	background: var(--lp-bg);
	padding-block: 5rem;
}

.lp-faq__inner {
	max-width: 760px;
	margin-inline: auto;
	padding-inline: var(--lp-pad);
}

.lp-faq__list { display: flex; flex-direction: column; gap: .75rem; margin-top: 2.5rem; }

.lp-faq__item {
	background: var(--lp-white);
	border: 1.5px solid var(--lp-border);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color .18s;
}
.lp-faq__item.is-open { border-color: var(--lp-accent); }

.lp-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.35rem;
	font-size: .95rem;
	font-weight: 600;
	color: var(--lp-black);
	cursor: pointer;
	user-select: none;
	list-style: none;
}
.lp-faq__question::-webkit-details-marker { display: none; }

.lp-faq__icon {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--lp-bg);
	border: 1.5px solid var(--lp-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	transition: background .18s, transform .25s;
	color: var(--lp-accent);
	font-weight: 700;
	line-height: 1;
}
.lp-faq__item.is-open .lp-faq__icon {
	background: var(--lp-accent-lt);
	transform: rotate(45deg);
}

.lp-faq__answer {
	display: none;
	padding: 0 1.35rem 1.25rem;
	font-size: .9rem;
	color: var(--lp-text);
	line-height: 1.75;
}
.lp-faq__item.is-open .lp-faq__answer { display: block; }

/* ═══════════════════════════════════════════════════════════
   FINAL CTA BANNER
   ═══════════════════════════════════════════════════════════ */

.lp-cta {
	background: #1a1a2e;
	padding-block: 5rem;
	text-align: center;
}

.lp-cta__inner {
	max-width: 640px;
	margin-inline: auto;
	padding-inline: var(--lp-pad);
}

.lp-cta__eyebrow {
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--lp-accent);
	margin-bottom: .75rem;
}

.lp-cta__title {
	font-family: var(--lp-font-serif);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 900;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 1rem;
}

.lp-cta__sub {
	font-size: 1rem;
	color: #9ca3af;
	line-height: 1.7;
	margin: 0 0 2.25rem;
}

.lp-cta__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

.lp-cta__guarantee {
	font-size: .8rem;
	color: #6b7280;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
	.lp-hero__inner { gap: 2.5rem; }
	.lp-hero__blob { width: 290px; height: 290px; }
	.lp-hero__ring { width: 330px; height: 330px; }
	.lp-curriculum__inner { gap: 2.5rem; }
}

@media (max-width: 900px) {
	.lp-benefits__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.lp-hero__inner { grid-template-columns: 1fr; }
	.lp-hero__visual { min-height: 260px; }
	.lp-hero__blob { width: 220px; height: 220px; }
	.lp-hero__icon { font-size: 4.5rem; }
	.lp-hero__ring { width: 255px; height: 255px; }
	.lp-hero__chip--tl { top: 0; left: 5%; }
	.lp-hero__chip--br { bottom: 0; right: 5%; }
	.lp-curriculum__inner { grid-template-columns: 1fr; }

	/* Image-hero: stack image above text on mobile */
	.lp-hero--has-image .lp-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
	.lp-hero__image { min-height: 280px; max-height: 340px; border-radius: 14px; }
}

@media (max-width: 540px) {
	.lp-benefits__grid { grid-template-columns: 1fr; }
	.lp-testimonials__grid { grid-template-columns: 1fr; }
	.lp-hero__actions { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════
   PAGE SECTIONS — Hub · Free Articles · Free Videos · Products
   ═══════════════════════════════════════════════════════════ */

/* ── Shared section helpers ────────────────────────────── */
.lp-articles__inner,
.lp-videos__inner,
.lp-products__inner {
	max-width: var(--lp-max);
	margin-inline: auto;
	padding-inline: var(--lp-pad);
}

.lp-empty {
	color: var(--lp-muted);
	font-size: .95rem;
	padding: 1rem 0;
	grid-column: 1 / -1;
}

/* ── FREE ARTICLES ─────────────────────────────────────── */
.lp-articles {
	background: var(--lp-bg);
	padding-block: 5rem;
}

.lp-articles__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.lp-articles__more { align-self: flex-start; margin-top: .5rem; }

.lp-articles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lp-acard {
	background: var(--lp-white);
	border-radius: var(--lp-radius);
	overflow: hidden;
	box-shadow: var(--lp-shadow);
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s, transform .2s;
}

.lp-acard:hover {
	box-shadow: var(--lp-shadow-lg);
	transform: translateY(-3px);
}

.lp-acard__thumb {
	position: relative;
	height: 180px;
	overflow: hidden;
}

.lp-acard__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lp-acard__cat {
	position: absolute;
	top: .75rem;
	left: .75rem;
	background: var(--lp-accent);
	color: #1a1a2e;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	padding: .2rem .55rem;
	border-radius: 999px;
}

.lp-acard__body {
	padding: 1.25rem 1.35rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.lp-acard__date {
	font-size: .75rem;
	color: var(--lp-muted);
	margin-bottom: .5rem;
}

.lp-acard__title {
	font-family: var(--lp-font-serif);
	font-size: 1rem;
	font-weight: 800;
	color: var(--lp-black);
	line-height: 1.4;
	margin: 0 0 .6rem;
}

.lp-acard__desc {
	font-size: .875rem;
	color: var(--lp-muted);
	line-height: 1.6;
	flex: 1;
	margin: 0 0 1rem;
}

.lp-acard__link {
	font-size: .85rem;
	font-weight: 700;
	color: var(--lp-accent-dark);
	text-decoration: none;
}

.lp-acard__link:hover { text-decoration: underline; }


/* ── FREE VIDEOS ───────────────────────────────────────── */
.lp-videos {
	background: var(--lp-white);
	padding-block: 5rem;
}

.lp-videos__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.lp-videos__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lp-vcard {
	background: var(--lp-bg);
	border-radius: var(--lp-radius);
	overflow: hidden;
	box-shadow: var(--lp-shadow);
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s, transform .2s;
}

.lp-vcard:hover {
	box-shadow: var(--lp-shadow-lg);
	transform: translateY(-3px);
}

.lp-vcard__thumb {
	position: relative;
	height: 185px;
	overflow: hidden;
}

.lp-vcard__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lp-vcard__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .2s;
}

.lp-vcard:hover .lp-vcard__play { opacity: 1; }

.lp-vcard__body {
	padding: 1.25rem 1.35rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.lp-vcard__date {
	font-size: .75rem;
	color: var(--lp-muted);
	margin-bottom: .5rem;
}

.lp-vcard__title {
	font-family: var(--lp-font-serif);
	font-size: 1rem;
	font-weight: 800;
	color: var(--lp-black);
	line-height: 1.4;
	margin: 0 0 .75rem;
	flex: 1;
}

.lp-vcard__link {
	font-size: .85rem;
	font-weight: 700;
	color: var(--lp-accent-dark);
	text-decoration: none;
}

.lp-vcard__link:hover { text-decoration: underline; }


/* ── PRODUCTS & SERVICES ──────────────────────────────── */
.lp-products {
	background: var(--lp-bg);
	padding-block: 5rem;
}

.lp-products__header {
	text-align: left;
	margin-bottom: 2.5rem;
}

.lp-products__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lp-pcard {
	background: var(--lp-white);
	border-radius: var(--lp-radius);
	overflow: hidden;
	box-shadow: var(--lp-shadow);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: box-shadow .2s, transform .2s;
}

.lp-pcard:hover {
	box-shadow: var(--lp-shadow-lg);
	transform: translateY(-3px);
}

.lp-pcard__badge {
	position: absolute;
	top: .75rem;
	right: .75rem;
	background: var(--lp-accent);
	color: #1a1a2e;
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	padding: .2rem .55rem;
	border-radius: 999px;
	z-index: 1;
}

.lp-pcard__thumb {
	height: 180px;
	overflow: hidden;
}

.lp-pcard__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lp-pcard__body {
	padding: 1.25rem 1.35rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.lp-pcard__type {
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--lp-accent-dark);
	margin-bottom: .4rem;
}

.lp-pcard__title {
	font-family: var(--lp-font-serif);
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--lp-black);
	line-height: 1.35;
	margin: 0 0 .65rem;
}

.lp-pcard__desc {
	font-size: .875rem;
	color: var(--lp-muted);
	line-height: 1.6;
	flex: 1;
	margin: 0 0 1.25rem;
}

.lp-pcard__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.lp-pcard__price {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--lp-black);
}

.lp-pcard__cta {
	font-size: .85rem;
	padding: .55rem 1.25rem;
}


/* ── Page-sections responsive ─────────────────────────── */
@media (max-width: 960px) {
	.lp-articles__grid,
	.lp-videos__grid,
	.lp-products__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.lp-articles__grid,
	.lp-videos__grid,
	.lp-products__grid { grid-template-columns: 1fr; }

	.lp-articles__header { flex-direction: column; align-items: flex-start; }
	.lp-videos__header   { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════
   CATEGORY PAGES  (.cat-page)
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.cat-hero {
	background: var(--lp-bg);
	padding: 4rem 0 3rem;
	text-align: center;
	border-bottom: 1px solid var(--lp-border);
}

.cat-hero__inner {
	max-width: var(--lp-max);
	margin-inline: auto;
	padding-inline: var(--lp-pad);
}

.cat-hero__icon {
	font-size: 3rem;
	display: block;
	margin-bottom: 1rem;
	line-height: 1;
}

.cat-hero__title {
	font-family: var(--lp-font-serif);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: var(--lp-black);
	margin: 0 0 .75rem;
	line-height: 1.15;
}

.cat-hero__title span {
	color: var(--lp-accent);
}

.cat-hero__desc {
	font-size: 1.05rem;
	color: var(--lp-muted);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.65;
}

/* ── Category Nav (pill tabs) ─────────────────────────── */
.cat-nav {
	background: var(--lp-white);
	border-bottom: 1px solid var(--lp-border);
	position: sticky;
	top: 0;
	z-index: 90;
}

.cat-nav__inner {
	max-width: var(--lp-max);
	margin-inline: auto;
	padding-inline: var(--lp-pad);
	display: flex;
	gap: .5rem;
	overflow-x: auto;
	padding-block: .875rem;
	scrollbar-width: none;
}

.cat-nav__inner::-webkit-scrollbar { display: none; }

.cat-nav__item {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	white-space: nowrap;
	padding: .45rem 1rem;
	border-radius: 999px;
	border: 1.5px solid var(--lp-border);
	font-size: .875rem;
	font-weight: 600;
	color: var(--lp-text);
	text-decoration: none;
	background: var(--lp-white);
	transition: border-color .18s, color .18s, background .18s;
}

.cat-nav__item:hover {
	border-color: var(--lp-accent);
	color: var(--lp-accent-dark);
}

.cat-nav__item.is-active {
	background: var(--lp-accent);
	border-color: var(--lp-accent);
	color: #1a1a2e;
}

.cat-nav__icon { font-size: 1rem; }

/* ── Grid Section ─────────────────────────────────────── */
.cat-grid-section {
	padding: 3rem 0 5rem;
}

.cat-grid-section__inner {
	max-width: var(--lp-max);
	margin-inline: auto;
	padding-inline: var(--lp-pad);
}

.cat-count {
	font-size: .875rem;
	color: var(--lp-muted);
	font-weight: 600;
	margin: 0 0 1.75rem;
}

.cat-grid {
	grid-template-columns: repeat(3, 1fr) !important;
}

.cat-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 3rem 0;
	color: var(--lp-muted);
}

@media (max-width: 960px) {
	.cat-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
	.cat-grid { grid-template-columns: 1fr !important; }
	.cat-nav  { position: static; }
}
