/* Harborne AI Home — front-end styles
   Direction: harborne.ai typography (Outfit display, Plus Jakarta Sans body)
   on a clean white page, orange (#F97316) spent on CTAs and accents,
   gold stars for ratings. */

:root {
	--ha-ink: #111827;
	--ha-body: #374151;
	--ha-faint: #6b7280;
	--ha-orange: #f97316;
	--ha-orange-hover: #ea580c;
	--ha-star: #f0a500;
	--ha-page: #ffffff;
	--ha-card: #ffffff;
	--ha-line: #e5e7eb;
	--ha-tint: #fff7ed;
	--ha-radius: 16px;
	--ha-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
	--ha-display: "Outfit", "Segoe UI", sans-serif;
	--ha-sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
	--ha-mono: "Plus Jakarta Sans", "Segoe UI", sans-serif;

	/* Legacy aliases kept so any straggling rule resolves to the new palette. */
	--ha-green: #f97316;
	--ha-green-deep: #ea580c;
	--ha-amber: #f97316;
	--ha-amber-hover: #ea580c;
	--ha-sage: #fff7ed;
}

/* Shared type ------------------------------------------------------- */

.ha-eyebrow {
	font-family: var(--ha-sans);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ha-orange);
	margin: 0 0 0.9rem;
}

.ha-mono-note {
	font-family: var(--ha-mono);
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	color: var(--ha-faint);
	text-align: center;
	margin: 0.55rem 0 0;
}

.ha-section-head { max-width: 700px; margin: 3.6rem 0 1.6rem; }
.ha-section-head h2 {
	font-family: var(--ha-display);
	font-size: clamp(1.875rem, 3.6vw, 3rem);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--ha-ink);
	margin: 0 0 0.6rem;
}
.ha-section-head p { color: var(--ha-body); font-size: 1rem; line-height: 1.625; margin: 0; }

/* Buttons ----------------------------------------------------------- */

