/* ==========================================================
   Pi9.co ComingNext — Homepage Stylesheet
   ========================================================== */

/* ---------- CSS variables ---------- */
:root {
	--hp-bg:           #0f0f1a;
	--hp-bg-card:      #1a1a2e;
	--hp-bg-card-2:    #16213e;
	--hp-accent:       #6366f1;
	--hp-accent-h:     #4f46e5;
	--hp-accent-rgb:   99, 102, 241;
	--hp-green:        #22c55e;
	--hp-text:         #e2e8f0;
	--hp-muted:        #94a3b8;
	--hp-dim:          #64748b;
	--hp-border:       rgba(99, 102, 241, 0.2);
	--hp-border-light: rgba(255, 255, 255, 0.08);
	--hp-radius:       12px;
	--hp-radius-lg:    20px;
	--hp-shadow:       0 4px 24px rgba(0, 0, 0, 0.4);
	--hp-max-w:        1200px;
	--hp-nav-h:        68px;
}

/* ---------- Hard reset (overrides block themes) ---------- */
body.pi9cn-hp-page {
	margin: 0 !important;
	padding: 0 !important;
	background: var(--hp-bg) !important;
	color: var(--hp-text) !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.pi9cn-hp-page *,
body.pi9cn-hp-page *::before,
body.pi9cn-hp-page *::after {
	box-sizing: border-box;
}

body.pi9cn-hp-page a {
	color: var(--hp-accent);
	text-decoration: none;
}

body.admin-bar.pi9cn-hp-page .hp-nav {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar.pi9cn-hp-page .hp-nav { top: 46px; }
}

/* ---------- Container ---------- */
.hp-container {
	max-width: var(--hp-max-w);
	margin-inline: auto;
	padding-inline: 24px;
}

/* ---------- Section base ---------- */
.hp-section {
	padding-block: 96px;
}

.hp-section-header {
	text-align: center;
	margin-bottom: 56px;
}

.hp-section-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hp-accent);
	margin: 0 0 12px;
}

.hp-section-title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--hp-text);
	margin: 0 0 16px;
	line-height: 1.2;
}

.hp-section-sub {
	font-size: 18px;
	color: var(--hp-muted);
	margin: 0 auto;
	max-width: 560px;
}

/* ---------- Buttons ---------- */
.hp-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.2s ease;
	text-decoration: none !important;
	white-space: nowrap;
	line-height: 1;
}

.hp-btn-primary {
	background: var(--hp-accent);
	color: #fff !important;
	border-color: var(--hp-accent);
}

.hp-btn-primary:hover {
	background: var(--hp-accent-h);
	border-color: var(--hp-accent-h);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(var(--hp-accent-rgb), 0.4);
}

.hp-btn-ghost {
	background: transparent;
	color: var(--hp-text) !important;
	border-color: var(--hp-border-light);
}

.hp-btn-ghost:hover {
	border-color: var(--hp-accent);
	color: var(--hp-accent) !important;
	transform: translateY(-1px);
}

.hp-btn-lg  { padding: 14px 32px; font-size: 16px; border-radius: 12px; }
.hp-btn-xl  { padding: 18px 40px; font-size: 18px; border-radius: 14px; }

/* ---------- Navigation ---------- */
.hp-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--hp-nav-h);
	background: rgba(15, 15, 26, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--hp-border);
	transition: background 0.3s;
}

.hp-nav.scrolled {
	background: rgba(15, 15, 26, 0.97);
}

.hp-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.hp-nav-logo {
	font-size: 20px;
	font-weight: 800;
	color: var(--hp-accent) !important;
	letter-spacing: -0.5px;
	text-decoration: none !important;
	display: flex;
	align-items: center;
}
.hp-nav-logo-img {
	height: 44px;
	width: auto;
	display: block;
	object-fit: contain;
}

.hp-nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
}

.hp-nav-link {
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--hp-muted) !important;
	border-radius: 8px;
	transition: color 0.2s, background 0.2s;
	text-decoration: none !important;
}

.hp-nav-link:hover {
	color: var(--hp-text) !important;
	background: var(--hp-border-light);
}

.hp-nav-cta {
	padding: 9px 20px;
	background: var(--hp-accent);
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.2s;
	text-decoration: none !important;
}

.hp-nav-cta:hover {
	background: var(--hp-accent-h);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(var(--hp-accent-rgb), 0.4);
}

.hp-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.hp-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--hp-text);
	border-radius: 2px;
	transition: all 0.3s;
}

