/* Live Quiz Pro — Home landing page (mobile + desktop) */
.lqp-home {
	--lqp-h-blue: #1e3a5f;
	--lqp-h-accent: #2563eb;
	--lqp-h-accent-light: #eff6ff;
	--lqp-h-bg: #f1f5f9;
	--lqp-h-card: #ffffff;
	--lqp-h-text: #0f172a;
	--lqp-h-muted: #64748b;
	--lqp-h-border: #e2e8f0;
	--lqp-h-radius: 16px;
	--lqp-h-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
	font-family: 'Hind', system-ui, sans-serif;
	color: var(--lqp-h-text);
	line-height: 1.5;
	box-sizing: border-box;
}

.lqp-home *,
.lqp-home *::before,
.lqp-home *::after {
	box-sizing: border-box;
}

/* Full-width banner — free size, image height auto */
.lqp-home-banner-wrap {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
	background: #0f172a;
}

.lqp-home-banner {
	width: 100%;
	height: auto;
	display: block;
	max-height: none;
	object-fit: contain;
}

.lqp-home-banner-placeholder {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: linear-gradient(135deg, #1e3a5f, #2563eb);
	color: #fff;
	text-align: center;
	padding: 48px 20px;
	font-size: 1rem;
}

.lqp-home-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px 40px;
}

.lqp-home-main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	padding: 32px 0;
}

@media (min-width: 900px) {
	.lqp-home-main {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 40px;
		align-items: start;
		padding: 48px 0;
	}
}

.lqp-home-headline {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 800;
	color: var(--lqp-h-blue);
	line-height: 1.25;
	margin: 0 0 12px;
}

.lqp-home-sub {
	color: var(--lqp-h-muted);
	font-size: 1.05rem;
	margin: 0 0 28px;
}

.lqp-home-features {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lqp-home-features li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.lqp-home-feat-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--lqp-h-accent-light);
	border-radius: 12px;
}

.lqp-home-features strong {
	display: block;
	font-size: 1rem;
	margin-bottom: 4px;
}

.lqp-home-features p {
	margin: 0;
	color: var(--lqp-h-muted);
	font-size: 0.95rem;
}

.lqp-home-why h3 {
	font-size: 1.2rem;
	margin: 0 0 16px;
	color: var(--lqp-h-blue);
}

.lqp-home-why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 600px) {
	.lqp-home-why-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.lqp-home-why-item {
	background: var(--lqp-h-card);
	border: 1px solid var(--lqp-h-border);
	border-radius: var(--lqp-h-radius);
	padding: 16px;
}

.lqp-home-why-item span {
	font-size: 1.4rem;
	display: block;
	margin-bottom: 6px;
}

.lqp-home-why-item strong {
	display: block;
	font-size: 0.95rem;
	margin-bottom: 4px;
}

.lqp-home-why-item p {
	margin: 0;
	font-size: 0.88rem;
	color: var(--lqp-h-muted);
}

/* Registration card */
.lqp-home-form-card {
	background: var(--lqp-h-card);
	border-radius: var(--lqp-h-radius);
	box-shadow: var(--lqp-h-shadow);
	padding: 24px 20px;
	border: 1px solid var(--lqp-h-border);
	position: sticky;
	top: 20px;
}

@media (max-width: 899px) {
	.lqp-home-form-card {
		position: static;
	}
}

.lqp-home-form-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--lqp-h-blue);
}

.lqp-home-form-sub {
	margin: 0 0 16px;
	color: var(--lqp-h-muted);
	font-size: 0.9rem;
}

.lqp-home-test-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.lqp-home-test-tab {
	flex: 1 1 calc(33.33% - 8px);
	min-width: 90px;
	padding: 10px 8px;
	border: 2px solid var(--lqp-h-border);
	border-radius: 10px;
	background: #f8fafc;
	cursor: pointer;
	text-align: center;
	transition: border-color 0.2s, background 0.2s;
	font-family: inherit;
}

.lqp-home-test-tab:hover {
	border-color: var(--lqp-h-accent);
}

.lqp-home-test-tab.is-active {
	border-color: var(--lqp-h-accent);
	background: var(--lqp-h-accent-light);
}

.lqp-tab-label {
	display: block;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--lqp-h-blue);
}

.lqp-tab-meta {
	display: block;
	font-size: 0.75rem;
	color: var(--lqp-h-muted);
	margin-top: 2px;
}

.lqp-home-selected-title {
	font-size: 0.85rem;
	color: var(--lqp-h-accent);
	font-weight: 600;
	margin: 0 0 16px;
	padding: 8px 12px;
	background: var(--lqp-h-accent-light);
	border-radius: 8px;
}

.lqp-home-app-notice {
	background: #fef3c7;
	border-left: 4px solid #f59e0b;
	padding: 10px 12px;
	border-radius: 8px;
	margin-bottom: 14px;
}

.lqp-home-app-notice p {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 600;
	color: #92400e;
}

.lqp-home-field {
	margin-bottom: 14px;
}

.lqp-home-field label {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--lqp-h-text);
}