.ha-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 12px 32px;
	border-radius: 999px;
	font-family: var(--ha-sans);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.2;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.ha-btn--primary { background: var(--ha-orange); color: #fff; box-shadow: inset 0 0 0 1.5px var(--ha-orange); }
.ha-btn--primary:hover { background: #fff; color: var(--ha-orange); transform: translateY(-1px); }

.ha-btn--quiet { background: transparent; color: var(--ha-ink); box-shadow: inset 0 0 0 1.5px #d1d5db; }
.ha-btn--quiet:hover { color: var(--ha-orange); box-shadow: inset 0 0 0 1.5px var(--ha-orange); background: var(--ha-tint); }

.ha-btn--cta { background: var(--ha-orange); color: #fff; width: 100%; margin-top: auto; }
.ha-btn--cta:hover { background: var(--ha-orange-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3); }

.ha-btn--table { background: var(--ha-orange); color: #fff; padding: 0.45rem 1.05rem; font-size: 0.875rem; white-space: nowrap; }
.ha-btn--table:hover { background: var(--ha-orange-hover); color: #fff; }

.ha-btn--cta-detail { background: var(--ha-ink); color: #fff; }
.ha-btn--cta-detail:hover { background: #02040a; color: #fff; box-shadow: 0 8px 20px rgba(17, 24, 39, 0.25); }

.ha-btn:focus-visible { outline: 3px solid var(--ha-orange); outline-offset: 2px; }

/* Hero -------------------------------------------------------------- */

.ha-hero {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: 3rem;
	align-items: center;
	padding: 4.2rem 0 3.4rem;
}

.ha-hero--compact { grid-template-columns: 1fr; padding: 3.2rem 0 1.4rem; max-width: 720px; }

.ha-hero__title {
	font-family: var(--ha-display);
	font-size: clamp(2rem, 4.2vw, 3rem);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: var(--ha-ink);
	margin: 0 0 1.1rem;
}

.ha-hero__subtitle { font-size: clamp(1rem, 1.8vw, 1.25rem); line-height: 1.625; max-width: 34em; margin: 0 0 1.7rem; color: var(--ha-body); }

.ha-hero__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.1rem; }

.ha-hero__smallprint { font-family: var(--ha-mono); font-size: 0.875rem; letter-spacing: 0.02em; color: var(--ha-faint); margin: 0; }

.ha-hero__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 340px; }

.ha-hero__disc { display: none; }

.ha-hero__img, .ha-hero__fallback {
	position: relative;
	max-width: 88%;
	height: auto;
	background: #fff;
	border: 1px solid var(--ha-line);
	border-radius: 20px;
	padding: 1.2rem;
	box-shadow: var(--ha-shadow);
}

.ha-hero__fallback { font-size: 6rem; color: var(--ha-star); background: transparent; border: 0; box-shadow: none; padding: 0; }

.ha-hero__chip {
	position: absolute;
	bottom: 2%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	background: #fff;
	border: 1px solid var(--ha-line);
	border-radius: 12px;
	box-shadow: var(--ha-shadow);
	padding: 0.6rem 1rem;
	text-decoration: none;
	max-width: 88%;
}

.ha-hero__chip:hover { border-color: var(--ha-orange); }
.ha-chip__stars { color: var(--ha-star); font-size: 0.85rem; letter-spacing: 0.12em; }
.ha-chip__label { font-weight: 600; font-size: 0.85rem; color: var(--ha-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ha-chip__meta { font-family: var(--ha-mono); font-size: 0.8125rem; color: var(--ha-faint); }

/* Disclosure -------------------------------------------------------- */

.ha-disclosure {
	background: var(--ha-tint);
	border-left: 4px solid var(--ha-orange);
	border-radius: 8px;
	padding: 0.75rem 1.1rem;
	margin: 0 0 1.2rem;
}

.ha-disclosure p { margin: 0; font-size: 0.875rem; line-height: 1.6; color: var(--ha-body); }
.ha-disclosure strong { color: var(--ha-ink); }

/* Stats strip ------------------------------------------------------- */

.ha-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-block: 1px solid var(--ha-line);
	margin: 1.6rem 0 0.6rem;
}

.ha-stats__item { padding: 1.4rem 1rem; text-align: center; }
.ha-stats__item + .ha-stats__item { border-left: 1px solid var(--ha-line); }

.ha-stats__num {
	display: block;
	font-family: var(--ha-display);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--ha-orange);
	line-height: 1;
}

.ha-stats__label {
	font-family: var(--ha-mono);
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ha-faint);
}

@media (max-width: 700px) {
	.ha-stats { grid-template-columns: repeat(2, 1fr); }
	.ha-stats__item:nth-child(3) { border-left: 0; }
	.ha-stats__item:nth-child(n+3) { border-top: 1px solid var(--ha-line); }
}

/* Product grid ------------------------------------------------------ */

.ha-grid { display: grid; gap: 1.3rem; margin: 0 0 1.6rem; }
.ha-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ha-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ha-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 940px) { .ha-grid--3, .ha-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .ha-grid--2, .ha-grid--3, .ha-grid--4 { grid-template-columns: 1fr; } }

.ha-shop { margin-top: 1.4rem; }
.ha-shop__item { display: contents; }

.ha-card {
	display: flex;
	flex-direction: column;
	background: var(--ha-card);
	border: 1px solid var(--ha-line);
	border-radius: var(--ha-radius);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ha-card:hover { transform: translateY(-4px); box-shadow: var(--ha-shadow); border-color: #fdba74; }

.ha-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 1.4rem 1.4rem 0.6rem;
	min-height: 210px;
}

.ha-card__img { max-height: 190px; width: auto; max-width: 100%; object-fit: contain; }

.ha-card__noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 180px;
	background: var(--ha-tint);
	border-radius: 10px;
	font-family: var(--ha-mono);
	font-size: 0.8rem;
	color: var(--ha-orange);
}

.ha-card__body { display: flex; flex-direction: column; flex: 1; gap: 0.55rem; padding: 0.9rem 1.2rem 1.2rem; color: var(--ha-body); }

.ha-card__top { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }

.ha-card__cat {
	font-family: var(--ha-mono);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ha-orange);
}

.ha-card__early {
	font-family: var(--ha-mono);
	font-size: 0.75rem;
	color: #92400e;
	background: #fef3c7;
	border-radius: 999px;
	padding: 0.15rem 0.55rem;
	white-space: nowrap;
}

.ha-card__title {
	font-family: var(--ha-display);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.005em;
	color: var(--ha-ink);
	margin: 0;
}

/* The ratings receipt — signature element --------------------------- */

.ha-receipt {
	display: flex;
	flex-direction: column;
	gap: 0.22rem;
	background: #fafafa;
	border: 1px solid var(--ha-line);
	border-radius: 10px;
	padding: 0.65rem 0.8rem 0.55rem;
	margin: 0.15rem 0 0.5rem;
}

.ha-receipt__row { display: flex; align-items: center; gap: 0.5rem; }

.ha-receipt__star {
	font-family: var(--ha-mono);
	font-size: 0.75rem;
	color: var(--ha-faint);
	width: 2.4em;
	text-align: right;
}

.ha-receipt__row.is-full .ha-receipt__star { color: var(--ha-ink); font-weight: 700; }

.ha-receipt__bar {
	flex: 1;
	height: 5px;
	background: #e5e7eb;
	border-radius: 99px;
	overflow: hidden;
}

.ha-receipt__bar span { display: block; height: 100%; background: var(--ha-star); border-radius: 99px; }

.ha-receipt__pct {
	font-family: var(--ha-mono);
	font-size: 0.75rem;
	color: var(--ha-faint);
	width: 3.2em;
	text-align: right;
}

.ha-receipt__row.is-full .ha-receipt__pct { color: var(--ha-ink); font-weight: 700; }

.ha-receipt__foot {
	font-family: var(--ha-mono);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ha-orange);
	border-top: 1px dashed var(--ha-line);
	padding-top: 0.4rem;
	margin-top: 0.25rem;
}

/* Category heads (grouped lists) ------------------------------------ */

.ha-cat-head {
	display: flex;
	align-items: baseline;
	gap: 0.8rem;
	margin: 3rem 0 1.2rem;
	scroll-margin-top: 90px;
	border-bottom: 1px solid var(--ha-line);
	padding-bottom: 0.6rem;
}

.ha-cat-head h2 {
	font-family: var(--ha-display);
	font-size: 1.875rem;
	font-weight: 600;
	color: var(--ha-ink);
	margin: 0;
}

.ha-cat-head__count { font-family: var(--ha-mono); font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ha-faint); }

/* Filter pills ------------------------------------------------------ */

.ha-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1.6rem 0 0.4rem; }

