/* ===== Design Tokens ===== */
:root {
	--hp-purple: #35107a;
	--hp-purple-dark: #4a1a96;
	--hp-purple-light: #6a35d7;
	--hp-border: #eae2f7;
	--hp-text: #1f1b2e;
	--hp-text-secondary: #726982;
	--hp-text-light: #faf8f4;
	--hp-card-bg: rgba(255,255,255,0.88);
	--hp-card-bg-alt: rgba(255,255,255,0.86);
	--hp-radius-pill: 999px;
	--hp-radius-card: 20px;
	--hp-radius-lg: 28px;
	--hp-shadow-card: 0px 10px 12px rgba(56,20,122,0.05);
	--hp-shadow-cta: 0px 18px 36px -8px rgba(56,20,122,0.13);
	--hp-max-width: 1200px;
}

/* ===== Shared Components ===== */

/* Pill tag (eyebrow label with dot) */
.hp-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--hp-purple);
}
.hp-pill-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--hp-purple);
	flex-shrink: 0;
}

/* Buttons */
.hp-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 700;
	line-height: 1.12;
	border-radius: var(--hp-radius-pill);
	text-decoration: none;
	transition: opacity 0.2s;
}
.hp-btn:active { opacity: 0.8; }

/* Primary button: solid purple */
.hp-btn-primary {
	background: var(--hp-purple);
	color: var(--hp-text-light);
	padding: 10px 18px;
}

/* Outline button: white bg, purple border/text */
.hp-btn-outline {
	background: rgba(255,255,255,0.84);
	color: var(--hp-purple);
	border: 1px solid var(--hp-border);
	padding: 10px 18px;
}

/* Small outline variant (for product/event cards) */
.hp-btn-sm {
	padding: 10px 16px;
}
.hp-btn-outline-sm {
	background: rgba(255,255,255,0.84);
	color: var(--hp-purple);
	border: 1px solid var(--hp-border);
	font-size: 12.5px;
	font-weight: 700;
	line-height: 1.12;
}

/* White button on dark bg */
.hp-btn-white {
	background: rgba(255,255,255,0.96);
	color: var(--hp-purple);
	font-size: 12.5px;
	font-weight: 700;
	padding: 10px 18px;
}

/* FAQ panel button */
.hp-btn-faq {
	background: rgba(255,255,255,0.16);
	color: var(--hp-text-light);
	border: 1px solid var(--hp-border);
	padding: 10px 18px;
	font-size: 12.5px;
	font-weight: 700;
	backdrop-filter: blur(6px);
}

/* Arrow inside buttons */
.hp-btn-arrow {
	font-size: 12.5px;
}

/* Shared section layout */
.hp-section {
	padding: 48px 16px;
}
.hp-section-inner {
	max-width: var(--hp-max-width);
	margin: 0 auto;
}
.hp-section-title {
	font-size: 27px;
	font-weight: 700;
	color: var(--hp-text);
	line-height: 1.22;
	margin-bottom: 12px;
}
.hp-section-desc {
	font-size: 14px;
	color: var(--hp-text-secondary);
	line-height: 1.57;
	margin-bottom: 24px;
}

/* Shared dot (for product card icons) */
.hp-dot {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--hp-purple);
}
.hp-dot-blue { background: #4a90d9; }
.hp-dot-amber { background: #f0a050; }
.hp-dot-purple { background: var(--hp-purple); }

/* Tag pill (for event cards) */
.hp-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10.5px;
	font-weight: 700;
	color: var(--hp-purple);
	background: rgba(250,248,244,0.82);
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius-pill);
	padding: 6px 12px;
	backdrop-filter: blur(6px);
}
.hp-tag-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--hp-purple);
	flex-shrink: 0;
}

/* Accent bar (top of fact/product cards) */
.hp-fact-accent {
	width: 38px;
	height: 3px;
	border-radius: 2px;
	background: var(--hp-purple);
	margin-bottom: 14px;
}
.hp-product-accent {
	width: 72px;
	height: 3px;
	border-radius: 2px;
	background: var(--hp-purple);
	margin-bottom: 18px;
}