.hp-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hp-nav-toggle.active span:nth-child(2) { opacity: 0; }
.hp-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Main ---------- */
.hp-main {
	padding-top: var(--hp-nav-h);
}

/* ---------- Hero ---------- */
.hp-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-block: 80px;
}

.hp-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.hp-hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.35;
}

.hp-hero-glow--1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, #6366f1 0%, transparent 70%);
	top: -200px;
	left: -100px;
}

.hp-hero-glow--2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
	bottom: -100px;
	right: 10%;
}

.hp-hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(99, 102, 241, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hp-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.hp-hero-eyebrow { margin-bottom: 24px; }

.hp-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(var(--hp-accent-rgb), 0.15);
	border: 1px solid var(--hp-border);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 500;
	color: var(--hp-accent);
}

.hp-hero-title {
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.08;
	color: var(--hp-text);
	margin: 0 0 24px;
}

.hp-hero-title-highlight {
	color: var(--hp-accent);
}

.hp-hero-sub {
	font-size: 18px;
	color: var(--hp-muted);
	margin: 0 0 36px;
	max-width: 480px;
	line-height: 1.7;
}

.hp-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.hp-hero-nudge {
	font-size: 13px;
	color: var(--hp-dim);
	margin: 0;
}

/* ---------- Browser mockup ---------- */
.hp-hero-visual {
	display: flex;
	justify-content: center;
}

.hp-mockup {
	background: var(--hp-bg-card);
	border: 1px solid var(--hp-border);
	border-radius: 16px;
	overflow: hidden;
	width: 100%;
	max-width: 420px;
	box-shadow: var(--hp-shadow), 0 0 60px rgba(var(--hp-accent-rgb), 0.15);
}

.hp-mockup-bar {
	background: var(--hp-bg-card-2);
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid var(--hp-border);
}

.hp-mockup-bar > span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.hp-mockup-bar > span:nth-child(1) { background: #ff5f57; }
.hp-mockup-bar > span:nth-child(2) { background: #ffbd2e; }
.hp-mockup-bar > span:nth-child(3) { background: #28ca41; }

.hp-mockup-url {
	margin-left: auto;
	font-size: 12px;
	color: var(--hp-dim);
	background: rgba(255,255,255,0.05);
	padding: 4px 12px;
	border-radius: 6px;
}

.hp-mockup-url em {
	color: var(--hp-accent);
	font-style: normal;
}

.hp-mockup-screen {
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hp-mockup-badge {
	display: inline-block;
	background: rgba(var(--hp-accent-rgb), 0.2);
	color: var(--hp-accent);
	padding: 5px 14px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	width: fit-content;
}

.hp-mockup-title  { font-size: 22px; font-weight: 800; color: var(--hp-text); letter-spacing: -0.02em; }
.hp-mockup-tagline { font-size: 13px; color: var(--hp-muted); line-height: 1.5; }

.hp-mockup-countdown {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hp-mockup-cd-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(255,255,255,0.05);
	border-radius: 8px;
	padding: 8px 14px;
	min-width: 56px;
}

.hp-mockup-num  { font-size: 20px; font-weight: 800; color: var(--hp-text); line-height: 1; }
.hp-mockup-lbl  { font-size: 10px; color: var(--hp-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.hp-mockup-sep  { font-size: 20px; font-weight: 700; color: var(--hp-accent); }

.hp-mockup-form {
	display: flex;
	gap: 8px;
}

.hp-mockup-input {
	flex: 1;
	background: rgba(255,255,255,0.06);
	border: 1px solid var(--hp-border-light);
	border-radius: 8px;
	padding: 9px 14px;
	font-size: 13px;
	color: var(--hp-dim);
}

.hp-mockup-submit {
	background: var(--hp-accent);
	color: #fff;
	border-radius: 8px;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

/* ---------- How it works ---------- */
.hp-how { background: var(--hp-bg); }

.hp-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hp-step-card {
	background: var(--hp-bg-card);
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius-lg);
	padding: 28px 24px;
	transition: border-color 0.2s, transform 0.2s;
}

.hp-step-card:hover {
	border-color: var(--hp-accent);
	transform: translateY(-3px);
}

.hp-step-num  { font-size: 12px; font-weight: 700; color: var(--hp-accent); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.hp-step-icon { font-size: 28px; margin-bottom: 12px; line-height: 1; }
.hp-step-title { font-size: 16px; font-weight: 700; color: var(--hp-text); margin: 0 0 8px; }
.hp-step-desc  { font-size: 14px; color: var(--hp-muted); margin: 0; line-height: 1.6; }

.hp-how-cta { text-align: center; margin-top: 48px; }

/* ---------- Types ---------- */
.hp-types {
	background: linear-gradient(180deg, var(--hp-bg) 0%, var(--hp-bg-card) 100%);
}

.hp-types-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.hp-type-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--hp-bg-card);
	border: 1px solid var(--hp-border);
	border-radius: 100px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--hp-text);
	transition: border-color 0.2s, background 0.2s;
}

.hp-type-pill:hover {
	border-color: var(--hp-accent);
	background: rgba(var(--hp-accent-rgb), 0.1);
}

/* ---------- Benefits ---------- */
.hp-benefits { background: var(--hp-bg-card); }

.hp-benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.hp-benefit-card {
	background: var(--hp-bg);
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius-lg);
	padding: 28px 24px;
	transition: border-color 0.2s, transform 0.2s;
}

.hp-benefit-card:hover {
	border-color: var(--hp-accent);
	transform: translateY(-3px);
}

.hp-benefit-icon  { font-size: 28px; margin-bottom: 14px; line-height: 1; }
.hp-benefit-title { font-size: 16px; font-weight: 700; color: var(--hp-text); margin: 0 0 8px; }
.hp-benefit-desc  { font-size: 14px; color: var(--hp-muted); margin: 0; line-height: 1.6; }

/* ---------- FAQ ---------- */
.hp-faq { background: var(--hp-bg); }

.hp-faq-inner {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 80px;
	align-items: start;
}

.hp-faq-header {
	position: sticky;
	top: calc(var(--hp-nav-h) + 32px);
}

.hp-faq-header .hp-section-title {
	font-size: clamp(24px, 3vw, 36px);
	text-align: left;
	margin-bottom: 0;
}

.hp-faq-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hp-faq-item {
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius);
	overflow: hidden;
	background: var(--hp-bg-card);
	transition: border-color 0.2s;
}

.hp-faq-item:hover {
	border-color: rgba(var(--hp-accent-rgb), 0.4);
}

.hp-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: none;
	border: none;
	color: var(--hp-text);
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	line-height: 1.4;
	transition: color 0.2s;
}

.hp-faq-q:hover { color: var(--hp-accent); }

.hp-faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--hp-accent-rgb), 0.15);
	border-radius: 50%;
	font-size: 16px;
	color: var(--hp-accent);
	transition: transform 0.3s;
}

