/* ==========================================================================
   Heat Pump Reviews Pro — main.css
   Premium smart-home / energy-efficiency design system
   ========================================================================== */

:root {
	/* Colors are also injected via Customizer via wp_add_inline_style. */
	--hpr-navy: #0f172a;
	--hpr-blue: #0ea5e9;
	--hpr-green: #22c55e;
	--hpr-gold: #f59e0b;
	--hpr-slate: #64748b;
	--hpr-white: #f8fafc;

	--hpr-navy-2: #1e293b;
	--hpr-bg: #f8fafc;
	--hpr-bg-soft: #eef2f7;
	--hpr-card: #ffffff;
	--hpr-text: #0f172a;
	--hpr-text-2: #475569;

	--hpr-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	--hpr-font-head: 'Sora', 'Inter', system-ui, sans-serif;

	--hpr-radius: 16px;
	--hpr-radius-lg: 24px;
	--hpr-radius-sm: 10px;

	--hpr-shadow-sm: 0 1px 2px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.05);
	--hpr-shadow: 0 8px 24px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
	--hpr-shadow-lg: 0 20px 50px rgba(15,23,42,0.16), 0 10px 24px rgba(15,23,42,0.08);
	--hpr-glow: 0 0 0 1px rgba(14,165,233,0.18), 0 12px 30px rgba(14,165,233,0.18);

	--hpr-gradient-cool: linear-gradient(135deg, var(--hpr-blue), var(--hpr-green));
	--hpr-gradient-warm: linear-gradient(135deg, var(--hpr-gold), #ef4444);
	--hpr-gradient-bg:   linear-gradient(180deg, #0b1226 0%, #0f172a 50%, #131c33 100%);

	--hpr-container: 1200px;
	--hpr-step-1: clamp(0.875rem, 0.85rem + 0.2vw, 1rem);
	--hpr-step-2: clamp(1rem,    0.95rem + 0.3vw, 1.125rem);
	--hpr-step-3: clamp(1.25rem, 1.1rem + 0.8vw,  1.5rem);
	--hpr-step-4: clamp(1.75rem, 1.4rem + 1.6vw,  2.5rem);
	--hpr-step-5: clamp(2.25rem, 1.7rem + 2.8vw,  3.75rem);
	--hpr-step-6: clamp(3rem,    2.2rem + 4vw,    5rem);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; } /* Override browser/theme display rules so JS-driven hidden states actually hide. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--hpr-font-body);
	font-size: var(--hpr-step-2);
	line-height: 1.6;
	color: var(--hpr-text);
	background: var(--hpr-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--hpr-blue); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--hpr-navy); }

h1, h2, h3, h4, h5 { font-family: var(--hpr-font-head); line-height: 1.18; letter-spacing: -0.015em; margin: 0 0 .5em; }
h1 { font-size: var(--hpr-step-5); font-weight: 800; }
h2 { font-size: var(--hpr-step-4); font-weight: 700; }
h3 { font-size: var(--hpr-step-3); font-weight: 700; }

.hpr-container { max-width: var(--hpr-container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .hpr-container { padding: 0 32px; } }

/* Skip link */
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: fixed; top: 12px; left: 12px; padding: 10px 16px; background: var(--hpr-navy); color: #fff; z-index: 9999; border-radius: 8px; clip: auto; width: auto; height: auto; }

/* Background energy effect */
.hpr-energy-bg { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.hpr-energy-line { position: absolute; height: 1px; width: 100vw; left: -50%; background: linear-gradient(90deg, transparent, rgba(14,165,233,0.18), transparent); animation: hpr-line 16s linear infinite; }
.hpr-energy-line:nth-child(1) { top: 18%; animation-delay: 0s; }
.hpr-energy-line:nth-child(2) { top: 52%; animation-delay: -6s; }
.hpr-energy-line:nth-child(3) { top: 81%; animation-delay: -11s; }
.hpr-energy-particle { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: rgba(14,165,233,0.6); filter: blur(1px); animation: hpr-particle 12s ease-in-out infinite; }
.hpr-energy-particle:nth-child(4) { top: 20%; left: 20%; animation-delay: 0s; }
.hpr-energy-particle:nth-child(5) { top: 70%; left: 80%; animation-delay: -4s; background: rgba(34,197,94,0.55); }
.hpr-energy-particle:nth-child(6) { top: 40%; left: 60%; animation-delay: -8s; background: rgba(245,158,11,0.5); }

@keyframes hpr-line { 0% { transform: translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateX(100%); opacity: 0; } }
@keyframes hpr-particle { 0%, 100% { transform: translate(0,0); opacity: .4; } 50% { transform: translate(40px,-30px); opacity: 1; } }

/* ============== Header ============== */
.hpr-header { position: sticky; top: 0; z-index: 200; backdrop-filter: blur(12px); background: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(15,23,42,0.06); }
.hpr-header__inner { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.hpr-header__brand { display: flex; align-items: center; flex-shrink: 0; max-width: 280px; }
.hpr-header__title { display: inline-flex; align-items: center; gap: 12px; font-family: var(--hpr-font-head); font-weight: 800; font-size: 1.15rem; color: var(--hpr-navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hpr-header__brandname { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
.hpr-header__mark { width: 36px; height: 36px; border-radius: 10px; background: var(--hpr-gradient-cool); color: #fff; display: inline-grid; place-items: center; box-shadow: var(--hpr-glow); }
.hpr-header__mark svg { color: #fff; }
.hpr-nav { flex: 1; }
.hpr-nav__menu { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.hpr-nav__menu li { position: relative; }
.hpr-nav__menu li a { padding: 10px 14px; border-radius: 10px; color: var(--hpr-text); font-weight: 500; white-space: nowrap; }
.hpr-nav__menu li a:hover { background: rgba(14,165,233,0.08); color: var(--hpr-blue); }
.hpr-nav__menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 240px; padding: 8px; margin: 0; list-style: none; background: #fff; border: 1px solid rgba(15,23,42,0.08); border-radius: 12px; box-shadow: var(--hpr-shadow); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .18s ease; z-index: 50; }
.hpr-nav__menu .menu-item-has-children:hover > .sub-menu,
.hpr-nav__menu .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.hpr-nav__menu .sub-menu li a { display: block; padding: 8px 12px; font-size: 0.9rem; }
.hpr-nav__menu .menu-item-has-children > a::after { content: ' ▾'; font-size: 0.7em; opacity: 0.6; }
.hpr-nav__toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 12px; flex-direction: column; justify-content: space-between; }
.hpr-nav__toggle .hpr-nav__bar { display: block; width: 20px; height: 2px; background: var(--hpr-navy); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.hpr-header__actions { display: flex; gap: 8px; align-items: center; }

@media (max-width: 900px) {
	.hpr-nav__toggle { display: inline-flex; }
	.hpr-nav__menu { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 16px; border-bottom: 1px solid rgba(15,23,42,0.06); box-shadow: var(--hpr-shadow); }
	.hpr-nav.is-open .hpr-nav__menu { display: flex; }
	.hpr-hide-mobile { display: none; }
}

/* ============== Buttons ============== */
.hpr-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 12px; font-weight: 600; font-size: 0.95rem; border: 1px solid transparent; transition: all .2s ease; cursor: pointer; line-height: 1; text-align: center; }
.hpr-btn--primary { background: var(--hpr-gradient-cool); color: #fff !important; box-shadow: 0 8px 24px rgba(14,165,233,0.28); }
.hpr-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(14,165,233,0.36); color: #fff !important; }
.hpr-btn--ghost { background: rgba(15,23,42,0.04); color: var(--hpr-navy) !important; border-color: rgba(15,23,42,0.08); }
.hpr-btn--ghost:hover { background: rgba(15,23,42,0.08); }
.hpr-btn--lg { padding: 16px 28px; font-size: 1.05rem; border-radius: 14px; }
.hpr-btn--sm { padding: 8px 14px; font-size: 0.85rem; }
.hpr-btn--block { width: 100%; }

/* ============== Section primitives ============== */
.hpr-section { padding: clamp(48px, 8vw, 96px) 0; position: relative; }
.hpr-section__header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.hpr-section__eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--hpr-blue); padding: 4px 12px; background: rgba(14,165,233,0.1); border-radius: 999px; margin-bottom: 12px; }
.hpr-section__title { margin-bottom: 12px; }
.hpr-section__sub { color: var(--hpr-text-2); font-size: var(--hpr-step-2); }

/* ============== Pills / chips ============== */
.hpr-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(15,23,42,0.06); font-size: 0.75rem; font-weight: 600; color: var(--hpr-text); }
.hpr-pill--alt  { background: rgba(14,165,233,0.12); color: var(--hpr-blue); }
.hpr-pill--gold { background: rgba(245,158,11,0.16); color: #b45309; }
.hpr-pill--green{ background: rgba(34,197,94,0.16); color: #15803d; }
.hpr-chip { padding: 12px 20px; border-radius: 999px; background: #fff; border: 1px solid rgba(15,23,42,0.08); color: var(--hpr-navy); font-weight: 500; cursor: pointer; transition: all .15s ease; }
.hpr-chip:hover { border-color: var(--hpr-blue); transform: translateY(-2px); box-shadow: var(--hpr-shadow-sm); }
.hpr-chip.is-active { background: var(--hpr-gradient-cool); color: #fff; border-color: transparent; }

/* ============== Stats ============== */
.hpr-stat { padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 4px; border: 1px solid rgba(255,255,255,0.08); }
.hpr-stat__value { font-family: var(--hpr-font-head); font-weight: 700; font-size: 1.4rem; }
.hpr-stat__label { font-size: 0.75rem; opacity: .8; text-transform: uppercase; letter-spacing: 0.06em; }
.hpr-stat--green .hpr-stat__value { color: var(--hpr-green); }
.hpr-stat--blue  .hpr-stat__value { color: var(--hpr-blue); }
.hpr-stat--gold  .hpr-stat__value { color: var(--hpr-gold); }

/* ============== Hero ============== */
.hpr-hero { position: relative; padding: clamp(64px, 10vw, 120px) 0 clamp(80px, 12vw, 140px); color: #fff; background: var(--hpr-gradient-bg); overflow: hidden; }
.hpr-hero--inner { padding: 80px 0 60px; }
.hpr-hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hpr-hero__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(140px); opacity: .35; }
.hpr-hero__glow--a { top: -100px; left: -100px; background: var(--hpr-blue); }
.hpr-hero__glow--b { bottom: -120px; right: -80px; background: var(--hpr-green); }
.hpr-hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); }
.hpr-hero__particles { position: absolute; inset: 0; }
.hpr-hero__particle { position: absolute; width: 4px; height: 4px; background: var(--hpr-blue); border-radius: 50%; box-shadow: 0 0 12px var(--hpr-blue); animation: hpr-hero-particle 14s ease-in-out infinite; top: calc(50% + var(--i) * 22px - 132px); left: calc(50% + var(--i) * 35px - 210px); animation-delay: calc(var(--i) * -0.6s); opacity: .7; }
.hpr-hero__particle:nth-child(odd) { background: var(--hpr-green); box-shadow: 0 0 12px var(--hpr-green); }
.hpr-hero__particle:nth-child(3n) { background: var(--hpr-gold); box-shadow: 0 0 12px var(--hpr-gold); }
@keyframes hpr-hero-particle { 0%,100% { transform: translate(0,0); opacity:.4; } 50% { transform: translate(40px,-30px); opacity:1; } }

.hpr-hero__inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; }
@media (min-width: 1024px) { .hpr-hero__inner { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
.hpr-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); font-size: 0.8rem; font-weight: 500; }
.hpr-hero__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--hpr-green); box-shadow: 0 0 0 0 rgba(34,197,94,0.6); animation: hpr-pulse 2s infinite; }
@keyframes hpr-pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
/* Hero H1 — overspecific selector so nothing else can win the cascade. */
.hpr-hero .hpr-hero__content h1.hpr-hero__title,
.hpr-body .hpr-hero__title {
	margin: 18px 0 18px;
	font-size: clamp(2.25rem, 3.4vw + 1rem, 4rem) !important;
	line-height: 1.08;
	font-weight: 800;
	max-width: 18ch;
	background: linear-gradient(180deg, #ffffff 70%, rgba(255,255,255,0.65));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
@media (min-width: 1280px) { .hpr-hero .hpr-hero__title { max-width: 16ch; } }
.hpr-hero__subtitle { color: rgba(255,255,255,0.78); font-size: var(--hpr-step-2); max-width: 580px; margin-bottom: 28px; }
.hpr-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hpr-hero__trust { display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.72); align-items: center; }
.hpr-hero__check { color: var(--hpr-green); font-weight: 700; }
.hpr-hero__disclosure { margin-top: 24px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.hpr-hero__ctas .hpr-btn--ghost { background: rgba(255,255,255,0.08); color: #fff !important; border-color: rgba(255,255,255,0.16); }
.hpr-hero__ctas .hpr-btn--ghost:hover { background: rgba(255,255,255,0.16); }

.hpr-hero__panel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--hpr-radius-lg); padding: 24px; backdrop-filter: blur(16px); box-shadow: var(--hpr-shadow-lg); color: #fff; }
.hpr-hero__panel-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 0.85rem; }
.hpr-hero__panel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--hpr-green); box-shadow: 0 0 12px var(--hpr-green); animation: hpr-pulse 2s infinite; }
.hpr-hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 18px; }
.hpr-hero__meter { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.hpr-hero__meter-row { display: grid; grid-template-columns: 1.2fr 2fr 0.6fr; gap: 10px; align-items: center; font-size: 0.85rem; }
.hpr-hero__meter-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; }
.hpr-hero__meter-fill { display: block; height: 100%; width: var(--w); border-radius: 999px; transition: width 1.2s cubic-bezier(0.22,0.6,0.36,1); }
.hpr-hero__meter-fill--bad { background: linear-gradient(90deg, #ef4444, #f59e0b); }
.hpr-hero__meter-fill--good { background: var(--hpr-gradient-cool); }
.hpr-hero__panel-cta { color: #fff; font-weight: 600; font-size: 0.9rem; }
.hpr-hero__panel-cta:hover { color: var(--hpr-green); }

/* ============== Mobile sticky CTA ============== */
.hpr-mobile-cta { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 150; display: none; }
.hpr-mobile-cta__btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 18px; background: var(--hpr-gradient-cool); color: #fff !important; font-weight: 700; border-radius: 14px; box-shadow: 0 12px 30px rgba(14,165,233,0.4); }
@media (max-width: 768px) { .hpr-mobile-cta { display: block; } body { padding-bottom: 80px; } }

/* ============== Footer ============== */
.hpr-footer { background: var(--hpr-navy); color: rgba(255,255,255,0.78); padding: 64px 0 32px; margin-top: 80px; }
.hpr-footer__top { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 768px) { .hpr-footer__top { grid-template-columns: 1.2fr 2fr; gap: 64px; } }
.hpr-footer__title { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.hpr-footer__tag { color: rgba(255,255,255,0.65); max-width: 360px; }
.hpr-footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.hpr-fwidget__title { color: #fff; font-size: 0.95rem; margin: 0 0 12px; }
.hpr-fwidget ul { list-style: none; padding: 0; margin: 0; }
.hpr-fwidget li { margin-bottom: 8px; }
.hpr-fwidget a { color: rgba(255,255,255,0.72); }
.hpr-fwidget a:hover { color: #fff; }
.hpr-footer__nav { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.hpr-footer__menu { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.hpr-footer__menu a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.hpr-footer__menu a:hover { color: #fff; }
.hpr-footer__disclaimer { padding: 24px 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hpr-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.5); padding-top: 16px; }

/* ============== Forms / fields ============== */
.hpr-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; font-weight: 500; color: var(--hpr-text); }
.hpr-field > span { font-weight: 600; }
.hpr-field input[type=number], .hpr-field input[type=text], .hpr-field input[type=email], .hpr-field input[type=month], .hpr-field select { width: 100%; padding: 10px 12px; border: 1px solid rgba(15,23,42,0.12); border-radius: 10px; background: #fff; font: inherit; }
.hpr-field input[type=range] { width: 100%; }
.hpr-field output { font-family: var(--hpr-font-head); font-weight: 700; color: var(--hpr-blue); }

/* ============== Cards / postgrid ============== */
.hpr-postgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.hpr-postcard { background: #fff; border: 1px solid rgba(15,23,42,0.06); border-radius: var(--hpr-radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.hpr-postcard:hover { transform: translateY(-2px); box-shadow: var(--hpr-shadow); }
.hpr-postcard__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hpr-postcard__body { padding: 20px; }
.hpr-postcard__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.hpr-postcard__title { font-size: 1.15rem; margin: 0 0 8px; }
.hpr-postcard__title a { color: var(--hpr-navy); }
.hpr-postcard__title a:hover { color: var(--hpr-blue); }
.hpr-postcard__excerpt { color: var(--hpr-text-2); font-size: 0.9rem; margin: 0 0 12px; }
.hpr-postcard__more { font-weight: 600; }

/* ============== Pagination ============== */
.hpr-pagination { margin-top: 40px; }
.hpr-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.hpr-pagination .page-numbers { padding: 8px 14px; border-radius: 10px; background: #fff; border: 1px solid rgba(15,23,42,0.08); color: var(--hpr-text); font-weight: 600; }
.hpr-pagination .page-numbers.current { background: var(--hpr-gradient-cool); color: #fff; border-color: transparent; }

/* ============== Single ============== */
.hpr-single__header { padding: 56px 0 36px; }
.hpr-single__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hpr-single__lede { font-size: var(--hpr-step-3); color: var(--hpr-text-2); max-width: 720px; }
.hpr-single__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.hpr-single__avatar { border-radius: 50%; }
.hpr-single__hero img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 0; }
.hpr-single__layout { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 48px 0; }
@media (min-width: 1024px) { .hpr-single__layout { grid-template-columns: 2.2fr 1fr; } }
.hpr-prose { max-width: 760px; font-size: 1.05rem; line-height: 1.75; }
.hpr-prose h2, .hpr-prose h3 { margin-top: 1.4em; }
.hpr-prose p { margin: 1em 0; }
.hpr-prose ul, .hpr-prose ol { margin: 1em 0 1em 1.4em; }
.hpr-prose blockquote { border-left: 4px solid var(--hpr-blue); padding: 4px 16px; color: var(--hpr-text-2); margin: 1.4em 0; background: rgba(14,165,233,0.05); border-radius: 4px; }
.hpr-disclosure { padding: 14px 18px; background: rgba(245,158,11,0.08); border-radius: 12px; font-size: 0.9rem; color: #92400e; }

/* ============== Search ============== */
.hpr-search { display: flex; gap: 8px; max-width: 560px; }
.hpr-search input[type=search] { flex: 1; padding: 14px 18px; border-radius: 12px; border: 1px solid rgba(15,23,42,0.1); background: #fff; font: inherit; }

/* ============== Breadcrumbs ============== */
.hpr-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 16px; font-size: 0.85rem; color: var(--hpr-text-2); }
.hpr-breadcrumbs li + li::before { content: '›'; margin-right: 8px; opacity: 0.4; }

/* ============== Quick start ============== */
.hpr-quickstart { padding: 40px 0; background: #fff; border-bottom: 1px solid rgba(15,23,42,0.05); }
.hpr-quickstart__head { text-align: center; margin-bottom: 24px; }
.hpr-quickstart__title { font-size: var(--hpr-step-3); }
.hpr-quickstart__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ============== Empty state ============== */
.hpr-empty { padding: 40px 24px; text-align: center; color: var(--hpr-text-2); background: rgba(15,23,42,0.03); border-radius: 16px; }