.ha-filter__pill {
	font-family: var(--ha-sans);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ha-body);
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 999px;
	padding: 0.5rem 1.05rem;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ha-filter__pill span { font-family: var(--ha-mono); font-size: 0.875rem; color: var(--ha-faint); margin-left: 0.2rem; }
.ha-filter__pill:hover { border-color: var(--ha-orange); color: var(--ha-orange); }
.ha-filter__pill.is-active { background: var(--ha-orange); border-color: var(--ha-orange); color: #fff; }
.ha-filter__pill.is-active span { color: rgba(255, 255, 255, 0.8); }
.ha-filter__pill:focus-visible { outline: 3px solid var(--ha-orange); outline-offset: 2px; }

/* Spotlight --------------------------------------------------------- */

.ha-spot {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: 2.4rem;
	background: var(--ha-card);
	border: 1px solid var(--ha-line);
	border-radius: 20px;
	padding: 2.2rem;
	margin: 1.2rem 0 2rem;
	box-shadow: var(--ha-shadow);
}

.ha-spot__media { display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 14px; }
.ha-spot__img { max-height: 330px; width: auto; max-width: 100%; object-fit: contain; }
.ha-spot__fallback { font-size: 5rem; color: var(--ha-star); }

.ha-spot__body { display: flex; flex-direction: column; gap: 0.6rem; }

.ha-spot__title {
	font-family: var(--ha-display);
	font-size: clamp(1.5rem, 2.8vw, 1.875rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--ha-ink);
	margin: 0;
}

.ha-spot__cat { font-family: var(--ha-mono); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ha-orange); margin: 0; }
.ha-spot__desc { font-size: 1rem; line-height: 1.625; margin: 0; color: var(--ha-body); }
.ha-spot .ha-btn--cta { width: auto; align-self: flex-start; padding-inline: 2rem; }
.ha-spot .ha-mono-note { text-align: left; }

@media (max-width: 800px) { .ha-spot { grid-template-columns: minmax(0, 1fr); padding: 1.4rem; } }

/* Comparison table -------------------------------------------------- */

.ha-table-wrap {
	overflow-x: auto;
	background: var(--ha-card);
	border: 1px solid var(--ha-line);
	border-radius: var(--ha-radius);
	margin-bottom: 2rem;
}

.ha-table { width: 100%; border-collapse: collapse; min-width: 720px; }