/* ===== Section 1: Hero ===== */
.hp-hero {
	padding: 0 16px 48px;
}
.hp-hero-inner {
	max-width: var(--hp-max-width);
	margin: 0 auto;
}
.hp-hero-copy {
	/* mobile: full width */
}
.hp-hero-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--hp-text);
	line-height: 1.22;
	margin: 14px 0 12px;
}
.hp-hero-subtitle {
	font-size: 14px;
	color: var(--hp-text-secondary);
	line-height: 1.57;
	margin-bottom: 8px;
}
.hp-hero-body {
	font-size: 14px;
	color: var(--hp-text-secondary);
	line-height: 1.57;
	margin-bottom: 28px;
}
.hp-hero-ctas {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.hp-hero-visual {
	/* The hero image is shown below the copy on mobile */
}
.hp-hero-visual img {
	width: 100%;
	height: auto;
	border-radius: 26px;
	border: 1px solid var(--hp-border);
	display: block;
}

/* ===== Section 2: Brand Trust (Fact Cards) ===== */
.hp-fact-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.hp-fact-card {
	background: var(--hp-card-bg-alt);
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius-card);
	padding: 18px;
	box-shadow: var(--hp-shadow-card);
}
.hp-fact-card dt {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--hp-purple);
	line-height: 1.17;
	margin-bottom: 10px;
}
.hp-fact-card dd {
	font-size: 15px;
	font-weight: 700;
	color: var(--hp-text);
	line-height: 1.47;
	margin-left: 0;
}

/* ===== Section 3: Product Entrance Cards ===== */
.hp-product-grid {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.hp-product-card {
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius-card);
	padding: 24px 17px;
	box-shadow: var(--hp-shadow-card);
	position: relative;
}
/* Card-specific gradients */
.hp-product-stores {
	background: linear-gradient(135deg, #e9f1ff, #faf7ff);
}
.hp-product-app {
	background: linear-gradient(135deg, #f4efff, #faf7ff);
}
.hp-product-training {
	background: linear-gradient(135deg, #fef3df, #faf7ff);
}
.hp-product-events {
	background: linear-gradient(135deg, #f4efff, #faf7ff);
}
.hp-product-icon {
	width: 52px;
	height: 18px;
	border-radius: 18px;
	background: rgba(255,255,255,0.72);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.hp-product-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--hp-text);
	line-height: 1.29;
	margin-bottom: 8px;
}
.hp-product-desc {
	font-size: 12.8px;
	color: var(--hp-text-secondary);
	line-height: 1.56;
	margin-bottom: 18px;
}

/* ===== Section 4: Wellness Festival Events ===== */
.hp-event-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.hp-event-card {
	background: rgba(255,255,255,0.7);
	border: 1px solid var(--hp-border);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0px 20px 21px rgba(27,9,62,0.12);
	backdrop-filter: blur(9px);
}
/* Fixed 5:3 aspect ratio container; image crops centered to fill */
.hp-event-image {
	position: relative;
	width: 100%;
	padding-top: 60%; /* 5:3 aspect ratio = 3/5 = 60% */
	border-radius: 20px;
	overflow: hidden;
}
.hp-event-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.hp-event-copy {
	padding: 18px 23px 12px;
}
.hp-event-title {
	font-size: 17px;
	font-weight: 700;
	color: #191321;
	line-height: 1.29;
	margin-bottom: 8px;
}
.hp-event-desc {
	font-size: 12.8px;
	color: #6f687a;
	line-height: 1.56;
}
.hp-event-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	padding: 0 23px 18px;
}

/* ===== Section 5: City Stores + FAQ ===== */
.hp-city-faq-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* City panel (left on desktop) */
.hp-city-panel {
	/* mobile: full width, comes first */
}
.hp-city-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hp-city-row {
	background: var(--hp-card-bg);
	border: 1px solid var(--hp-border);
	border-radius: 18px;
	padding: 19px 17px;
	box-shadow: 0px 10px 11px rgba(56,20,122,0.05);
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-rows: auto auto;
	gap: 8px 12px;
	align-items: center;
}
.hp-city-name {
	font-size: 20px;
	font-weight: 700;
	color: var(--hp-text);
	line-height: 1.2;
	grid-row: 1;
	grid-column: 1;
}
.hp-city-status {
	font-size: 11.5px;
	font-weight: 700;
	color: var(--hp-text-light);
	background: var(--hp-purple);
	border-radius: var(--hp-radius-pill);
	padding: 6px 12px;
	line-height: 1.04;
	grid-row: 1;
	grid-column: 2;
	justify-self: start;
}
.hp-city-desc {
	font-size: 12.5px;
	color: var(--hp-text-secondary);
	line-height: 1.44;
	grid-row: 2;
	grid-column: 1 / 3;
	margin: 0;
}
.hp-city-row .hp-btn-sm {
	grid-row: 1 / 3;
	grid-column: 3;
	align-self: center;
}

/* FAQ panel (right on desktop) */
.hp-faq-panel {
	background: linear-gradient(103deg, var(--hp-purple) 7%, var(--hp-purple-dark) 93%);
	border-radius: var(--hp-radius-lg);
	padding: 36px;
	box-shadow: 0px 24px 52px -28px rgba(27,9,62,0.12);
	backdrop-filter: blur(9px);
}
.hp-faq-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--hp-text-light);
	line-height: 1.22;
	margin-bottom: 24px;
}
.hp-faq-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 24px;
}
.hp-faq-item {
	background: rgba(255,255,255,0.12);
	border: 1px solid var(--hp-border);
	border-radius: 18px;
	padding: 16px 18px;
	backdrop-filter: blur(8px);
}
.hp-faq-question {
	font-size: 16px;
	font-weight: 700;
	color: var(--hp-text-light);
	line-height: 1.25;
	margin-bottom: 8px;
}
.hp-faq-answer {
	font-size: 12.5px;
	color: rgba(255,255,255,0.94);
	line-height: 1.52;
	margin: 0;
}