.hp-faq-q[aria-expanded="true"] .hp-faq-icon {
	transform: rotate(45deg);
}

.hp-faq-a {
	padding: 0 24px 20px;
	font-size: 15px;
	color: var(--hp-muted);
	line-height: 1.7;
}

.hp-faq-a[hidden] { display: none; }

/* ---------- Final CTA ---------- */
.hp-final-cta {
	background: linear-gradient(180deg, var(--hp-bg-card) 0%, var(--hp-bg) 100%);
}

.hp-final-cta-inner {
	text-align: center;
	position: relative;
}

.hp-final-cta-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 300px;
	background: radial-gradient(ellipse, rgba(var(--hp-accent-rgb), 0.2) 0%, transparent 70%);
	pointer-events: none;
}

.hp-final-cta-inner > *:not(.hp-final-cta-glow) {
	position: relative;
}

.hp-final-cta-title {
	font-size: clamp(30px, 4vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: var(--hp-text);
	margin: 0 0 20px;
}

.hp-final-cta-sub {
	font-size: 18px;
	color: var(--hp-muted);
	margin: 0 auto 40px;
	max-width: 560px;
}

.hp-final-cta-nudge {
	font-size: 13px;
	color: var(--hp-dim);
	margin: 16px 0 0;
}

/* ---------- Footer ---------- */
.hp-footer {
	background: var(--hp-bg-card);
	border-top: 1px solid var(--hp-border);
	padding-top: 72px;
}

.hp-footer-inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 64px;
	padding-bottom: 56px;
}

.hp-footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: var(--hp-accent) !important;
	letter-spacing: -0.5px;
	text-decoration: none !important;
	display: block;
	margin-bottom: 14px;
}
.hp-footer-logo-img {
	height: 32px;
	width: auto;
	display: block;
	object-fit: contain;
}

.hp-footer-tagline {
	font-size: 14px;
	color: var(--hp-muted);
	margin: 0;
	line-height: 1.6;
	max-width: 240px;
}

.hp-footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.hp-footer-col h4 {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hp-dim);
	margin: 0 0 16px;
}

.hp-footer-col a {
	display: block;
	font-size: 14px;
	color: var(--hp-muted) !important;
	text-decoration: none !important;
	margin-bottom: 10px;
	transition: color 0.2s;
}