.ha-table th {
	font-family: var(--ha-mono);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ha-faint);
	text-align: left;
	padding: 0.9rem 1rem;
	border-bottom: 1px solid var(--ha-line);
}

.ha-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #f3f4f6; vertical-align: middle; font-size: 1rem; color: var(--ha-body); }
.ha-table tbody tr:last-child td { border-bottom: 0; }
.ha-table tbody tr:hover td { background: #fafafa; }

.ha-table__rank { font-family: var(--ha-mono); font-size: 0.8125rem; color: var(--ha-faint); width: 2.4em; }

.ha-table__product { display: flex; align-items: center; gap: 0.8rem; font-weight: 600; color: var(--ha-ink); min-width: 240px; }

.ha-table__media { flex: none; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--ha-line); border-radius: 8px; overflow: hidden; }
.ha-table__thumb { max-width: 46px; max-height: 46px; object-fit: contain; }
.ha-table__noimg { color: var(--ha-star); }

.ha-table__stars { white-space: nowrap; }
.ha-table__num { font-family: var(--ha-mono); font-size: 0.875rem; }

.ha-stars { color: var(--ha-star); letter-spacing: 0.1em; }

/* Category tiles ---------------------------------------------------- */

.ha-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-bottom: 1.6rem; }

@media (max-width: 940px) { .ha-cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ha-cats { grid-template-columns: 1fr; } }

.ha-cat-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--ha-card);
	border: 1px solid var(--ha-line);
	border-radius: var(--ha-radius);
	padding: 1.1rem 1.1rem 1.2rem;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ha-cat-tile:hover { transform: translateY(-3px); box-shadow: var(--ha-shadow); border-color: var(--ha-orange); }

.ha-cat-tile__media { display: flex; align-items: center; justify-content: center; height: 130px; margin-bottom: 0.8rem; }
.ha-cat-tile__img { max-height: 120px; width: auto; max-width: 100%; object-fit: contain; }
.ha-cat-tile__noimg { font-size: 2.4rem; color: var(--ha-star); }

.ha-cat-tile__name { font-family: var(--ha-display); font-weight: 700; font-size: 1.25rem; color: var(--ha-ink); }
.ha-cat-tile__count { font-family: var(--ha-mono); font-size: 0.8125rem; letter-spacing: 0.04em; color: var(--ha-faint); margin-top: 0.2rem; }

.ha-cat-tile__go { position: absolute; right: 1rem; bottom: 1rem; color: var(--ha-orange); font-weight: 700; transition: transform 0.15s ease; }
.ha-cat-tile:hover .ha-cat-tile__go { transform: translateX(3px); }

/* Process ----------------------------------------------------------- */

.ha-process {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.3rem;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	counter-reset: none;
}

@media (max-width: 800px) { .ha-process { grid-template-columns: 1fr; } }

.ha-process__step { background: var(--ha-card); border: 1px solid var(--ha-line); border-radius: var(--ha-radius); padding: 1.5rem 1.4rem; }

.ha-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--ha-orange);
	color: #fff;
	font-family: var(--ha-mono);
	font-size: 0.9375rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.ha-process__step h3 { font-family: var(--ha-display); font-size: 1.25rem; font-weight: 700; color: var(--ha-ink); margin: 0 0 0.45rem; }
.ha-process__step p { font-size: 1rem; line-height: 1.625; margin: 0; color: var(--ha-body); }

/* Pillars ------------------------------------------------------------ */

.ha-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin: 0 0 2rem; }

@media (max-width: 800px) { .ha-pillars { grid-template-columns: 1fr; } }

.ha-pillar { background: var(--ha-card); border: 1px solid var(--ha-line); border-radius: var(--ha-radius); padding: 1.5rem 1.4rem; }
.ha-pillar__icon { font-size: 1.6rem; display: block; margin-bottom: 0.7rem; }
.ha-pillar h3 { font-family: var(--ha-display); font-size: 1.25rem; font-weight: 700; color: var(--ha-ink); margin: 0 0 0.45rem; }
.ha-pillar p { font-size: 1rem; line-height: 1.625; margin: 0; color: var(--ha-body); }

/* FAQ — matches the site-wide accordion (JT1/Power5 pages) ---------- */