.lqp-home-field input,
.lqp-home-field select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--lqp-h-border);
	border-radius: 10px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.2s;
	background: #fff;
}

.lqp-home-field input:focus,
.lqp-home-field select:focus {
	outline: none;
	border-color: var(--lqp-h-accent);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.lqp-home-download {
	margin: 16px 0;
	padding: 14px;
	background: #f8fafc;
	border-radius: 10px;
	border: 1px dashed var(--lqp-h-border);
}

.lqp-home-download p {
	margin: 0 0 10px;
	font-size: 0.85rem;
	color: var(--lqp-h-muted);
}

.lqp-home-stores {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.lqp-home-stores .lqp-store-badge,
.lqp-home-stores .lqp-store-badge:hover,
.lqp-home-stores .lqp-store-badge:focus,
.lqp-home-stores .lqp-store-badge:visited,
.lqp-home-stores .lqp-store-badge strong,
.lqp-home-stores .lqp-store-badge small {
	text-decoration: none !important;
	border-bottom: none !important;
}

.lqp-home-store {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	transition: opacity 0.2s;
}

.lqp-home-store:hover {
	opacity: 0.9;
	color: #fff;
}

.lqp-store-play {
	background: #1a1a1a;
}

.lqp-store-apple {
	background: #0071e3;
}

.lqp-home-error {
	background: #fef2f2;
	color: #b91c1c;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 0.9rem;
	margin-bottom: 12px;
}

.lqp-home-submit {
	width: 100%;
	padding: 14px 20px;
	background: var(--lqp-h-accent);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s;
}

.lqp-home-submit:hover:not(:disabled) {
	background: #1d4ed8;
}

.lqp-home-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.lqp-home-terms {
	margin: 12px 0 0;
	font-size: 0.78rem;
	color: var(--lqp-h-muted);
	text-align: center;
}

/* FAQ */
.lqp-home-faq {
	scroll-margin-top: 88px;
}
	padding: 40px 0 20px;
}

.lqp-home-faq h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lqp-h-blue);
	margin: 0 0 20px;
	text-align: center;
}

.lqp-home-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 800px;
	margin: 0 auto;
}

.lqp-home-faq-item {
	background: var(--lqp-h-card);
	border: 1px solid var(--lqp-h-border);
	border-radius: var(--lqp-h-radius);
	overflow: hidden;
}

.lqp-home-faq-item summary {
	padding: 16px 20px;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 12px;
}

.lqp-home-faq-item summary::-webkit-details-marker {
	display: none;
}

.lqp-home-faq-item summary span {
	font-size: 1.1rem;
	color: var(--lqp-h-accent);
	font-weight: 800;
	min-width: 28px;
}

.lqp-home-faq-item p {
	padding: 0 20px 16px 60px;
	margin: 0;
	color: var(--lqp-h-muted);
	font-size: 0.95rem;
}

/* Footer */
.lqp-home-footer {
	text-align: center;
	padding: 24px 0;
	border-top: 1px solid var(--lqp-h-border);
	margin-top: 20px;
}

.lqp-home-footer p {
	margin: 0;
	font-size: 0.85rem;
	color: var(--lqp-h-muted);
}

.lqp-home-empty {
	padding: 20px;
	background: #fef2f2;
	border-radius: 8px;
	color: #b91c1c;
}

/* Active test (admin-selected only) */
.lqp-home-active-test {
	background: linear-gradient(135deg, #eff6ff, #ede9fe);
	border: 1px solid rgba(99, 102, 241, 0.25);
	border-radius: 14px;
	padding: 14px 16px;
	margin-bottom: 18px;
	text-align: center;
}
.lqp-home-active-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6366f1;
	margin-bottom: 6px;
}
.lqp-home-active-test strong {
	display: block;
	font-size: 1rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.35;
}

/* Prize pool table */
.lqp-home-prize-pool {
	margin: 36px 0 28px;
	padding: 28px 24px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}