/* ===== Section 6: Footer CTA ===== */
.hp-cta {
	background: linear-gradient(135deg, var(--hp-purple), var(--hp-purple-light));
	border-radius: var(--hp-radius-lg);
	padding: 36px;
	margin: 0 16px 48px;
	box-shadow: var(--hp-shadow-cta);
}
.hp-cta-inner {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}
.hp-cta-title {
	font-size: 23px;
	font-weight: 700;
	color: var(--hp-text-light);
	line-height: 1.26;
	margin-bottom: 20px;
}
.hp-cta .hp-btn-white {
	margin: 0 auto;
}

/* ===== Desktop: >=768px ===== */
@media (min-width: 768px) {
	/* Section layout: more padding on desktop */
	.hp-section {
		padding: 64px 24px;
	}
	.hp-section-title {
		font-size: 36px;
	}

	/* Hero: split layout with purple gradient background */
	.hp-hero {
		padding: 48px 24px 80px;
		background: linear-gradient(90deg, #4D21A0 0%, #5E2BC0 48%, #8A62F0 100%);
	}
	.hp-hero-inner {
		display: flex;
		align-items: center;
		gap: 60px;
		justify-content: space-between;
	}
	.hp-hero-copy {
		flex: 0 0 590px;
		max-width: 590px;
	}
	/* Light text on dark gradient background */
	.hp-hero-title {
		font-size: 56px;
		color: var(--hp-text-light);
	}
	.hp-hero-subtitle {
		font-size: 18px;
		color: var(--hp-text-light);
	}
	.hp-hero-body {
		font-size: 14px;
		color: rgba(255,255,255,0.85);
	}
	.hp-hero .hp-pill {
		color: var(--hp-text-light);
	}
	.hp-hero .hp-pill-dot {
		background: var(--hp-text-light);
	}
	.hp-hero-ctas {
		margin-bottom: 0;
	}
	.hp-hero-visual {
		flex: 0 0 550px;
		max-width: 550px;
	}
	.hp-hero-visual img {
		width: 550px;
		height: 600px;
		object-fit: cover;
		border-radius: 24px;
	}

	/* Facts: 3x2 grid */
	.hp-fact-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	/* Products: 4-column grid */
	.hp-product-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 14px;
	}

	/* Events: 2-column grid */
	.hp-event-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	/* Desktop event image: flatter aspect ratio with margin */
	.hp-event-image {
		border-radius: 20px;
		margin: 36px 36px 0;
		padding-top: 42.5%; /* ~540:230 on desktop */
	}
	.hp-event-image img {
		border-radius: 20px;
	}

	/* City + FAQ: 2-column grid */
	.hp-city-faq-grid {
		display: grid;
		grid-template-columns: 716px 1fr;
		gap: 24px;
		align-items: start;
	}
	.hp-city-row {
		grid-template-columns: auto 1fr auto;
	}
	.hp-city-name {
		font-size: 24px;
	}

	/* CTA: centered card */
	.hp-cta {
		margin: 0 auto 48px;
		max-width: var(--hp-max-width);
	}
}