.ha-faq-head { text-align: center; margin: 3.6rem auto 2.5rem; }
.ha-faq-head__eyebrow {
	font-family: var(--ha-sans);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--ha-ink);
	margin: 0 0 10px;
}
.ha-faq-head h2 {
	font-family: var(--ha-display);
	font-size: clamp(1.875rem, 3.6vw, 3rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--ha-ink);
	margin: 0;
}

.ha-faq { display: flex; flex-direction: column; gap: 20px; max-width: 860px; margin: 0 auto 2rem; }

.ha-faq__item {
	border-radius: 12px;
	background: transparent;
	backdrop-filter: blur(12px);
	border: 1px solid #e2e2e2;
	box-shadow: 0px 1px 4px 0px #0000001a;
}

.ha-faq__item.is-open { border: 1px solid #000; box-shadow: none; }

.ha-faq__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	text-align: left;
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: var(--ha-display);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--ha-ink);
}

.ha-faq__trigger:focus-visible { outline: 3px solid var(--ha-orange); outline-offset: 2px; border-radius: 12px; }

.ha-faq__icon { flex: none; transition: transform 0.3s ease; color: #000; }
.ha-faq__item.is-open .ha-faq__icon { transform: rotate(180deg); }

.ha-faq__content {
	max-height: 0;
	overflow: hidden;
	padding: 0 24px;
	transition: max-height 0.35s ease, padding 0.35s ease;
}

.ha-faq__item.is-open .ha-faq__content { max-height: 500px; padding: 0 24px 24px; }

.ha-faq__content p { margin: 0; font-family: var(--ha-sans); font-size: 1rem; line-height: 1.5; color: var(--ha-body); }

/* Email capture ----------------------------------------------------- */

.ha-capture {
	background: var(--ha-tint);
	border-top: 1px solid #fed7aa;
	border-bottom: 1px solid #fed7aa;
	padding: 3.6rem 1.5rem;
	margin-top: 3rem;
}

.ha-capture__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.ha-capture__inner h2 { font-family: var(--ha-display); color: var(--ha-ink); font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 600; letter-spacing: -0.01em; margin: 0 0 0.6rem; }
.ha-capture__inner > p { color: var(--ha-body); font-size: 1rem; margin: 0 0 1.4rem; line-height: 1.625; }

.ha-capture__form { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }

.ha-capture__form input[type="email"] {
	flex: 1 1 260px;
	max-width: 340px;
	padding: 0.75rem 1.05rem;
	border-radius: 999px;
	border: 1.5px solid #d1d5db;
	background: #fff;
	font-family: var(--ha-sans);
	font-size: 1rem;
	color: var(--ha-ink);
}

.ha-capture__form input[type="email"]::placeholder { color: var(--ha-faint); }
.ha-capture__form input[type="email"]:focus-visible { outline: 3px solid var(--ha-orange); outline-offset: 2px; }

.ha-hp { position: absolute !important; left: -9999px !important; height: 1px; width: 1px; overflow: hidden; }

.ha-capture__thanks { font-size: 1.02rem; font-weight: 700; color: var(--ha-orange-hover); }
.ha-capture__privacy { font-family: var(--ha-mono); font-size: 0.8125rem; letter-spacing: 0.02em; color: var(--ha-faint); margin: 1.75rem 0 0; }

/* Card title link --------------------------------------------------- */

.ha-card__titlelink { color: inherit; text-decoration: none; }
.ha-card__titlelink:hover { color: var(--ha-orange); }
.ha-card__titlelink:focus-visible { outline: 3px solid var(--ha-orange); outline-offset: 2px; }

/* Single product landing page --------------------------------------- */

.ha-pdp { padding-top: 0; color: var(--ha-body); }

.ha-pdp__back { margin: 0 0 0.9rem; }
.ha-pdp__back a {
	font-family: var(--ha-mono);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ha-ink);
	text-decoration: none;
}
.ha-pdp__back a:hover { color: var(--ha-orange); text-decoration: underline; }

.ha-pdp__grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: 2.6rem;
	background: var(--ha-card);
	border: 1px solid var(--ha-line);
	border-radius: 20px;
	box-shadow: var(--ha-shadow);
	padding: 2.4rem;
	margin-bottom: 2rem;
}

@media (max-width: 800px) { .ha-pdp__grid { grid-template-columns: minmax(0, 1fr); padding: 1.4rem; } }

.ha-pdp__media { display: flex; align-items: center; justify-content: center; }
.ha-pdp__img { max-height: 420px; width: auto; max-width: 100%; object-fit: contain; }