.lqp-version-tag {
	font-size: 0.75rem;
	color: #94a3b8;
	font-weight: 600;
}
.lqp-prize-pool-header h2 {
	font-size: 1.45rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 6px;
}
.lqp-prize-pool-header p {
	margin: 0 0 16px;
	color: #64748b;
	font-size: 0.92rem;
}
.lqp-prize-table-wrap {
	overflow-x: auto;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
	margin-bottom: 18px;
}
.lqp-prize-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.82rem;
	min-width: 640px;
}
.lqp-prize-table th {
	text-align: left;
	padding: 12px 14px;
	background: linear-gradient(135deg, #1e3a8a, #4f46e5);
	color: #fff;
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.lqp-prize-table td {
	padding: 11px 14px;
	border-bottom: 1px solid #e2e8f0;
	vertical-align: top;
}
.lqp-prize-row--cash { background: #f0fdf4; }
.lqp-prize-row--book { background: #eff6ff; }
.lqp-prize-row--grand { background: #fef3c7; font-weight: 700; }
.lqp-prize-row--package { background: #f5f3ff; }
.lqp-prize-round { font-weight: 700; color: #0f172a; min-width: 180px; }
.lqp-prize-q { font-weight: 700; color: #2563eb; white-space: nowrap; }
.lqp-prize-amount { color: #334155; line-height: 1.4; }
.lqp-prize-winners { font-weight: 800; color: #7c3aed; text-align: center; }
.lqp-prize-rules {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 16px 18px;
}
.lqp-prize-rules h3 {
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: 800;
	color: #1e40af;
}
.lqp-prize-rules ul {
	margin: 0;
	padding-left: 20px;
	color: #475569;
	line-height: 1.6;
	font-size: 0.9rem;
}
.lqp-prize-rules li { margin-bottom: 6px; }

/* Portal top nav */
.lqp-portal-header {
	background: linear-gradient(135deg, #0c2d6b 0%, #1d4ed8 100%);
	color: #fff;
	padding: 12px 16px;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
}
.lqp-portal-header--white {
	background: #fff;
	color: #0f172a;
	box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
	border-bottom: 1px solid #e2e8f0;
}
.lqp-portal-header--white .lqp-portal-brand { color: #0f172a; }
.lqp-portal-header--white .lqp-portal-nav-link {
	color: #334155;
	border-color: transparent;
}
.lqp-portal-header--white .lqp-portal-nav-link:hover,
.lqp-portal-header--white .lqp-portal-nav-link.is-active {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #1d4ed8;
}
.lqp-portal-logo-badge {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 800;
}
.lqp-nav-ico { font-size: 1rem; }
.lqp-portal-tagline-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	font-size: 0.68rem;
	font-weight: 600;
	color: #1e40af;
	max-width: 220px;
	line-height: 1.3;
}
.lqp-tagline-ico { font-size: 1.1rem; }

/* ===== MOCKUP HERO (design image) ===== */
.lqp-home-mockup { background: #f0f4fa; }
.lqp-hero-mockup {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	background:
		radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
		linear-gradient(135deg, #0a3d8f 0%, #1565d8 40%, #1e88e5 70%, #42a5f5 100%);
}
.lqp-hero-mockup[style*="--lqp-hero-bg"] {
	background:
		linear-gradient(135deg, rgba(10,61,143,0.92) 0%, rgba(21,101,216,0.88) 50%, rgba(30,136,229,0.85) 100%),
		var(--lqp-hero-bg) center/cover no-repeat;
}
/* Poster-only hero: clear background, form on the right */
.lqp-hero-mockup--poster-focus {
	min-height: clamp(520px, 72vh, 820px);
	background: #0f172a;
}
.lqp-hero-mockup--poster-focus[style*="--lqp-hero-bg"] {
	background:
		linear-gradient(90deg, transparent 0%, transparent 42%, rgba(15, 23, 42, 0.35) 68%, rgba(15, 23, 42, 0.55) 100%),
		var(--lqp-hero-bg) center center / cover no-repeat;
}
.lqp-hero-mockup--poster-focus .lqp-hero-mockup-overlay {
	display: none;
}
.lqp-hero-mockup--poster-focus .lqp-hero-mockup-inner {
	grid-template-columns: 1fr;
	justify-items: stretch;
	align-items: center;
	min-height: clamp(480px, 68vh, 780px);
	padding: 32px 20px 40px;
}
@media (min-width: 1024px) {
	.lqp-hero-mockup--poster-focus .lqp-hero-mockup-inner {
		grid-template-columns: 1fr minmax(320px, 400px);
		justify-items: end;
		gap: 24px;
		padding: 40px 32px 48px;
	}
}
.lqp-hero-mockup--poster-focus .lqp-hero-form-card {
	width: 100%;
	max-width: 400px;
	margin-left: auto;
	margin-right: 0;
}
.lqp-hero-mockup-overlay {
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}
.lqp-hero-mockup-inner {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 0 auto;
	padding: 40px 20px 48px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: start;
}
@media (min-width: 1024px) {
	.lqp-hero-mockup-inner {
		grid-template-columns: 1.1fr 0.5fr 0.9fr;
		gap: 20px;
		align-items: center;
		min-height: 480px;
	}
}
.lqp-hero-mockup-left { color: #fff; }
.lqp-hero-live-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(0,0,0,0.35);
	border: 1px solid rgba(255,255,255,0.2);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}
.lqp-hero-mockup-title {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3.5vw, 2.35rem);
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	letter-spacing: -0.02em;
}
.lqp-hero-mockup-sub {
	margin: 0 0 18px;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(255,255,255,0.92);
	max-width: 42ch;
}
.lqp-hero-mockup-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}
.lqp-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	background: rgba(255,255,255,0.95);
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.lqp-chip--red { color: #dc2626; }
.lqp-chip--blue { color: #2563eb; }
.lqp-chip--gold { color: #d97706; }
.lqp-chip--yellow { color: #ca8a04; }
.lqp-hero-handwritten {
	margin: 12px 0 0;
	font-family: 'Segoe Script', 'Brush Script MT', cursive;
	font-size: clamp(1.2rem, 2.5vw, 1.65rem);
	font-weight: 700;
	color: #fde047;
	text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.lqp-hero-mockup-visual {
	display: none;
}
@media (min-width: 1024px) {
	.lqp-hero-mockup-visual {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.lqp-hero-mockup-visual img {
		max-height: 340px;
		width: auto;
		border-radius: 16px;
		box-shadow: 0 20px 50px rgba(0,0,0,0.25);
		object-fit: cover;
	}
}
.lqp-hero-form-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(0,0,0,0.2);
	padding: 22px 20px;
	border: 1px solid rgba(255,255,255,0.8);
}
.lqp-form-card-head {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 14px;
}
.lqp-form-card-icon {
	font-size: 1.5rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eff6ff;
	border-radius: 10px;
}
.lqp-active-test-gradient {
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
	border: none !important;
	color: #fff !important;
	padding: 14px 16px !important;
	border-radius: 12px !important;
	margin-bottom: 14px;
}
.lqp-active-test-gradient .lqp-home-active-label { color: rgba(255,255,255,0.85) !important; }
.lqp-active-test-gradient strong { color: #fff !important; font-size: 1rem; }
.lqp-field-icon {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}
.lqp-field-ico {
	font-size: 1.1rem;
	margin-top: 28px;
	opacity: 0.7;
}
.lqp-field-icon > div { flex: 1; }
.lqp-download-compact { margin: 8px 0 12px; }
.lqp-download-compact p { display: none; }

/* Why Join section */
.lqp-why-join {
	background: #fff;
	padding: 48px 0 40px;
	margin-top: -20px;
	border-radius: 24px 24px 0 0;
	position: relative;
	z-index: 2;
	box-shadow: 0 -8px 30px rgba(15,23,42,0.06);
}
.lqp-why-join-title {
	text-align: center;
	margin: 0 0 6px;
	font-size: 1.5rem;
	font-weight: 800;
	color: #0f172a;
}
.lqp-why-join-sub {
	text-align: center;
	margin: 0 0 28px;
	color: #64748b;
	font-size: 0.95rem;
}
.lqp-why-join-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}
.lqp-why-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 22px 18px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(15,23,42,0.06);
	transition: transform 0.2s, box-shadow 0.2s;
}
.lqp-why-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(15,23,42,0.1);
}
.lqp-why-card-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 12px;
}
.lqp-why-icon--gold { background: #fef3c7; }
.lqp-why-icon--red { background: #fee2e2; }
.lqp-why-icon--purple { background: #ede9fe; }
.lqp-why-icon--green { background: #dcfce7; }
.lqp-why-icon--mint { background: #d1fae5; }
.lqp-nav-toggle {
	display: none;
	margin-left: 0;
	border: 1px solid #cbd5e1;
	background: #f8fafc;
	color: #0f172a;
	border-radius: 10px;
	padding: 8px 12px;
	font-weight: 800;
	font-size: 0.82rem;
	cursor: pointer;
}
.lqp-why-card h3 {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 800;
	color: #0f172a;
}
.lqp-why-card p {
	margin: 0;
	font-size: 0.85rem;
	color: #64748b;
	line-height: 1.45;
}
.lqp-portal-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
}
.lqp-portal-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	text-decoration: none !important;
}
.lqp-portal-brand:hover { color: inherit; opacity: 1; }
.lqp-portal-header--white .lqp-portal-brand,
.lqp-portal-header--white .lqp-portal-brand:hover,
.lqp-portal-header--white .lqp-portal-brand:focus {
	color: #0f172a !important;
	opacity: 1 !important;
}
.lqp-portal-header--white .lqp-portal-brand-text strong,
.lqp-portal-header--white .lqp-portal-brand-text small {
	color: #0f172a !important;
	opacity: 1 !important;
}
.lqp-header-admin {
	color: #64748b !important;
	font-weight: 700;
	font-size: 0.82rem;
	text-decoration: none !important;
	white-space: nowrap;
}
.lqp-portal-header--white .lqp-header-admin:hover {
	color: #1d4ed8 !important;
}
.lqp-portal-logo { height: 42px; width: auto; border-radius: 8px; }
.lqp-portal-logo-icon { font-size: 1.8rem; }
.lqp-portal-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.lqp-portal-brand-text strong { font-size: 0.95rem; letter-spacing: 0.02em; }
.lqp-portal-brand-text small { font-size: 0.62rem; opacity: 0.85; letter-spacing: 0.06em; }
.lqp-portal-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	flex: 1;
	justify-content: center;
}
.lqp-portal-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	color: rgba(255,255,255,0.9);
	text-decoration: none !important;
	font-size: 0.85rem;
	font-weight: 600;
	border: 1px solid transparent;
	transition: background 0.15s, border-color 0.15s;
}
.lqp-portal-nav-link:hover,
.lqp-portal-nav-link.is-active {
	background: rgba(255,255,255,0.14);
	border-color: rgba(255,255,255,0.25);
	color: #fff;
}
.lqp-portal-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ef4444;
	box-shadow: 0 0 0 3px rgba(239,68,68,0.35);
	animation: lqp-pulse 1.5s infinite;
}
@keyframes lqp-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}
.lqp-portal-tagline {
	margin: 0;
	font-size: 0.72rem;
	opacity: 0.85;
	max-width: 220px;
	text-align: right;
}
.lqp-portal-footer-bar {
	background: linear-gradient(135deg, #0c2d6b, #1e40af);
	color: #fff;
	padding: 20px 16px 10px;
	margin-top: 32px;
}
.lqp-portal-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	align-items: start;
}
.lqp-portal-footer-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.82rem;
}
.lqp-portal-footer-item strong { display: block; font-size: 0.88rem; }
.lqp-portal-footer-item small { opacity: 0.85; }
.lqp-portal-footer-slogan {
	margin: 0;
	font-style: italic;
	color: #fde047;
	font-weight: 700;
	text-align: right;
	grid-column: 1 / -1;
}
.lqp-portal-copy {
	text-align: center;
	font-size: 0.75rem;
	opacity: 0.75;
	margin: 12px 0 0;
}
.lqp-portal-page-inner { padding: 32px 0 20px; }
.lqp-portal-section { margin-bottom: 24px; }
.lqp-youtube-wrap {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--lqp-h-shadow);
	background: #000;
	aspect-ratio: 16/9;
}
.lqp-youtube-wrap iframe,
.lqp-youtube-iframe {
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
}
.lqp-lb-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}
.lqp-lb-table th {
	background: linear-gradient(135deg, #1e3a8a, #4f46e5);
	color: #fff;
	padding: 12px 14px;
	text-align: left;
	font-size: 0.75rem;
	text-transform: uppercase;
}
.lqp-lb-table td {
	padding: 10px 14px;
	border-bottom: 1px solid #e2e8f0;
}
.lqp-lb-live-note,
.lqp-live-badge {
	color: #16a34a;
	font-weight: 700;
	font-size: 0.85rem;
}
.lqp-lb-winners-title { margin: 28px 0 12px; font-size: 1.2rem; color: var(--lqp-h-blue); }
.lqp-prev-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}
.lqp-prev-card {
	background: #fff;
	border: 1px solid var(--lqp-h-border);
	border-radius: 14px;
	padding: 18px;
	box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}
.lqp-prev-card h3 { margin: 0 0 8px; font-size: 1rem; }
.lqp-prev-meta { color: var(--lqp-h-muted); font-size: 0.85rem; margin: 0 0 14px; }
.lqp-prev-btn { display: block; text-align: center; text-decoration: none !important; font-size: 0.9rem; padding: 12px; }

@media (max-width: 768px) {
	.lqp-portal-tagline { display: none; }
	.lqp-portal-nav { justify-content: flex-start; }
}

/* ===== Full Prize Page (3 sections) ===== */
.lqp-portal-section {
	margin: 40px 0;
	padding-top: 20px;
	scroll-margin-top: 80px;
}
.lqp-section-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--lqp-h-blue);
	margin: 0 0 12px;
}
.lqp-prize-page { padding: 0 0 24px; }
.lqp-prize-hero {
	background: linear-gradient(135deg, #0c2d6b 0%, #1d4ed8 55%, #312e81 100%);
	color: #fff;
	text-align: center;
	padding: 36px 20px 32px;
	border-radius: 0 0 20px 20px;
	margin: 0 calc(-1 * min(16px, 4vw)) 28px;
	position: relative;
	overflow: hidden;
}
.lqp-prize-hero-icons { font-size: 2rem; margin-bottom: 8px; }
.lqp-prize-hero-title {
	margin: 0 0 8px;
	font-size: clamp(1.3rem, 4vw, 2rem);
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.lqp-prize-hero-tag { margin: 0 0 14px; opacity: 0.9; font-weight: 600; letter-spacing: 0.12em; font-size: 0.85rem; }
.lqp-prize-hero-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 12px;
}
.lqp-prize-hero-pills span {
	background: rgba(255,255,255,0.15);
	border: 1px solid rgba(255,255,255,0.25);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
}
.lqp-prize-hero-slogan {
	margin: 0;
	font-style: italic;
	color: #fde047;
	font-weight: 700;
	font-size: 1rem;
}
.lqp-prize-block {
	margin-bottom: 32px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 12px 32px rgba(15,23,42,0.07);
	overflow: hidden;
}
.lqp-prize-block-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	border-bottom: 1px solid #e2e8f0;
}
.lqp-prize-block--digital .lqp-prize-block-head { background: linear-gradient(90deg, #eff6ff, #fff); }
.lqp-prize-block--cash .lqp-prize-block-head { background: linear-gradient(90deg, #ecfdf5, #fff); }
.lqp-prize-block--books .lqp-prize-block-head { background: linear-gradient(90deg, #f5f3ff, #fff); }
.lqp-prize-block-title { display: flex; gap: 12px; align-items: flex-start; }
.lqp-prize-block-icon { font-size: 1.8rem; }
.lqp-prize-block-title h2 { margin: 0 0 4px; font-size: 1.1rem; color: #0f172a; }
.lqp-prize-block-title p { margin: 0; font-size: 0.85rem; color: #64748b; }
.lqp-prize-summary-box {
	padding: 12px 16px;
	border-radius: 12px;
	text-align: center;
	min-width: 160px;
}
.lqp-prize-summary-box p { margin: 0 0 4px; font-size: 0.75rem; opacity: 0.9; }
.lqp-prize-summary-box strong { display: block; font-size: 1.15rem; }
.lqp-prize-summary-box small { font-size: 0.72rem; opacity: 0.85; }
.lqp-prize-summary-box--blue { background: #1e40af; color: #fff; }
.lqp-prize-summary-box--green { background: #166534; color: #fff; }
.lqp-prize-summary-box--purple { background: #6d28d9; color: #fff; }
.lqp-prize-cash-banner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 8px;
	align-items: center;
	padding: 12px 16px;
	background: #dbeafe;
	border-bottom: 2px solid #93c5fd;
	font-size: 0.82rem;
	font-weight: 700;
	text-align: center;
}
.lqp-prize-cash-banner strong { color: #166534; font-size: 1.1rem; }
.lqp-prize-cash-banner em { color: #92400e; font-style: normal; font-size: 0.78rem; }
.lqp-prize-sheet { width: 100%; border-collapse: collapse; font-size: 0.8rem; min-width: 600px; }
.lqp-prize-sheet th {
	padding: 11px 10px;
	text-align: center;
	font-weight: 700;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #fff;
	white-space: nowrap;
}
.lqp-prize-sheet--digital th { background: #1e40af; }
.lqp-prize-sheet--cash th { background: #15803d; }
.lqp-prize-sheet--books th { background: #5b21b6; }
.lqp-prize-sheet td {
	padding: 10px;
	border-bottom: 1px solid #e2e8f0;
	text-align: center;
	vertical-align: middle;
}
.lqp-prize-sheet tbody tr:nth-child(even) { background: #f8fafc; }
.lqp-prize-sheet--digital tbody tr:nth-child(even) { background: #eff6ff; }
.lqp-prize-sheet--books tbody tr:nth-child(even) { background: #faf5ff; }
.lqp-prize-gift-name { text-align: left !important; font-weight: 600; line-height: 1.35; min-width: 180px; }
.lqp-prize-bar-cell { position: relative; min-width: 120px; }
.lqp-prize-bar {
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	height: 70%;
	background: linear-gradient(90deg, #3b82f6, #60a5fa);
	border-radius: 4px;
	opacity: 0.35;
	max-width: calc(100% - 8px);
}
.lqp-prize-bar-val { position: relative; z-index: 1; font-weight: 700; }
.lqp-prize-sheet tfoot td {
	background: #fef3c7;
	font-weight: 800;
	color: #78350f;
	padding: 12px 10px;
}
.lqp-prize-sheet--cash tfoot td { background: #dcfce7; color: #14532d; }
.lqp-prize-sheet--books tfoot td { background: #fef3c7; color: #713f12; }
.lqp-prize-foot-label { text-align: left !important; text-transform: uppercase; letter-spacing: 0.04em; }
.lqp-prize-stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding: 16px 20px;
	background: #f8fafc;
}
.lqp-prize-stat {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 14px;
	border-radius: 12px;
	font-size: 0.85rem;
}
.lqp-prize-stat span { font-size: 1.5rem; }
.lqp-prize-stat small { display: block; font-size: 0.72rem; color: #64748b; }
.lqp-prize-stat strong { font-size: 1.2rem; color: #0f172a; }
.lqp-prize-stat--blue { background: #dbeafe; }
.lqp-prize-stat--green { background: #dcfce7; }
.lqp-prize-stat--gold { background: #fef3c7; }
.lqp-prize-cta {
	text-align: center;
	padding: 28px 16px;
	background: linear-gradient(180deg, #f8fafc, #fff);
	border-radius: 16px;
	border: 1px solid #e2e8f0;
}
.lqp-prize-cta-brand { margin: 0 0 6px; font-weight: 700; color: #1e40af; }
.lqp-prize-cta-slogan { margin: 0 0 16px; font-style: italic; color: #64748b; }
.lqp-prize-cta-btn { display: inline-block; text-decoration: none !important; max-width: 360px; }

@media (max-width: 768px) {
	.lqp-prize-cash-banner { grid-template-columns: 1fr; }
	.lqp-prize-stats-row { grid-template-columns: 1fr; }
	.lqp-prize-block-head { flex-direction: column; }
}

/* White header — original logo colours, Register CTA */
.lqp-portal-header--white .lqp-portal-logo {
	height: 44px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
	background: transparent;
	filter: none;
}
.lqp-header-actions {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 12px;
}
.lqp-header-register {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	border-radius: 999px;
	background: #2563eb;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	font-size: 0.95rem;
	white-space: nowrap;
}
.lqp-header-register:hover { background: #1d4ed8; color: #fff !important; }

/* Home: banner fills the whole dark stage; form sits on the right */
.lqp-hero-stage {
	position: relative;
	overflow: hidden;
	background: #0b1220;
	min-height: clamp(520px, 74vh, 860px);
}
.lqp-hero-stage-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	z-index: 0;
	pointer-events: none;
}
.lqp-hero-stage-inner {
	position: relative;
	z-index: 1;
	max-width: none;
	margin: 0;
	padding: 36px 20px 48px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
	min-height: clamp(520px, 74vh, 860px);
}
.lqp-hero-spacer { display: none; }
.lqp-hero-stage-inner--form-only {
	grid-template-columns: 1fr;
	justify-items: end;
	padding: 40px clamp(16px, 4vw, 48px) 48px;
	align-items: center;
}
@media (min-width: 960px) {
	.lqp-hero-stage-inner--form-only {
		padding-right: 48px;
	}
}
.lqp-hero-photo { display: none; }
.lqp-hero-stage .lqp-hero-form-card {
	width: 100%;
	max-width: 400px;
	margin-left: auto;
	margin-right: 0;
	position: relative;
	z-index: 2;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.lqp-join-card-wrap { display: flex; justify-content: center; padding: 48px 16px; }
.lqp-join-card-wrap .lqp-home-form-card { width: 100%; max-width: 420px; }
.lqp-pdf-embed { margin-top: 20px; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; }
.lqp-pdf-embed iframe { width: 100%; min-height: 70vh; border: 0; }
.lqp-pdf-link { display: inline-block; text-align: center; text-decoration: none !important; max-width: 280px; }
.lqp-extra-body { font-size: 1.05rem; line-height: 1.7; color: #334155; }
.lqp-admin-local { max-width: 860px; margin: 32px auto; padding: 0 16px 48px; font-family: 'Hind', system-ui, sans-serif; }
.lqp-admin-local h1 { margin-bottom: 8px; }
.lqp-admin-local form { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 20px; margin-bottom: 24px; }
.lqp-admin-local label { display: block; font-weight: 700; margin: 12px 0 6px; }
.lqp-admin-local input[type="text"],
.lqp-admin-local input[type="url"],
.lqp-admin-local textarea { width: 100%; padding: 10px 12px; border: 1px solid #cbd5e1; border-radius: 10px; }
.lqp-admin-local button, .lqp-admin-local .lqp-admin-btn {
	margin-top: 12px; padding: 10px 16px; border: 0; border-radius: 10px; background: #2563eb; color: #fff; font-weight: 700; cursor: pointer;
}
.lqp-admin-pages { list-style: none; padding: 0; }
.lqp-admin-pages li { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
body.lqp-portal-page, body.lqp-home-fullpage { font-family: 'Hind', system-ui, sans-serif; }

/* Downloads page — ANTHE-style */
.lqp-dl-page { background: #fff; min-height: 60vh; }
.lqp-dl-hero {
	background: linear-gradient(90deg, #00b4ef 0%, #0095d9 55%, #0077c8 100%);
	padding: 28px 20px;
}
.lqp-dl-hero-inner {
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	flex-wrap: wrap;
}
.lqp-dl-hero-logo {
	height: 110px;
	width: auto;
	max-width: min(280px, 80vw);
	object-fit: contain;
	filter: drop-shadow(0 8px 18px rgba(0, 40, 80, 0.25));
}
.lqp-dl-hero-title {
	margin: 0;
	color: #fff;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	letter-spacing: 0.02em;
	text-shadow: 0 2px 0 rgba(0,0,0,0.08);
}
.lqp-dl-body {
	max-width: 640px;
	margin: 0 auto;
	padding: 40px 20px 64px;
	text-align: center;
}
.lqp-dl-heading {
	margin: 0 0 28px;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #334155;
	display: inline-block;
	border-bottom: 3px solid #2563eb;
	padding-bottom: 6px;
}
.lqp-dl-empty { color: #64748b; }
.lqp-dl-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 22px;
	text-align: left;
	max-width: 420px;
}
.lqp-dl-item {
	display: flex;
	align-items: center;
	gap: 14px;
}
.lqp-dl-icon { flex-shrink: 0; }
.lqp-dl-meta { display: flex; flex-direction: column; gap: 2px; }
.lqp-dl-meta strong { font-size: 0.95rem; color: #0f172a; }
.lqp-dl-meta a {
	color: #2563eb;
	font-size: 0.88rem;
	text-decoration: none;
	font-weight: 600;
}
.lqp-dl-meta a:hover { text-decoration: underline; }
.lqp-prize-media-page .lqp-dl-body { max-width: 980px; }
.lqp-prize-media-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 22px;
	margin: 0 0 36px;
	text-align: left;
}
.lqp-prize-media-card {
	margin: 0;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
}
.lqp-prize-media-card img {
	display: block;
	width: 100%;
	height: auto;
}
.lqp-prize-media-card figcaption {
	padding: 10px 12px;
	font-size: 0.92rem;
	font-weight: 600;
	color: #0f172a;
}

/* Exam pattern & syllabus */
.lqp-sy-page { background: #fff; min-height: 60vh; }
.lqp-sy-body {
	max-width: 860px;
	margin: 0 auto;
	padding: 40px 20px 72px;
	text-align: center;
}
.lqp-sy-table-wrap {
	overflow-x: auto;
	margin: 8px auto 28px;
	max-width: 760px;
	border-radius: 4px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.lqp-sy-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	min-width: 560px;
}
.lqp-sy-table th {
	background: #4fc3f7;
	color: #fff;
	font-weight: 700;
	padding: 12px 10px;
	text-align: center;
}
.lqp-sy-table td {
	padding: 14px 10px;
	text-align: center;
	border: 1px solid #e2e8f0;
	background: #fff;
	color: #334155;
}
.lqp-sy-accords {
	max-width: 760px;
	margin: 8px auto 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-align: left;
}
.lqp-sy-accord {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
	overflow: hidden;
}
.lqp-sy-accord summary {
	list-style: none;
	cursor: pointer;
	padding: 16px 18px;
	font-weight: 700;
	color: #0288d1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.lqp-sy-accord summary::-webkit-details-marker { display: none; }
.lqp-sy-accord summary::after {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 2px solid #0288d1;
	border-bottom: 2px solid #0288d1;
	transform: rotate(45deg);
	transition: transform 0.15s;
	flex-shrink: 0;
}
.lqp-sy-accord[open] summary::after {
	transform: rotate(-135deg);
	margin-top: 6px;
}
.lqp-sy-accord-body { padding: 0 16px 18px; }
.lqp-sy-accord-body .lqp-sy-table-wrap { margin-bottom: 8px; }
.lqp-sy-body-text {
	color: #475569;
	line-height: 1.65;
	font-size: 0.95rem;
	padding: 4px 4px 8px;
}
.lqp-sy-body-text p { margin: 0 0 10px; }

@media (max-width: 768px) {
	.lqp-prize-cash-banner { grid-template-columns: 1fr; }
	.lqp-prize-stats-row { grid-template-columns: 1fr; }
	.lqp-prize-block-head { flex-direction: column; }
}

@media (max-width: 767px) {
	.lqp-portal-header {
		padding: 8px 10px;
		position: sticky;
		top: 0;
		z-index: 40;
	}
	.lqp-portal-header-inner { gap: 8px; }
	.lqp-portal-brand-text small { display: none; }
	.lqp-portal-brand-text strong { font-size: 0.82rem; }
	.lqp-portal-header--white .lqp-portal-logo,
	.lqp-portal-logo { height: 34px; max-width: 120px; }
	.lqp-header-admin { display: none; }
	.lqp-header-register {
		padding: 8px 12px;
		font-size: 0.8rem;
	}
	.lqp-nav-toggle { display: inline-flex; align-items: center; }
	.lqp-portal-nav {
		display: none;
		flex: 1 1 100%;
		flex-direction: column;
		justify-content: stretch;
		gap: 6px;
		padding-top: 4px;
	}
	.lqp-portal-header.is-nav-open .lqp-portal-nav { display: flex; }
	.lqp-portal-nav-link {
		width: 100%;
		justify-content: center;
		padding: 10px 12px;
		border: 1px solid #e2e8f0;
		background: #f8fafc;
		color: #0f172a;
		border-radius: 12px;
		font-size: 0.9rem;
	}
	.lqp-portal-header--white .lqp-portal-nav-link.is-active,
	.lqp-portal-header--white .lqp-portal-nav-link:hover {
		background: #eff6ff;
		border-color: #bfdbfe;
		color: #1d4ed8;
	}
	.lqp-hero-stage {
		min-height: 0;
		background: #0b1220;
	}
	.lqp-hero-stage-bg {
		position: relative;
		inset: auto;
		width: 100%;
		height: auto;
		max-height: 42vh;
		object-fit: contain;
		object-position: center top;
		background: #0b1220;
	}
	.lqp-hero-stage-inner,
	.lqp-hero-stage-inner--form-only {
		min-height: 0;
		justify-items: stretch;
		padding: 12px 12px 18px;
		background: #f1f5f9;
	}
	.lqp-hero-stage .lqp-hero-form-card {
		max-width: none;
		margin: 0;
		box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
	}
	.lqp-why-join {
		margin-top: 0;
		padding: 28px 0 20px;
		border-radius: 0;
		box-shadow: none;
	}
	.lqp-why-join-title { font-size: 1.2rem; padding: 0 8px; }
	.lqp-why-join-sub { font-size: 0.88rem; padding: 0 12px; margin-bottom: 16px; }
	.lqp-why-join-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.lqp-why-card { padding: 14px 10px; }
	.lqp-why-card h3 { font-size: 0.88rem; }
	.lqp-why-card p { font-size: 0.75rem; }
	.lqp-home-inner { padding: 0 12px 28px; }
	.lqp-home-faq { padding-top: 8px; }
	.lqp-home-faq-item summary { font-size: 0.92rem; }
	.lqp-home-submit { width: 100%; }
	.lqp-portal-footer-bar { margin-top: 16px; padding: 16px 12px 8px; }
}