.hp-footer-col a:hover {
	color: var(--hp-text) !important;
}

.hp-footer-bottom {
	border-top: 1px solid var(--hp-border);
	padding-block: 24px;
}

.hp-footer-bottom .hp-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.hp-footer-bottom p {
	margin: 0;
	font-size: 13px;
	color: var(--hp-dim);
}

.hp-footer-bottom a {
	color: var(--hp-accent) !important;
}

/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 1024px) {
	.hp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

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

	.hp-faq-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hp-faq-header { position: static; }

	.hp-footer-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.hp-section { padding-block: 64px; }
	.hp-hero { padding-block: 60px; min-height: auto; }

	.hp-hero-inner {
		grid-template-columns: 1fr;
		gap: 48px;
		text-align: center;
	}

	.hp-hero-sub { max-width: 100%; }
	.hp-hero-actions { justify-content: center; }
	.hp-hero-visual { order: -1; }
	.hp-mockup { max-width: 320px; }
	.hp-steps-grid { grid-template-columns: 1fr; }
	.hp-benefits-grid { grid-template-columns: 1fr; }
	.hp-footer-links { grid-template-columns: repeat(2, 1fr); }

	.hp-footer-bottom .hp-container {
		flex-direction: column;
		text-align: center;
	}

	.hp-nav-links {
		display: none;
		position: absolute;
		top: var(--hp-nav-h);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		background: rgba(15, 15, 26, 0.98);
		border-bottom: 1px solid var(--hp-border);
		padding: 16px;
		gap: 4px;
		backdrop-filter: blur(12px);
	}

	.hp-nav-links.open { display: flex; }
	.hp-nav-link { padding: 12px 16px; }
	.hp-nav-cta { padding: 12px 16px; text-align: center; }
	.hp-nav-toggle { display: flex; }
}

@media (max-width: 480px) {
	.hp-footer-links { grid-template-columns: 1fr; }
	.hp-types-grid { justify-content: flex-start; }
}

/* ==========================================================
   Explore grid — [pi9cn_explore] shortcode
   ========================================================== */

.hp-explore-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 1.5rem 0 3rem;
	max-width: var(--hp-max-w);
	margin: 0 auto;
}

.hp-listing-card {
	display: flex;
	flex-direction: column;
	background: var(--hp-bg-card);
	border: 1px solid var(--hp-border-light);
	border-radius: var(--hp-radius);
	overflow: hidden;
	text-decoration: none;
	color: var(--hp-text);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	box-shadow: var(--hp-shadow);
}

.hp-listing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
	border-color: var(--hp-border);
	color: var(--hp-text);
	text-decoration: none;
}

.hp-listing-card-thumb {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.hp-listing-card-thumb-placeholder {
	width: 100%;
	height: 180px;
	background: linear-gradient(135deg, var(--hp-bg-card-2), #0b0b14);
}

.hp-listing-card-body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.hp-listing-card-type {
	font-size: 0.72rem;
	color: var(--hp-accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hp-listing-card-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--hp-text);
	line-height: 1.3;
}

.hp-listing-card-tagline {
	font-size: 0.85rem;
	color: var(--hp-muted);
	line-height: 1.45;
}

.hp-explore-empty {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--hp-muted);
}

.hp-explore-empty p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

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

@media (max-width: 540px) {
	.hp-explore-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Explore hero ─────────────────────────────────────────── */
.hp-explore-hero {
	padding: 80px 0 56px;
	text-align: center;
}

.hp-explore-hero-inner {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.hp-explore-hero-badge {
	display: inline-block;
	background: rgba(99, 102, 241, 0.12);
	color: var(--hp-accent);
	border: 1px solid rgba(99, 102, 241, 0.25);
	border-radius: 50px;
	padding: 5px 16px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.hp-explore-hero-headline {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 900;
	line-height: 1.1;
	color: var(--hp-text);
	margin: 0;
	letter-spacing: -0.02em;
}

.hp-explore-hero-body {
	font-size: 1.1rem;
	color: var(--hp-muted);
	line-height: 1.7;
	max-width: 560px;
	margin: 0;
}

.hp-explore-hero-cta {
	font-size: 1rem;
	padding: 14px 28px;
	border-radius: 10px;
}

.hp-explore-hero-note {
	font-size: 0.82rem;
	color: var(--hp-dim, #475569);
	margin: 0;
}

@media (max-width: 540px) {
	.hp-explore-hero { padding: 56px 0 40px; }
	.hp-explore-hero-headline { font-size: 1.8rem; }
}