.ha-pdp__body { display: flex; flex-direction: column; gap: 0.7rem; }

.ha-pdp__title {
	font-family: var(--ha-display);
	font-size: clamp(1.875rem, 3.6vw, 3rem);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: var(--ha-ink);
	margin: 0;
}

.ha-receipt--pdp { max-width: 460px; }

.ha-pdp__early {
	font-size: 0.9375rem;
	line-height: 1.55;
	background: #fef3c7;
	border-radius: 10px;
	padding: 0.7rem 0.95rem;
	color: #92400e;
	margin: 0;
	max-width: 460px;
}

.ha-pdp__cta { width: auto; align-self: flex-start; padding: 0.9rem 2.4rem; font-size: 1.125rem; }
.ha-pdp .ha-mono-note { text-align: left; max-width: 460px; }

.ha-pdp__section { max-width: none; margin: 0 0 1.8rem; }

.ha-aplus { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; margin-top: 0.9rem; }
.ha-aplus__img {
	width: auto;
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	border: 1px solid var(--ha-line);
	background: #fff;
	display: block;
	margin-inline: auto;
}
.ha-pdp__section h2 {
	font-family: var(--ha-display);
	font-size: 1.875rem;
	font-weight: 600;
	color: var(--ha-ink);
	margin: 2rem 0 0.7rem;
}

.ha-pdp__brand { font-size: 1rem; color: var(--ha-body); margin: -0.2rem 0 0; }
.ha-pdp__brand strong { color: var(--ha-orange-hover); }

.ha-pdp__bullets { list-style: none; margin: 0 0 0.6rem; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.ha-pdp__bullets li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 1rem;
	line-height: 1.625;
	color: var(--ha-body);
}
.ha-pdp__bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ha-orange);
}

.ha-specs { width: 100%; border-collapse: collapse; background: var(--ha-card); border: 1px solid var(--ha-line); border-radius: 12px; overflow: hidden; }
.ha-specs th, .ha-specs td { text-align: left; padding: 0.6rem 1rem; border-bottom: 1px solid #f3f4f6; font-size: 1rem; vertical-align: top; }
.ha-specs tr:last-child th, .ha-specs tr:last-child td { border-bottom: 0; }
.ha-specs th { width: 38%; font-weight: 600; color: var(--ha-ink); background: #fafafa; }
.ha-specs td { color: var(--ha-body); }

.ha-pdp__full { font-size: 1rem; line-height: 1.625; margin: 0 0 0.5rem; color: var(--ha-body); }
.ha-pdp__fullnote { font-family: var(--ha-mono); font-size: 0.8125rem; letter-spacing: 0.02em; color: var(--ha-faint); margin: 0; }

.ha-pdp__checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.ha-pdp__checks li {
	position: relative;
	padding-left: 1.8rem;
	font-size: 1rem;
	line-height: 1.625;
	color: var(--ha-body);
}
.ha-pdp__checks li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0.05em;
	color: var(--ha-orange);
	font-weight: 700;
}
.ha-pdp__checks strong { color: var(--ha-ink); }

.ha-pdp .ha-disclosure { margin-top: 1rem; }

/* Price -------------------------------------------------------------- */

.ha-price { display: flex; align-items: baseline; gap: 0.55rem; margin: 0; flex-wrap: wrap; }

.ha-price__amount {
	font-family: var(--ha-display);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--ha-ink);
	letter-spacing: -0.01em;
}

.ha-price--large .ha-price__amount { font-size: 2.5rem; }

.ha-price__note {
	font-family: var(--ha-mono);
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	color: var(--ha-faint);
}

.ha-table__price { font-weight: 700; color: var(--ha-ink); white-space: nowrap; }
.ha-table-note { text-align: left; margin: -1.2rem 0 2rem; }

/* Product gallery ---------------------------------------------------- */

.ha-gallery { display: flex; flex-direction: column; gap: 0.8rem; width: 100%; min-width: 0; max-width: 100%; }

.ha-pdp__media { min-width: 0; }

.ha-gallery__stage {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--ha-line);
	border-radius: 14px;
	min-height: 340px;
}

.ha-gallery__main { max-height: 400px; width: auto; max-width: 100%; object-fit: contain; }

.ha-gallery__video { width: 100%; max-height: 400px; border-radius: 10px; background: #000; }

.ha-gallery__thumbs {
	display: flex;
	gap: 0.55rem;
	flex-wrap: nowrap;
	overflow-x: auto;
	justify-content: flex-start;
	padding: 2px 2px 6px;
	scrollbar-width: thin;
}

.ha-gallery__thumb {
	position: relative;
	flex: none;
	width: 68px;
	height: 68px;
	padding: 4px;
	background: #fff;
	border: 1.5px solid var(--ha-line);
	border-radius: 10px;
	cursor: pointer;
	transition: border-color 0.15s ease, transform 0.15s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.ha-gallery__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }

.ha-gallery__thumb:hover { border-color: var(--ha-orange); transform: translateY(-2px); }
.ha-gallery__thumb.is-active { border-color: var(--ha-orange); box-shadow: 0 0 0 1px var(--ha-orange); }
.ha-gallery__thumb:focus-visible { outline: 3px solid var(--ha-orange); outline-offset: 2px; }

.ha-gallery__thumb--video { padding: 0; background: var(--ha-ink); }
.ha-gallery__thumb--video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.95; }

.ha-gallery__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6rem;
	padding-left: 2px;
	color: #fff;
	background: rgba(17, 24, 39, 0.75);
	border: 1.5px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	transition: transform 0.15s ease, background 0.15s ease;
}

.ha-gallery__thumb--video:hover .ha-gallery__play { transform: translate(-50%, -50%) scale(1.12); background: var(--ha-orange); }

/* Videos section ----------------------------------------------------- */

.ha-videos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
	margin-top: 0.9rem;
}

@media (max-width: 800px) { .ha-videos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ha-videos { grid-template-columns: 1fr; } }

.ha-video-card__frame {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	padding: 0;
	border: 1px solid var(--ha-line);
	border-radius: 12px;
	overflow: hidden;
	background: var(--ha-ink);
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ha-video-card__frame:hover { transform: translateY(-3px); box-shadow: var(--ha-shadow); }
.ha-video-card__frame:focus-visible { outline: 3px solid var(--ha-orange); outline-offset: 2px; }

.ha-video-card__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ha-video-card__frame video { width: 100%; height: 100%; object-fit: contain; background: #000; display: block; }

.ha-video-card__frame.is-playing { cursor: default; }
.ha-video-card__frame.is-playing:hover { transform: none; box-shadow: none; }

.ha-video-card__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 4px;
	font-size: 1rem;
	color: #fff;
	background: rgba(17, 24, 39, 0.72);
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	transition: transform 0.15s ease, background 0.15s ease;
}

.ha-video-card__frame:hover .ha-video-card__play { transform: translate(-50%, -50%) scale(1.1); background: var(--ha-orange); }

.ha-video-card__title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--ha-ink);
	line-height: 1.4;
	margin: 0.55rem 0 0;
}

/* Unsubscribe form -------------------------------------------------- */

.ha-unsub { margin: 1rem 0 2rem; }

.ha-unsub__form { display: flex; gap: 0.6rem; flex-wrap: wrap; max-width: 480px; }

.ha-unsub__form input[type="email"] {
	flex: 1 1 240px;
	padding: 0.65rem 1rem;
	border-radius: 999px;
	border: 1.5px solid #d1d5db;
	background: #fff;
	font-family: var(--ha-sans);
	font-size: 1rem;
	color: var(--ha-ink);
}

.ha-unsub__form input[type="email"]:focus-visible { outline: 3px solid var(--ha-orange); outline-offset: 2px; }

.ha-unsub__done {
	background: var(--ha-tint);
	border-radius: 10px;
	padding: 0.9rem 1.1rem;
	color: var(--ha-orange-hover);
	font-weight: 600;
}

/* Empty state ------------------------------------------------------- */

.ha-empty { color: var(--ha-faint); padding: 2rem 0; }

/* Responsive hero --------------------------------------------------- */

@media (max-width: 880px) {
	.ha-hero { grid-template-columns: minmax(0, 1fr); gap: 1.6rem; padding-top: 2.6rem; }
	.ha-hero__visual { min-height: 300px; }
}

/* Reduced motion ---------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	.ha-btn, .ha-card, .ha-cat-tile, .ha-faq__mark, .ha-cat-tile__go { transition: none; }
	.ha-card:hover, .ha-cat-tile:hover, .ha-btn--primary:hover, .ha-btn--cta:hover { transform: none; }
}
