:root {
	--hh24-v4-ink: #000000;
	--hh24-v4-text: #555555;
	--hh24-v4-plum: #000000;
	--hh24-v4-coral: #f78f82;
	--hh24-v4-blush: #fef4f3;
	--hh24-v4-lavender: #ededed;
	--hh24-v4-lavender-deep: #dedede;
	--hh24-v4-champagne: #d6b471;
	--hh24-v4-paper: #ffffff;
	--hh24-v4-white: #fff;
	--hh24-v4-border: #e7e3e1;
	--hh24-v4-shadow: 0 22px 70px rgba(34, 26, 37, .1);
	--hh24-v4-radius: 22px;
	--hh24-v4-hero-title: clamp(44px, 4.8vw, 64px);
	--hh24-v4-section-title-size: clamp(36px, 3.8vw, 52px);
}

html { scroll-behavior: smooth; }
body {
	background: var(--hh24-v4-white);
	color: var(--hh24-v4-text);
	font-family: "Jost Variable", "Jost", Arial, sans-serif;
	font-size: 18px;
	line-height: 1.5;
}
body p,
body li,
body input,
body select,
body textarea,
body button { font-size: 18px; }
h1, h2, h3, h4, h5, h6 {
	color: var(--hh24-v4-ink);
	font-family: "Playfair Display Variable", "Playfair Display", Georgia, serif;
	font-weight: 500;
	letter-spacing: -.025em;
}
.hh24-container { width: min(1380px, calc(100% - 64px)); margin-inline: auto; }
.hh24-dashboard-shell { width: min(1380px, calc(100% - 32px)); max-width: 1380px; margin-inline: auto; }

/* Brand and navigation */
.hh24-site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid rgba(17, 16, 15, .08);
	backdrop-filter: blur(18px);
}
body.admin-bar .hh24-site-header { top: 32px; }
.hh24-header-inner { min-height: 86px; display: flex; align-items: center; gap: 34px; }
.hh24-brand {
	display: inline-flex;
	align-items: center;
	gap: 0;
	color: var(--hh24-v4-ink);
	text-decoration: none;
	white-space: nowrap;
}
.hh24-brand-type { display: inline-flex; align-items: flex-start; font-family: "Playfair Display Variable", "Playfair Display", Georgia, serif; line-height: 1; }
.hh24-brand-type strong { font-family: "Playfair Display Variable", "Playfair Display", Georgia, serif; font-size: 29px; font-weight: 600; letter-spacing: -.045em; text-transform: none; }
.hh24-brand-type sup { margin: -1px 0 0 5px; color: var(--hh24-v4-coral); font-family: "Jost Variable", "Jost", Arial, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.hh24-primary-nav { margin-left: auto; }
.hh24-primary-nav ul { display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; list-style: none; }
.hh24-primary-nav a,
.hh24-header-login {
	color: var(--hh24-v4-ink);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
}
.hh24-primary-nav a { position: relative; }
.hh24-primary-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.hh24-primary-nav a:hover::after,
.hh24-primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.hh24-header-actions { display: flex; align-items: center; gap: 20px; }
.hh24-header-cart {
	display: inline-grid;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	place-items: center;
	border: 1px solid var(--hh24-v4-ink);
	border-radius: 50%;
	background: #fff;
	color: var(--hh24-v4-ink);
	font-size: 17px;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.hh24-header-cart:hover,
.hh24-header-cart:focus-visible {
	background: var(--hh24-v4-champagne);
	color: var(--hh24-v4-ink);
	transform: translateY(-1px);
}
.hh24-header-login {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 18px;
	border: 1px solid var(--hh24-v4-ink);
	border-radius: 999px;
	background: #fff;
	color: var(--hh24-v4-ink);
	font-size: 15px;
	font-weight: 500;
}
.hh24-header-start {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 22px;
	border: 1px solid var(--hh24-v4-ink);
	border-radius: 999px;
	background: var(--hh24-v4-ink);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}
.hh24-mobile-nav-actions { display: none; }
.hh24-header-login:hover,
.hh24-header-login:focus-visible,
.hh24-header-start:hover,
.hh24-header-start:focus-visible { border-color: var(--hh24-v4-coral); background: var(--hh24-v4-coral); color: var(--hh24-v4-ink); }
.hh24-menu-toggle { display: none; }

/* Shared */
.hh24-v4-main { overflow: clip; }
.hh24-v4-kicker {
	margin: 0 0 18px;
	color: var(--hh24-v4-plum);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	line-height: 1.3;
	text-transform: uppercase;
}
.hh24-v4-section-title { max-width: 600px; }
.hh24-v4-section-title.is-centered { max-width: 800px; margin-inline: auto; text-align: center; }
.hh24-v4-section-title h2 { margin: 0; font-size: clamp(40px, 4.2vw, 64px); line-height: 1.08; }
.hh24-v4-section-title h2 em { font-weight: 500; }
.hh24-v4-section-title > p:not(.hh24-v4-kicker) { max-width: 680px; margin: 24px 0 0; font-size: 18px; line-height: 1.65; }
.hh24-v4-section-title.is-centered > p:not(.hh24-v4-kicker) { margin-inline: auto; }
.hh24-v4-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hh24-v4-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 48px;
	padding: 11px 27px;
	border: 1px solid var(--hh24-v4-ink);
	border-radius: 999px;
	font-size: 16px;
	font-weight: 650;
	line-height: 1;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hh24-v4-button:hover { transform: translateY(-2px); }
.hh24-v4-button.is-dark { background: var(--hh24-v4-ink); color: #fff; box-shadow: 0 12px 30px rgba(17, 16, 15, .16); }
.hh24-v4-button.is-dark:hover { background: var(--hh24-v4-plum); border-color: var(--hh24-v4-plum); }
.hh24-v4-button.is-outline { background: #fff; color: var(--hh24-v4-ink); }
.hh24-v4-button.is-outline:hover { background: var(--hh24-v4-blush); }
.hh24-v4-text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; color: var(--hh24-v4-ink); font-weight: 700; text-decoration: none; }
.hh24-v4-text-link i { transition: transform .2s ease; }
.hh24-v4-text-link:hover i { transform: translateX(4px); }
.hh24-v4-check-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.hh24-v4-check-list li { display: flex; gap: 12px; align-items: flex-start; }
.hh24-v4-check-list i { display: grid; place-items: center; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--hh24-v4-lavender); color: var(--hh24-v4-plum); font-size: 11px; flex: 0 0 auto; }

/* Hero */
.hh24-v4-hero { background: linear-gradient(180deg, #fff 0%, #fffdfb 100%); }
.hh24-v4-hero-grid { min-height: 710px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr); align-items: center; gap: 25px; padding-block: 70px 45px; }
.hh24-v4-hero-copy { position: relative; z-index: 2; max-width: 610px; padding-left: 28px; }
.hh24-v4-hero-copy h1 { margin: 0; font-size: clamp(54px, 5.7vw, 84px); line-height: .99; }
.hh24-v4-hero-copy h1 em { display: inline; font-weight: 500; }
.hh24-v4-hero-copy > p:not(.hh24-v4-kicker) { max-width: 560px; margin: 28px 0 0; font-size: 18px; line-height: 1.7; }
.hh24-v4-assurances { display: flex; flex-wrap: wrap; gap: 9px 20px; margin: 22px 0 0; padding: 0; list-style: none; color: #6a676b; }
.hh24-v4-assurances li { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; }
.hh24-v4-assurances i { color: var(--hh24-v4-plum); font-size: 11px; }
.hh24-v4-hero-art { position: relative; align-self: stretch; min-height: 620px; margin: 0; display: flex; align-items: flex-end; }
.hh24-v4-hero-art::before { content: ""; position: absolute; z-index: 0; width: 72%; aspect-ratio: 1; right: 5%; top: 4%; border-radius: 50%; background: var(--hh24-v4-blush); opacity: .72; }
.hh24-v4-hero-art img { position: relative; z-index: 1; width: 118%; max-width: none; margin-left: -13%; object-fit: contain; }
.hh24-v4-hero-art figcaption { position: absolute; z-index: 3; right: 4%; bottom: 7%; display: grid; grid-template-columns: auto 1fr; gap: 0 11px; align-items: center; min-width: 250px; padding: 16px 20px; border: 1px solid rgba(17, 16, 15, .08); border-radius: 16px; background: rgba(255, 255, 255, .93); box-shadow: var(--hh24-v4-shadow); backdrop-filter: blur(12px); }
.hh24-v4-hero-art figcaption > span { grid-row: 1 / 3; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--hh24-v4-blush); color: var(--hh24-v4-coral); }
.hh24-v4-hero-art figcaption strong { color: var(--hh24-v4-ink); font-size: 15px; }
.hh24-v4-hero-art figcaption small { color: #777277; font-size: 12px; }

/* Proof */
.hh24-v4-proof { border-block: 1px solid var(--hh24-v4-border); background: #fff; }
.hh24-v4-proof .hh24-container { min-height: 104px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.hh24-v4-proof p { margin: 0; color: var(--hh24-v4-ink); font-family: "Playfair Display Variable", "Playfair Display", Georgia, serif; font-size: 20px; }
.hh24-v4-proof ul { display: flex; justify-content: flex-end; gap: 24px; margin: 0; padding: 0; list-style: none; }
.hh24-v4-proof li { color: #777277; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* Platform */
.hh24-v4-intro { padding: 130px 0 145px; background: #fff; }
.hh24-v4-app-showcase { width: min(1080px, 100%); min-height: 585px; margin: 70px auto 0; display: grid; grid-template-columns: 220px 1fr; overflow: hidden; border: 1px solid var(--hh24-v4-border); border-radius: 24px; background: #fff; box-shadow: var(--hh24-v4-shadow); }
.hh24-v4-app-showcase > aside { padding: 28px 20px; background: var(--hh24-v4-plum); color: #fff; }
.hh24-v4-mini-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 34px; }
.hh24-v4-mini-brand span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.5); font-size: 10px; letter-spacing: .1em; }
.hh24-v4-mini-brand strong { font-size: 14px; font-weight: 600; }
.hh24-v4-app-showcase aside ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.hh24-v4-app-showcase aside li { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 10px; color: rgba(255,255,255,.72); font-size: 14px; }
.hh24-v4-app-showcase aside li.is-active { background: rgba(255,255,255,.13); color: #fff; }
.hh24-v4-app-showcase aside i { width: 17px; text-align: center; }
.hh24-v4-app-content { padding: 38px 42px; background: #fbfafc; }
.hh24-v4-app-content > header { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.hh24-v4-app-content header small { color: #888389; font-size: 13px; }
.hh24-v4-app-content header h3 { margin: 3px 0 0; font-size: 36px; }
.hh24-v4-app-content header > span { padding: 8px 13px; border-radius: 999px; background: var(--hh24-v4-blush); color: var(--hh24-v4-plum); font-size: 12px; font-weight: 650; }
.hh24-v4-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 30px; }
.hh24-v4-stat-grid article { display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; padding: 21px; border: 1px solid #e8e8e8; border-radius: 15px; background: #fff; }
.hh24-v4-stat-grid article > i { grid-row: 1 / 3; display: grid; place-items: center; width: 39px; height: 39px; border-radius: 12px; background: var(--hh24-v4-lavender); color: var(--hh24-v4-plum); }
.hh24-v4-stat-grid span { color: #827d83; font-size: 12px; }
.hh24-v4-stat-grid strong { color: var(--hh24-v4-ink); font-size: 22px; line-height: 1.2; }
.hh24-v4-stat-grid strong small { color: #8d888e; font-size: 11px; font-weight: 400; }
.hh24-v4-app-columns { display: grid; grid-template-columns: 1.6fr .8fr; gap: 18px; margin-top: 18px; }
.hh24-v4-app-columns > article { min-height: 235px; padding: 23px; border: 1px solid #e8e8e8; border-radius: 16px; background: #fff; }
.hh24-v4-card-head { display: flex; justify-content: space-between; gap: 15px; color: var(--hh24-v4-ink); }
.hh24-v4-card-head span { color: var(--hh24-v4-plum); font-size: 12px; font-weight: 650; }
.hh24-v4-task-demo { display: grid; gap: 11px; margin: 19px 0 0; padding: 0; list-style: none; }
.hh24-v4-task-demo li { display: flex; gap: 11px; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0edf0; }
.hh24-v4-task-demo li > i { width: 20px; height: 20px; border: 1px solid #c8c2c9; border-radius: 50%; flex: 0 0 auto; }
.hh24-v4-task-demo li.is-done > i { display: grid; place-items: center; border-color: var(--hh24-v4-plum); background: var(--hh24-v4-plum); color: #fff; font-size: 9px; }
.hh24-v4-task-demo span { color: var(--hh24-v4-ink); font-size: 13px; }
.hh24-v4-task-demo small { display: block; color: #9a959b; font-size: 10px; }
.hh24-v4-ring { width: 132px; height: 132px; margin: 25px auto 0; display: grid; place-content: center; border-radius: 50%; background: radial-gradient(circle, #fff 57%, transparent 59%), conic-gradient(var(--hh24-v4-coral) 72%, var(--hh24-v4-lavender) 0); text-align: center; }
.hh24-v4-ring strong { color: var(--hh24-v4-ink); font-family: "Playfair Display Variable", "Playfair Display", serif; font-size: 29px; }
.hh24-v4-ring span { color: #8a858b; font-size: 10px; }

/* Builder */
.hh24-v4-builder { padding: 135px 0; background: var(--hh24-v4-blush); }
.hh24-v4-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center; }
.hh24-v4-builder-demo { position: relative; }
.hh24-v4-demo-window { overflow: hidden; border: 1px solid #dedede; border-radius: 22px; background: #fff; box-shadow: var(--hh24-v4-shadow); transform: rotate(-1deg); }
.hh24-v4-demo-window > header { height: 38px; display: flex; align-items: center; gap: 6px; padding: 0 15px; border-bottom: 1px solid #e8e8e8; background: #f8f6f7; }
.hh24-v4-demo-window > header > span { width: 8px; height: 8px; border-radius: 50%; background: #d9d9d9; }
.hh24-v4-demo-window > header small { margin-left: 10px; color: #979197; font-size: 10px; }
.hh24-v4-demo-body { min-height: 430px; display: grid; grid-template-columns: 145px 1fr; }
.hh24-v4-demo-body > aside { display: grid; align-content: start; gap: 8px; padding: 19px 13px; border-right: 1px solid #e8e8e8; background: #fbfafb; }
.hh24-v4-demo-body aside strong { margin-bottom: 6px; color: var(--hh24-v4-ink); font-size: 11px; }
.hh24-v4-demo-body aside button { padding: 9px 8px; border: 1px solid #e3e3e3; border-radius: 7px; background: #fff; color: #6c666d; font-size: 9px; text-align: left; }
.hh24-v4-demo-body aside button:last-child { border-style: dashed; color: var(--hh24-v4-plum); }
.hh24-v4-demo-page { overflow: hidden; padding: 12px; background: #eee9e2; }
.hh24-v4-demo-nav { display: flex; justify-content: space-between; padding: 12px 17px; background: #fff; color: #2f2a2f; font-family: "Playfair Display Variable", serif; font-size: 11px; }
.hh24-v4-demo-nav span { font-family: "Jost Variable", sans-serif; font-size: 6px; letter-spacing: .08em; }
.hh24-v4-demo-hero { min-height: 245px; display: grid; place-content: center; padding: 25px; background: linear-gradient(rgba(35,25,36,.43), rgba(35,25,36,.43)), url("../images/hero-editorial-v1.webp") center/cover; color: #fff; text-align: center; }
.hh24-v4-demo-hero small { font-size: 7px; letter-spacing: .24em; }
.hh24-v4-demo-hero strong { margin: 8px 0; color: #fff; font-family: "Playfair Display Variable", serif; font-size: 32px; font-weight: 500; }
.hh24-v4-demo-hero span { font-size: 8px; }
.hh24-v4-demo-story { min-height: 105px; display: grid; align-content: center; justify-items: center; gap: 7px; background: #fffaf1; }
.hh24-v4-demo-story small { color: #5b4d46; font-size: 7px; letter-spacing: .13em; }
.hh24-v4-demo-story span { display: block; width: 52%; height: 3px; border-radius: 2px; background: #d7cec4; }
.hh24-v4-demo-story span:nth-child(3) { width: 67%; }
.hh24-v4-demo-story span:nth-child(4) { width: 43%; }
.hh24-v4-floating-note { position: absolute; right: -25px; bottom: -23px; padding: 13px 18px; border-radius: 13px; background: var(--hh24-v4-plum); color: #fff; box-shadow: 0 16px 35px rgba(0,0,0,.28); font-size: 13px; font-weight: 650; }
.hh24-v4-floating-note i { margin-right: 8px; color: #f8cac3; }

/* Tools */
.hh24-v4-tools { padding: 140px 0; background: #fff; }
.hh24-v4-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 68px; }
.hh24-v4-tools-grid article { position: relative; min-height: 315px; overflow: hidden; padding: 30px; border: 1px solid var(--hh24-v4-border); border-radius: 20px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.hh24-v4-tools-grid article:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(35, 28, 37, .08); }
.hh24-v4-tools-grid article.is-large { grid-column: span 2; display: grid; grid-template-columns: 1.3fr .7fr; gap: 35px; background: var(--hh24-v4-lavender); }
.hh24-v4-tool-icon { display: grid; place-items: center; width: 45px; height: 45px; margin-bottom: 23px; border-radius: 14px; background: var(--hh24-v4-blush); color: var(--hh24-v4-plum); }
.hh24-v4-tools-grid .is-large .hh24-v4-tool-icon { position: absolute; top: 28px; right: 28px; background: rgba(255,255,255,.7); }
.hh24-v4-tools-grid small { color: var(--hh24-v4-plum); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hh24-v4-tools-grid h3 { margin: 10px 0 12px; font-size: 29px; line-height: 1.15; }
.hh24-v4-tools-grid p { margin: 0; color: #6d686e; font-size: 15px; }
.hh24-v4-guest-visual { align-self: end; display: grid; gap: 9px; }
.hh24-v4-guest-visual span { padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,.72); color: #6d6870; font-size: 12px; }
.hh24-v4-guest-visual strong { display: inline-block; min-width: 42px; color: var(--hh24-v4-ink); font-size: 20px; }
.hh24-v4-progress { height: 7px; margin-top: 34px; overflow: hidden; border-radius: 999px; background: var(--hh24-v4-lavender); }
.hh24-v4-progress i { display: block; height: 100%; border-radius: inherit; background: var(--hh24-v4-plum); }
.hh24-v4-budget-bars { display: grid; gap: 8px; margin-top: 27px; }
.hh24-v4-budget-bars i { display: block; width: var(--v); height: 9px; border-radius: 999px; background: var(--hh24-v4-coral); opacity: .78; }
.hh24-v4-budget-bars i:nth-child(2) { background: var(--hh24-v4-plum); }
.hh24-v4-budget-bars i:nth-child(3) { background: var(--hh24-v4-champagne); }
.hh24-v4-table-visual { position: relative; height: 77px; margin-top: 22px; }
.hh24-v4-table-visual i { position: absolute; display: grid; place-items: center; width: 58px; height: 58px; border: 2px solid var(--hh24-v4-plum); border-radius: 50%; color: var(--hh24-v4-plum); font-size: 10px; font-style: normal; }
.hh24-v4-table-visual i:nth-child(1) { left: 5%; bottom: 0; }
.hh24-v4-table-visual i:nth-child(2) { left: 38%; top: 0; }
.hh24-v4-table-visual i:nth-child(3) { right: 5%; bottom: 0; }
.hh24-v4-timeline-visual { display: grid; gap: 7px; margin-top: 22px; padding-left: 14px; border-left: 1px solid var(--hh24-v4-coral); }
.hh24-v4-timeline-visual span { color: var(--hh24-v4-coral); font-size: 11px; }
.hh24-v4-timeline-visual b { margin-left: 8px; color: var(--hh24-v4-ink); font-weight: 550; }
.hh24-v4-photo-visual { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 23px; }
.hh24-v4-photo-visual i { aspect-ratio: 1; border-radius: 7px; background: var(--hh24-v4-blush); }
.hh24-v4-photo-visual i:nth-child(2) { background: var(--hh24-v4-lavender); }
.hh24-v4-photo-visual i:nth-child(3) { background: #e5ddcf; }
.hh24-v4-photo-visual i:nth-child(4) { background: #d7c7c7; }
.hh24-v4-partner-visual { display: flex; gap: 12px; margin-top: 28px; }
.hh24-v4-partner-visual i { display: grid; place-items: center; width: 47px; height: 47px; border: 1px solid var(--hh24-v4-border); border-radius: 50%; color: var(--hh24-v4-plum); }

/* How it works */
.hh24-v4-how { padding: 130px 0; background: var(--hh24-v4-paper); }
.hh24-v4-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 70px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.hh24-v4-steps li { position: relative; padding: 0 42px; text-align: center; }
.hh24-v4-steps li + li { border-left: 1px solid var(--hh24-v4-border); }
.hh24-v4-steps li > span { display: block; margin-bottom: 18px; color: var(--hh24-v4-coral); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.hh24-v4-steps li i { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 22px; border-radius: 50%; background: var(--hh24-v4-lavender); color: var(--hh24-v4-plum); font-size: 21px; }
.hh24-v4-steps h3 { margin: 0 0 12px; font-size: 28px; }
.hh24-v4-steps p { margin: 0; color: #777278; font-size: 15px; }

/* Designs */
.hh24-v4-designs { padding: 140px 0; background: #fff; }
.hh24-v4-designs .hh24-v4-section-title { max-width: 800px; }
.hh24-v4-theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 62px; }
.hh24-v4-theme-grid article { overflow: hidden; border: 1px solid var(--hh24-v4-border); border-radius: 18px; background: #fff; }
.hh24-v4-theme-grid article > div { min-height: 520px; display: grid; place-content: center; padding: 25px; text-align: center; }
.hh24-v4-theme-grid nav { position: absolute; top: 0; right: 0; left: 0; display: flex; justify-content: space-between; padding: 18px 20px; font-family: "Playfair Display Variable", serif; font-size: 12px; text-align: left; }
.hh24-v4-theme-grid nav span { font-family: "Jost Variable", sans-serif; font-size: 7px; letter-spacing: .1em; }
.hh24-v4-theme-grid article > div { position: relative; }
.hh24-v4-theme-grid article small { font-size: 9px; letter-spacing: .22em; }
.hh24-v4-theme-grid article strong { margin: 19px 0; font-family: "Playfair Display Variable", serif; font-size: 52px; font-weight: 500; line-height: .96; }
.hh24-v4-theme-grid article em { font-size: 11px; font-style: normal; letter-spacing: .12em; }
.hh24-v4-theme-grid article footer { display: flex; justify-content: space-between; gap: 15px; align-items: center; padding: 17px 20px; border-top: 1px solid var(--hh24-v4-border); }
.hh24-v4-theme-grid article footer strong { color: var(--hh24-v4-ink); font-size: 15px; }
.hh24-v4-theme-grid article footer span { color: var(--hh24-v4-plum); font-size: 12px; }
.hh24-v4-theme-grid .is-blush > div { background: #f9dcd8; color: #4b3a3c; }
.hh24-v4-theme-grid .is-ink > div { background: #111; color: #eee7df; }
.hh24-v4-theme-grid .is-ink nav,
.hh24-v4-theme-grid .is-ink strong { color: #eee7df; }
.hh24-v4-theme-grid .is-sage > div { background: #dce6da; color: #2f4437; }
.hh24-v4-center-action { margin-top: 40px; text-align: center; }

/* Human support */
.hh24-v4-human { padding: 135px 0; background: var(--hh24-v4-lavender); }
.hh24-v4-human-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: center; }
.hh24-v4-human-quote { min-height: 390px; display: grid; align-content: center; padding: 55px; border-radius: 50% 50% 46% 54% / 54% 44% 56% 46%; background: var(--hh24-v4-plum); color: #fff; text-align: center; }
.hh24-v4-human-quote span { display: block; font-family: "Playfair Display Variable", serif; font-size: 95px; line-height: .9; }
.hh24-v4-human-quote strong { display: block; margin-top: 17px; font-size: 18px; }
.hh24-v4-human-quote p { max-width: 280px; margin: 12px auto 0; color: rgba(255,255,255,.72); font-size: 14px; }

/* Pricing */
.hh24-v4-pricing { padding: 140px 0; background: #fff; }
.hh24-v4-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; width: min(1120px, 100%); margin: 68px auto 0; padding: 44px; border-radius: 24px; background: var(--hh24-v4-lavender); }
.hh24-v4-price-grid article { position: relative; min-height: 570px; padding: 37px 32px; border: 1px solid #dedede; background: #fff; }
.hh24-v4-price-grid article:first-child { border-radius: 18px 0 0 18px; border-right: 0; }
.hh24-v4-price-grid article:last-child { border-radius: 0 18px 18px 0; border-left: 0; }
.hh24-v4-price-grid article.is-featured { z-index: 2; min-height: 630px; border-color: var(--hh24-v4-plum); border-radius: 18px; box-shadow: 0 18px 50px rgba(0,0,0,.16); }
.hh24-v4-price-grid article > small { color: var(--hh24-v4-champagne); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.hh24-v4-price-grid h3 { min-height: 80px; margin: 15px 0 0; font-size: 28px; line-height: 1.2; }
.hh24-v4-price { margin: 24px 0; color: var(--hh24-v4-ink); font-family: "Playfair Display Variable", serif; font-size: 62px; line-height: 1; }
.hh24-v4-price sup { font-size: 24px; }
.hh24-v4-price span { display: block; margin-top: 8px; color: #8c878d; font-family: "Jost Variable", sans-serif; font-size: 12px; }
.hh24-v4-price-grid ul { display: grid; gap: 11px; min-height: 180px; margin: 25px 0 30px; padding: 23px 0 0; border-top: 1px solid var(--hh24-v4-border); list-style: none; }
.hh24-v4-price-grid li { position: relative; padding-left: 23px; color: #686469; font-size: 14px; }
.hh24-v4-price-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--hh24-v4-plum); font-weight: 700; }
.hh24-v4-price-grid .hh24-v4-button { width: 100%; }
.hh24-v4-popular { position: absolute; top: -14px; left: 50%; padding: 6px 17px; border-radius: 999px; background: var(--hh24-v4-plum); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .05em; transform: translateX(-50%); white-space: nowrap; }
.hh24-v4-price-note { margin: 28px 0 0; text-align: center; color: #777278; font-size: 13px; }
.hh24-v4-price-note i { margin-right: 8px; color: var(--hh24-v4-plum); }

/* Final */
.hh24-v4-final { padding: 95px 0; background: var(--hh24-v4-blush); }
.hh24-v4-final .hh24-container { display: flex; justify-content: space-between; gap: 55px; align-items: center; }
.hh24-v4-final h2 { max-width: 760px; margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: 1.02; }
.hh24-v4-final p:not(.hh24-v4-kicker) { max-width: 690px; margin: 20px 0 0; font-size: 18px; }
.hh24-v4-final .hh24-v4-button { flex: 0 0 auto; }

/* Footer */
.hh24-site-footer { overflow: hidden; padding: 85px 0 0; background: var(--hh24-v4-ink); color: rgba(255,255,255,.68); }
.hh24-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; padding-bottom: 62px; }
.hh24-footer-intro { max-width: 350px; }
.hh24-footer-brand { color: #fff; }
.hh24-footer-brand .hh24-brand-type sup { color: #f3bbb4; }
.hh24-footer-intro p { margin: 23px 0 0; color: rgba(255,255,255,.62); }
.hh24-footer-made { display: block; margin-top: 18px; color: rgba(255,255,255,.4); font-size: 12px; }
.hh24-footer-grid h2 { margin: 0 0 18px; color: #fff; font-family: "Jost Variable", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hh24-footer-grid > div:not(.hh24-footer-intro) { display: flex; flex-direction: column; gap: 10px; }
.hh24-footer-grid a { color: rgba(255,255,255,.62); font-size: 14px; text-decoration: none; }
.hh24-footer-grid a:hover { color: #fff; }
.hh24-footer-bottom { min-height: 72px; display: flex; justify-content: space-between; gap: 30px; align-items: center; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 12px; }

/* Content pages inherit the new system without disturbing the app. */
body:not(.hh24-front-page) .hh24-content { background: var(--hh24-v4-paper); }
body:not(.hh24-front-page) .hh24-content article:not(.hh24-dashboard-page) { border-color: var(--hh24-v4-border); border-radius: 20px; box-shadow: var(--hh24-v4-shadow); }
.hh24-legal-content { color:#4f4b49; font-size:16px; line-height:1.65; }
.hh24-legal-content h1 { margin-bottom:34px; color:#000; font-size:clamp(42px,6vw,66px); }
.hh24-legal-content h2 { margin:42px 0 12px; color:#000; font-size:27px; line-height:1.3; }
.hh24-legal-content p,.hh24-legal-content li { font-size:16px; line-height:1.65; }
.hh24-legal-content a { color:#000; font-weight:600; text-underline-offset:3px; }
.hh24-legal-updated { display:inline-block; margin:0 0 16px!important; padding:7px 12px; border-radius:999px; background:var(--hh24-v4-blush); color:#6d5c57; font-size:13px!important; }
.hh24-withdrawal-form { display:grid; gap:16px; margin-top:30px; padding:28px; border:1px solid var(--hh24-v4-border); border-radius:20px; background:var(--hh24-v4-blush); }
.hh24-withdrawal-form label { display:grid; gap:7px; color:#222; font-size:14px; font-weight:650; }
.hh24-withdrawal-form input { width:100%; min-height:50px; padding:11px 13px; border:1px solid #d7d0cc; border-radius:10px; background:#fff; font:16px/1.4 inherit; }
.hh24-withdrawal-form select,
.hh24-withdrawal-form textarea { width:100%; min-height:50px; padding:11px 13px; border:1px solid #d7d0cc; border-radius:10px; background:#fff; color:#111; font:16px/1.5 inherit; }
.hh24-withdrawal-form textarea { min-height:120px; resize:vertical; }
.hh24-withdrawal-form button { min-height:50px; padding:12px 20px; border:0; border-radius:999px; background:#000; color:#fff; font:650 15px/1 inherit; cursor:pointer; }
.hh24-withdrawal-form button:hover { background:var(--hh24-v4-champagne); color:#000; }
.hh24-termination-receipt dl { display:grid; grid-template-columns:minmax(150px,.38fr) 1fr; gap:10px 22px; padding:22px; border-radius:16px; background:var(--hh24-v4-blush); }
.hh24-termination-receipt dt { color:#222; font-weight:700; }
.hh24-termination-receipt dd { margin:0; color:#444; overflow-wrap:anywhere; }
.hh24-print-receipt { min-height:48px; padding:11px 20px; border:1px solid #000; border-radius:999px; background:#000; color:#fff; font-weight:650; cursor:pointer; }
@media print { .hh24-site-header,.hh24-site-footer,.hh24-print-receipt,.dpcc-banner,.dpcc-settings-button { display:none!important; } .hh24-legal-shell { margin:0!important; } }

@media (max-width: 1180px) {
	.hh24-container { width: min(1380px, calc(100% - 44px)); }
	.hh24-header-inner { gap: 20px; }
	.hh24-primary-nav ul { gap: 20px; }
	.hh24-brand-type strong { font-size: 26px; letter-spacing: -.04em; }
	.hh24-v4-hero-grid { grid-template-columns: .95fr 1.05fr; }
	.hh24-v4-hero-art { min-height: 540px; }
	.hh24-v4-split { gap: 55px; }
	.hh24-v4-price-grid { padding: 28px; }
}

@media (max-width: 980px) {
	body.admin-bar .hh24-site-header { top: 46px; }
	.hh24-header-inner { min-height: 76px; }
	.hh24-menu-toggle { order: 4; display: grid; gap: 4px; width: 42px; height: 42px; place-content: center; border: 0; border-radius: 50%; background: var(--hh24-v4-lavender); }
	.hh24-menu-toggle > span:not(.screen-reader-text) { width: 18px; height: 2px; background: var(--hh24-v4-ink); }
	.hh24-primary-nav { position: absolute; top: 76px; right: 0; left: 0; display: none; padding: 20px 22px 25px; border-top: 1px solid var(--hh24-v4-border); background: #fff; }
	.hh24-site-header.is-open .hh24-primary-nav,
	.hh24-primary-nav.is-open { display: block; }
	.hh24-primary-nav ul { display: grid; gap: 7px; }
	.hh24-primary-nav a { display: block; padding: 9px 0; font-size: 16px; }
	.hh24-primary-nav a::after { display: none; }
	.hh24-header-cart { order: 2; width: 42px; height: 42px; flex-basis: 42px; margin-left: auto; }
	.hh24-header-actions { display: none; }
	.hh24-header-login { display: none; }
	.hh24-mobile-nav-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--hh24-v4-border); }
	.hh24-mobile-nav-actions .hh24-header-login,
	.hh24-mobile-nav-actions .hh24-header-start { display: inline-flex; flex: 1 1 180px; min-height: 48px; justify-content: center; padding: 10px 18px; font-size: 15px; }
	.hh24-v4-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 0; padding-top: 80px; }
	.hh24-v4-hero-copy { max-width: 760px; padding-left: 0; text-align: center; }
	.hh24-v4-hero-copy > p:not(.hh24-v4-kicker) { margin-inline: auto; }
	.hh24-v4-actions,
	.hh24-v4-assurances { justify-content: center; }
	.hh24-v4-hero-art { min-height: 480px; }
	.hh24-v4-hero-art img { width: 100%; margin: 0; }
	.hh24-v4-proof .hh24-container { grid-template-columns: 1fr; gap: 17px; padding-block: 25px; text-align: center; }
	.hh24-v4-proof ul { justify-content: center; flex-wrap: wrap; }
	.hh24-v4-app-showcase { grid-template-columns: 170px 1fr; }
	.hh24-v4-app-content { padding: 30px 26px; }
	.hh24-v4-stat-grid { grid-template-columns: 1fr; }
	.hh24-v4-stat-grid article { grid-template-columns: auto 1fr; }
	.hh24-v4-app-columns { grid-template-columns: 1fr; }
	.hh24-v4-app-columns > article:last-child { display: none; }
	.hh24-v4-split,
	.hh24-v4-human-grid { grid-template-columns: 1fr; }
	.hh24-v4-split { gap: 75px; }
	.hh24-v4-tools-grid { grid-template-columns: repeat(2, 1fr); }
	.hh24-v4-tools-grid article.is-large { grid-column: span 2; }
	.hh24-v4-theme-grid { grid-template-columns: repeat(2, 1fr); }
	.hh24-v4-theme-grid article:last-child { display: none; }
	.hh24-v4-price-grid { grid-template-columns: 1fr; gap: 14px; background: transparent; padding: 0; }
	.hh24-v4-price-grid article,
	.hh24-v4-price-grid article:first-child,
	.hh24-v4-price-grid article:last-child,
	.hh24-v4-price-grid article.is-featured { min-height: auto; border: 1px solid var(--hh24-v4-border); border-radius: 18px; }
	.hh24-v4-price-grid h3,
	.hh24-v4-price-grid ul { min-height: auto; }
	.hh24-v4-human-quote { width: min(470px, 100%); min-height: 420px; margin: auto; }
	.hh24-footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
	.hh24-footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
	.hh24-container { width: min(100% - 32px, 640px); }
	.hh24-brand-mark { width: 36px; }
	.hh24-brand-type strong { font-size: 23px; letter-spacing: -.035em; }
	.hh24-header-start { min-height: 38px; padding: 7px 14px; font-size: 13px; }
	.hh24-v4-hero-grid { padding-top: 60px; }
	.hh24-v4-hero-copy h1 { font-size: clamp(47px, 13vw, 66px); }
	.hh24-v4-hero-copy > p:not(.hh24-v4-kicker) { font-size: 17px; }
	.hh24-v4-hero-art { min-height: 360px; margin-top: 25px; }
	.hh24-v4-hero-art figcaption { right: 0; bottom: 0; min-width: 220px; }
	.hh24-v4-proof ul { gap: 10px 18px; }
	.hh24-v4-intro,
	.hh24-v4-builder,
	.hh24-v4-tools,
	.hh24-v4-how,
	.hh24-v4-designs,
	.hh24-v4-human,
	.hh24-v4-pricing { padding-block: 95px; }
	.hh24-v4-section-title h2 { font-size: clamp(38px, 11vw, 52px); }
	.hh24-v4-section-title > p:not(.hh24-v4-kicker) { font-size: 17px; }
	.hh24-v4-app-showcase { grid-template-columns: 1fr; min-height: auto; margin-top: 45px; }
	.hh24-v4-app-showcase > aside { display: none; }
	.hh24-v4-app-content { padding: 25px 18px; }
	.hh24-v4-app-content > header { display: grid; }
	.hh24-v4-stat-grid article:nth-child(3) { display: none; }
	.hh24-v4-demo-body { grid-template-columns: 105px 1fr; min-height: 360px; }
	.hh24-v4-demo-body > aside { padding: 13px 8px; }
	.hh24-v4-demo-body aside button { padding: 7px 5px; font-size: 7px; }
	.hh24-v4-demo-page { padding: 7px; }
	.hh24-v4-demo-hero { min-height: 210px; }
	.hh24-v4-demo-hero strong { font-size: 23px; }
	.hh24-v4-floating-note { right: 5px; }
	.hh24-v4-tools-grid { grid-template-columns: 1fr; }
	.hh24-v4-tools-grid article,
	.hh24-v4-tools-grid article.is-large { grid-column: auto; display: block; min-height: auto; }
	.hh24-v4-tools-grid .is-large .hh24-v4-tool-icon { position: static; }
	.hh24-v4-guest-visual { margin-top: 24px; }
	.hh24-v4-steps { grid-template-columns: 1fr; gap: 40px; }
	.hh24-v4-steps li { padding: 0 12px; }
	.hh24-v4-steps li + li { border: 0; }
	.hh24-v4-theme-grid { grid-template-columns: 1fr; }
	.hh24-v4-theme-grid article:last-child { display: block; }
	.hh24-v4-theme-grid article > div { min-height: 450px; }
	.hh24-v4-human-quote { min-height: 340px; padding: 40px; }
	.hh24-v4-human-quote span { font-size: 78px; }
	.hh24-v4-price-grid article { padding: 34px 27px; }
	.hh24-v4-final { padding-block: 80px; }
	.hh24-v4-final .hh24-container { display: grid; }
	.hh24-v4-final .hh24-v4-button { justify-self: start; }
	.hh24-footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
	.hh24-footer-intro { grid-column: 1 / -1; }
	.hh24-footer-grid > div:last-child { grid-column: auto; }
	.hh24-footer-bottom { display: grid; gap: 4px; justify-content: start; padding-block: 18px; }
}

@media (max-width: 480px) {
	.hh24-header-actions { display: none; }
	.hh24-menu-toggle { margin-left: auto; }
}

/* v0.6 visual system: logo gold, ink black and restrained rose surfaces. */
.hh24-brand-picture,
.hh24-logo-svg { display: block; width: 300px; max-width: 100%; height: auto; }
.hh24-footer-brand {
	--hh24-logo-ink: #ffffff;
	--hh24-logo-paper: #111111;
	--hh24-logo-soft: #2a211f;
	--hh24-logo-gold: #d6b471;
	--hh24-logo-rose: #f78f82;
	width: max-content;
	max-width: 100%;
	padding: 0;
	border-radius: 0;
	background: transparent;
}
.hh24-footer-brand .hh24-logo-svg { filter: none; }

.hh24-v4-main h1,
.hh24-v4-hero-copy h1 { font-family: "Playfair Display Variable", "Playfair Display", Georgia, serif; font-size: 42px; font-weight: 400; line-height: 1.3; letter-spacing: normal; }
.hh24-v4-main h2,
.hh24-v4-section-title h2 { font-family: "Playfair Display Variable", "Playfair Display", Georgia, serif; font-size: 36px; font-weight: 400; line-height: 1.3; letter-spacing: normal; }
.hh24-v4-main h3 { font-family: "Playfair Display Variable", "Playfair Display", Georgia, serif !important; font-size: 27px !important; font-weight: 400 !important; line-height: 1.3 !important; letter-spacing: normal !important; }
.hh24-v4-main p,
.hh24-v4-main li { color: var(--hh24-v4-text); font-family: "Jost Variable", "Jost", Arial, sans-serif; font-size: 18px; line-height: 1.5; }
.hh24-v4-main .hh24-v4-kicker,
.hh24-v4-main h6 { color: var(--hh24-v4-ink); font-size: 14px; font-weight: 600; letter-spacing: .075em; line-height: 1.3; }

.hh24-v4-button,
.hh24-header-start,
.hh24-header-login {
	min-height: 50px;
	padding: 11px 24px;
	border-radius: 999px;
	font-family: "Jost Variable", "Jost", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
}
.hh24-v4-button.is-dark:hover,
.hh24-header-start:hover,
.hh24-header-start:focus-visible { border-color: var(--hh24-v4-champagne); background: var(--hh24-v4-champagne); color: var(--hh24-v4-ink); }
.hh24-v4-button.is-outline:hover,
.hh24-header-login:hover,
.hh24-header-login:focus-visible { border-color: var(--hh24-v4-ink); background: var(--hh24-v4-blush); color: var(--hh24-v4-ink); }

.hh24-v4-hero-art::before { display: none; }
body.hh24-front-page,
.hh24-v4-main,
.hh24-v4-hero,
.hh24-v4-hero-grid,
.hh24-v4-hero-art,
.hh24-v4-hero-art picture { background: #fff; }
.hh24-v4-hero { isolation: isolate; }
.hh24-v4-hero-art picture { position: relative; z-index: 1; display: block; width: 106%; max-width: none; margin-left: 0; }
.hh24-v4-hero-art picture img { width: 100%; max-width: none; margin: 0; object-fit: contain; filter: drop-shadow(0 25px 32px rgba(0, 0, 0, .06)); }
.hh24-v4-product-shot {
	overflow: hidden;
	border: 1px solid var(--hh24-v4-border);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 28px 85px rgba(0, 0, 0, .11);
}
.hh24-v4-product-shot picture,
.hh24-v4-product-shot img { display: block; width: 100%; height: auto; }
.hh24-v4-product-shot.is-overview { width: min(1180px, 100%); margin: 70px auto 0; }
.hh24-v4-product-shot.is-designer { transform: rotate(-.55deg); }
.hh24-v4-split { grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); gap: 70px; }

.hh24-v4-proof .hh24-container { grid-template-columns: 1fr 1.2fr; }
.hh24-v4-proof p { font-family: "Jost Variable", "Jost", Arial, sans-serif; font-size: 18px; line-height: 1.5; }
.hh24-v4-proof ul { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: start; }
.hh24-v4-proof li { color: #343434; font-family: "Jost Variable", "Jost", Arial, sans-serif; font-size: 14px; font-weight: 650; line-height: 1.35; letter-spacing: .035em; }

.hh24-v4-intro,
.hh24-v4-how,
.hh24-v4-pricing { background: #fff; }
.hh24-v4-builder,
.hh24-v4-human { background: var(--hh24-v4-blush); }
.hh24-v4-tools { background: #fff; }
.hh24-v4-designs { background: var(--hh24-v4-blush); }
.hh24-v4-check-list i { background: color-mix(in srgb, var(--hh24-v4-champagne) 24%, #fff); color: var(--hh24-v4-ink); }
.hh24-v4-tools-grid article.is-large,
.hh24-v4-price-grid { background: var(--hh24-v4-blush); }
.hh24-v4-tool-icon,
.hh24-v4-steps li i { background: color-mix(in srgb, var(--hh24-v4-champagne) 22%, #fff); color: var(--hh24-v4-ink); }

@media (max-width: 1180px) {
	.hh24-brand-picture,
	.hh24-logo-svg { width: 265px; }
	.hh24-v4-proof .hh24-container { grid-template-columns: 1fr; gap: 22px; padding-block: 28px; }
	.hh24-v4-proof ul { justify-content: start; }
	.hh24-v4-split { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
	.hh24-brand-picture,
	.hh24-logo-svg { width: 230px; }
	.hh24-site-header .hh24-brand { flex: 0 1 auto; max-width: calc(100% - 58px); }
	.hh24-site-header .hh24-logo-svg { width: 245px; }
	.hh24-v4-main h1,
	.hh24-v4-hero-copy h1 { font-size: 42px; }
	.hh24-v4-main h2,
	.hh24-v4-section-title h2 { font-size: 36px; }
	.hh24-v4-main h3 { font-size: 27px; }
	.hh24-v4-hero-art picture { width: 100%; margin-left: 0; }
	.hh24-v4-product-shot { border-radius: 16px; }
	.hh24-v4-proof ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hh24-v4-floating-note { right: 8px; bottom: -20px; }
}

@media (max-width: 540px) {
	.hh24-header-inner { gap: 8px; }
	.hh24-brand-picture,
	.hh24-logo-svg { width: 230px; }
	.hh24-site-header .hh24-logo-svg { width: 230px; }
}

/* Premium legal and standard content pages */
.hh24-content.hh24-account-page { padding: 0; background: #fff; }
.hh24-legal-page { padding: 0; background: linear-gradient(180deg, var(--hh24-v4-blush) 0 360px, #fff 360px); }
.hh24-legal-hero { padding: clamp(78px,9vw,125px) 0 105px; }
.hh24-legal-hero .hh24-content-narrow { max-width: 920px; }
.hh24-legal-hero h1 { max-width: 900px; margin: 0; color: #000; font-size: clamp(48px,6.4vw,80px); line-height: 1.05; }
.hh24-legal-hero > div > p:last-child { max-width: 720px; margin: 24px 0 0; color: #45413f; font-size: 18px; line-height: 1.65; }
.hh24-legal-shell { width: min(1040px,calc(100% - 64px)); margin: -54px auto 120px; }
.hh24-legal-article { min-width: 0; padding: clamp(38px,6vw,76px); border: 1px solid var(--hh24-v4-border); border-radius: 28px; background: #fff; box-shadow: 0 28px 85px rgba(0,0,0,.08); }
.hh24-legal-content { min-width: 0; color: #45413f; font-size: 17px; line-height: 1.72; overflow-wrap: anywhere; }
.hh24-legal-content > h2:first-of-type { margin-top: 20px; }
.hh24-legal-content h2 { margin: 52px 0 15px; font-size: clamp(27px,3vw,34px); }
.hh24-legal-content p,.hh24-legal-content li { max-width: 850px; font-size: 17px; line-height: 1.72; }
.hh24-legal-updated { margin-bottom: 25px!important; background: #f3efed; color: #4a4542; }
.hh24-standard-content { padding: clamp(70px,8vw,110px) 0; background: linear-gradient(180deg,var(--hh24-v4-blush),#fff 360px); }
.hh24-standard-page { max-width: 960px; padding: clamp(36px,6vw,70px); border: 1px solid var(--hh24-v4-border); border-radius: 28px; background: #fff; box-shadow: 0 26px 80px rgba(0,0,0,.07); }

@media (max-width: 680px) {
	.hh24-legal-page { background: linear-gradient(180deg,var(--hh24-v4-blush) 0 300px,#fff 300px); }
	.hh24-legal-hero { padding: 62px 0 84px; }
	.hh24-legal-hero h1 { max-width: 100%; font-size: clamp(36px,11vw,48px); line-height: 1.08; hyphens: auto; overflow-wrap: anywhere; }
	.hh24-legal-shell { width: calc(100% - 32px); margin-top: -42px; margin-bottom: 80px; }
	.hh24-legal-article { padding: 30px 22px; border-radius: 20px; }
	.hh24-legal-content h2 { margin-top: 42px; font-size: 27px; hyphens: auto; overflow-wrap: anywhere; }
	.hh24-legal-content p,.hh24-legal-content li { font-size: 16px; }
	.hh24-standard-page { width: calc(100% - 32px); padding: 32px 22px; }
	.hh24-footer-grid > * { min-width: 0; }
	.hh24-footer-grid a,
	.hh24-footer-grid p { overflow-wrap: anywhere; }
}

@media (max-width: 360px) {
	.hh24-header-inner { gap: 7px; }
	.hh24-site-header .hh24-logo-svg { width: 205px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* v0.6.9 WCAG contrast and marketing subpages. Gold remains decorative. */
.hh24-v4-app-content header small,
.hh24-v4-stat-grid span,
.hh24-v4-stat-grid strong small,
.hh24-v4-task-demo small,
.hh24-v4-ring span,
.hh24-v4-demo-window > header small,
.hh24-v4-price span { color: #555; }
.hh24-v4-steps li > span,
.hh24-v4-price-grid article > small { color: #000; }
.hh24-v4-timeline-visual span,
.hh24-v4-theme-grid .is-ink footer strong { color: #000; }
.hh24-v4-main .hh24-v4-human-quote p { color: rgba(255,255,255,.78); }
.hh24-v4-demo-hero { background-image: linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.68)), url("../images/hero-editorial-v1.webp"); }
.dpcc__button.dpcc__button--primary { border-color: #000 !important; background: #000 !important; color: #fff !important; }
.dpcc__button.dpcc__button--primary:hover,
.dpcc__button.dpcc__button--primary:focus-visible { border-color: #f78f82 !important; background: #f78f82 !important; color: #000 !important; }
.hh24-site-footer { color: rgba(255,255,255,.78); }
.hh24-footer-intro p,
.hh24-footer-grid a { color: rgba(255,255,255,.76); }
.hh24-footer-made,
.hh24-footer-bottom { color: rgba(255,255,255,.64); }

.hh24-marketing-page { overflow: clip; background: #fff; }
.hh24-marketing-hero { padding: clamp(90px, 11vw, 155px) 0; background: linear-gradient(135deg, #fff 0 58%, var(--hh24-v4-blush) 58%); }
.hh24-marketing-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr); gap: clamp(55px, 8vw, 110px); align-items: center; }
.hh24-marketing-copy { max-width: 760px; }
.hh24-marketing-copy h1 { margin: 0; font-size: clamp(48px, 6.6vw, 82px); line-height: 1.02; }
.hh24-marketing-copy > p:not(.hh24-v4-kicker) { max-width: 670px; margin: 25px 0 0; font-size: 18px; line-height: 1.65; }
.hh24-marketing-visual { display: grid; gap: 14px; padding: 30px; border: 1px solid var(--hh24-v4-border); border-radius: 28px; background: rgba(255,255,255,.94); box-shadow: var(--hh24-v4-shadow); }
.hh24-marketing-visual article { display: grid; grid-template-columns: 48px 1fr; gap: 13px; align-items: center; padding: 17px; border-radius: 16px; background: #fff; }
.hh24-marketing-visual i { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--hh24-v4-blush); color: #000; }
.hh24-marketing-visual strong { display: block; color: #000; font-size: 17px; }
.hh24-marketing-visual span { display: block; margin-top: 3px; color: #555; font-size: 14px; }
.hh24-marketing-section { padding: clamp(90px, 10vw, 140px) 0; }
.hh24-marketing-section.is-blush { background: var(--hh24-v4-blush); }
.hh24-marketing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 55px; }
.hh24-marketing-card { padding: 32px; border: 1px solid var(--hh24-v4-border); border-radius: 20px; background: #fff; }
.hh24-marketing-card i { color: #000; font-size: 23px; }
.hh24-marketing-card h3 { margin: 20px 0 10px; }
.hh24-marketing-card p { margin: 0; color: #555; font-size: 16px; line-height: 1.6; }
.hh24-marketing-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin: 55px 0 0; padding: 0; list-style: none; }
.hh24-marketing-steps li { padding: 28px; border-top: 2px solid #000; }
.hh24-marketing-steps span { color: #000; font-size: 14px; font-weight: 750; }
.hh24-marketing-steps h3 { margin: 12px 0; }
.hh24-marketing-steps p { margin: 0; font-size: 16px; }
.hh24-marketing-cta { padding: clamp(80px, 9vw, 120px) 0; background: #000; color: #fff; text-align: center; }
.hh24-marketing-cta h2 { max-width: 850px; margin: 0 auto; color: #fff; font-size: clamp(40px, 5vw, 66px); }
.hh24-marketing-cta p { max-width: 670px; margin: 20px auto 0; color: rgba(255,255,255,.78); }
.hh24-marketing-cta .hh24-v4-actions { justify-content: center; }
.hh24-marketing-cta .hh24-v4-button.is-dark { border-color: #fff; background: #fff; color: #000; }

@media (max-width: 900px) {
	.hh24-marketing-hero { background: linear-gradient(180deg, #fff 0 62%, var(--hh24-v4-blush) 62%); }
	.hh24-marketing-hero-grid { grid-template-columns: 1fr; }
	.hh24-marketing-grid,
	.hh24-marketing-steps { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
	.hh24-marketing-hero { padding-top: 70px; }
	.hh24-marketing-visual { padding: 18px; border-radius: 20px; }
	.hh24-marketing-card { padding: 25px; }
}

/* Unified public hierarchy and frontend account experience. */
.hh24-v4-hero-copy h1,
.hh24-legal-hero h1,
.hh24-marketing-copy h1,
.hh24-standard-page h1,
.hh24-register-intro h1,
.hh24-auth-story h1 {
	font-size: var(--hh24-v4-hero-title);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -.03em;
}
.hh24-auth-story h1,
.hh24-auth-story p,
.hh24-auth-story li,
.hh24-auth-story small { color: #fff; }
.hh24-auth-story > p:not(.hh24-eyebrow) { color: rgba(255,255,255,.82); }
.hh24-auth-story small { color: rgba(255,255,255,.72); }
.hh24-register-intro aside strong { color: #fff; }
.hh24-mobile-nav-actions .hh24-header-login,
.hh24-mobile-nav-actions .hh24-header-start {
	letter-spacing: .02em;
	text-transform: none;
}
.hh24-mobile-nav-actions .hh24-header-login { color: #000; }
.hh24-mobile-nav-actions .hh24-header-start { color: #fff; }
.hh24-mobile-nav-actions .hh24-header-start:hover,
.hh24-mobile-nav-actions .hh24-header-start:focus-visible { color: #000; }
.hh24-primary-nav a,
.hh24-mobile-nav-actions .hh24-header-login,
.hh24-mobile-nav-actions .hh24-header-start { font-size: 14px; }
.hh24-register-wrap > header h2,
.hh24-register-benefits h2,
.hh24-register-reassurance h2,
.hh24-register-faq h2 { font-size: var(--hh24-v4-section-title-size); line-height: 1.12; }
.hh24-auth-card h1,
.hh24-auth-card h2 { font-size: clamp(34px, 3.2vw, 42px); line-height: 1.14; }
.hh24-onboarding-page { width: min(1280px, calc(100% - 64px)); padding: 64px 0 110px; }
.hh24-register-intro { gap: 48px; padding: 50px; border-radius: 28px; }
.hh24-register-intro aside { padding: 38px; }
.hh24-register-wrap { margin: 74px auto 96px; }
.hh24-register-benefits,
.hh24-register-faq,
.hh24-register-reassurance { margin-bottom: 96px; }
.hh24-auth-layout { width: min(1080px, calc(100% - 64px)); margin: 64px auto 110px; }
.hh24-auth-story { padding: 56px 50px; }
.hh24-auth-card { padding: 54px 46px; }
.hh24-account-article.is-login,
.hh24-account-article.is-recovery { padding-block: clamp(92px, 8vw, 130px); }
.hh24-account-article.is-login > .hh24-auth-layout,
.hh24-account-article.is-recovery > .hh24-auth-simple { margin-block: 0; }
.hh24-register-form legend {
	box-sizing: border-box;
	margin-bottom: 30px;
	padding-top: 30px;
}

@media (min-width: 981px) {
	.hh24-header-inner { gap: 24px; }
	.hh24-primary-nav ul { gap: 18px; }
	.hh24-header-actions { flex: 0 0 auto; gap: 10px; }
	.hh24-header-actions .hh24-header-login,
	.hh24-header-actions .hh24-header-start {
		min-height: 44px;
		flex: 0 0 auto;
		justify-content: center;
		padding: 9px 16px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1;
		letter-spacing: .02em;
		text-transform: none;
		white-space: nowrap;
	}
	.hh24-header-actions .hh24-header-login { padding-inline: 15px; }
}

@media (max-width: 900px) {
	:root {
		--hh24-v4-hero-title: clamp(40px, 7vw, 52px);
		--hh24-v4-section-title-size: clamp(34px, 5.8vw, 44px);
	}
	.hh24-register-intro { gap: 34px; padding: 38px; }
	.hh24-auth-story,
	.hh24-auth-card { padding: 44px 38px; }
	.hh24-account-article.is-login,
	.hh24-account-article.is-recovery { padding-block: 72px 96px; }
}

@media (max-width: 620px) {
	:root {
		--hh24-v4-hero-title: clamp(36px, 10vw, 40px);
		--hh24-v4-section-title-size: clamp(32px, 8.8vw, 38px);
	}
	.hh24-v4-main h2,
	.hh24-v4-section-title h2 { font-size: clamp(32px, 8.8vw, 36px); }
	.hh24-v4-main h3 { font-size: 24px !important; }
	.hh24-marketing-cta h2 { font-size: clamp(34px, 9vw, 38px); }
	.hh24-onboarding-page { width: 100%; padding: 28px 16px 78px; }
	.hh24-register-intro { gap: 28px; padding: 28px 22px; border-radius: 22px; }
	.hh24-register-intro aside { padding: 27px 22px; }
	.hh24-register-wrap { margin: 56px auto 76px; }
	.hh24-register-benefits,
	.hh24-register-faq,
	.hh24-register-reassurance { margin-bottom: 76px; }
	.hh24-auth-layout { width: calc(100% - 32px); margin: 28px auto 76px; border-radius: 22px; }
	.hh24-auth-story,
	.hh24-auth-card { padding: 32px 22px; }
	.hh24-auth-story > p:not(.hh24-eyebrow) { margin-top: 16px; font-size: 16px; }
	.hh24-auth-story ul { margin-top: 22px; }
	.hh24-auth-card h1,
	.hh24-auth-card h2 { font-size: 32px; }
	.hh24-register-card h1 { font-size: 36px; }
	.hh24-register-form legend { font-size: 28px; }
	.hh24-onboarding-summary h2 { font-size: 30px; }
	.hh24-account-article.is-login,
	.hh24-account-article.is-recovery { padding-block: 52px 76px; }
	.hh24-register-form legend { margin-bottom: 24px; padding-top: 24px; }
}

/* Search landing pages */
.hh24-product-page { overflow:clip; background:#fff; }
.hh24-product-hero { padding:clamp(72px,9vw,126px) 0; background:linear-gradient(135deg,#fff 0 62%,var(--hh24-v4-blush) 62%); }
.hh24-product-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(420px,.92fr); gap:clamp(48px,7vw,90px); align-items:center; }
.hh24-product-hero h1 { max-width:780px; margin:0; color:#000; font-family:var(--hh24-v4-heading); font-size:clamp(48px,5.8vw,78px); line-height:1.02; letter-spacing:-.035em; }
.hh24-product-hero h1 em { color:var(--hh24-v4-rose-strong); font-weight:inherit; }
.hh24-product-lead { max-width:690px; margin:26px 0 0; color:var(--hh24-v4-text); font-size:18px; line-height:1.65; }
.hh24-product-checks { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px 24px; margin:27px 0 0; padding:0; list-style:none; }
.hh24-product-checks li { display:flex; align-items:flex-start; gap:9px; color:#342f2d; font-size:15px; }
.hh24-product-checks i { margin-top:4px; color:#000; }
.hh24-product-demo { overflow:hidden; border:8px solid #fff; border-radius:25px; background:#fff; box-shadow:0 30px 90px rgba(35,22,18,.16); transform:rotate(1deg); }
.hh24-product-demo-top { display:flex; gap:6px; padding:12px 15px; background:#f4efec; }
.hh24-product-demo-top span { width:8px; height:8px; border-radius:50%; background:var(--hh24-v4-rose-strong); }
.hh24-product-demo-top span:nth-child(2) { background:#d8ba71; }
.hh24-product-demo-top span:nth-child(3) { background:#7da18c; }
.hh24-product-demo-body { display:grid; grid-template-columns:115px 1fr; min-height:410px; }
.hh24-product-demo-body aside { display:flex; flex-direction:column; gap:17px; padding:27px 16px; background:#111; color:#fff; }
.hh24-product-demo-body aside i { color:var(--hh24-v4-rose-strong); font-size:23px; }
.hh24-product-demo-body aside b { font-family:var(--hh24-v4-heading); font-size:16px; }
.hh24-product-demo-body aside span { color:#d8d0cd; font-size:10px; }
.hh24-product-demo-body section { padding:45px 30px; background:#fffaf7; }
.hh24-product-demo-body section > p { margin:0; color:var(--hh24-v4-rose-strong); font-size:11px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.hh24-product-demo-body section h2 { margin:7px 0 30px; font-size:35px; line-height:1.08; }
.hh24-product-demo-body section > div { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; }
.hh24-product-demo-body article { display:grid; gap:4px; padding:15px 10px; border-radius:13px; background:#fff; box-shadow:0 8px 24px rgba(35,22,18,.07); text-align:center; }
.hh24-product-demo-body article i { color:var(--hh24-v4-rose-strong); }
.hh24-product-demo-body article strong { color:#000; font-size:24px; }
.hh24-product-demo-body article small { color:#716864; font-size:9px; }
.hh24-product-section { padding:clamp(86px,9vw,130px) 0; }
.hh24-product-section.is-blush { background:var(--hh24-v4-blush); }
.hh24-product-faq { display:grid; grid-template-columns:.75fr 1.25fr; gap:clamp(45px,8vw,110px); align-items:start; }
.hh24-product-faq details { padding:20px 0; border-bottom:1px solid var(--hh24-v4-border); }
.hh24-product-faq summary { display:flex; justify-content:space-between; gap:20px; color:#000; font-size:18px; font-weight:700; cursor:pointer; list-style:none; }
.hh24-product-faq summary::after { content:'+'; color:var(--hh24-v4-rose-strong); font-size:24px; }
.hh24-product-faq details[open] summary::after { content:'–'; }
.hh24-product-faq details p { margin:13px 0 0; color:#555; font-size:16px; line-height:1.65; }

@media (max-width: 980px) {
	.hh24-product-hero { background:linear-gradient(180deg,#fff 0 62%,var(--hh24-v4-blush) 62%); }
	.hh24-product-hero-grid { grid-template-columns:1fr; }
	.hh24-product-demo { width:min(100%,680px); margin-inline:auto; }
	.hh24-product-faq { grid-template-columns:1fr; }
}
@media (max-width: 620px) {
	.hh24-product-hero { padding-top:58px; }
	.hh24-product-hero h1 { font-size:clamp(38px,11vw,48px); }
	.hh24-product-lead { font-size:16px; }
	.hh24-product-checks { grid-template-columns:1fr; }
	.hh24-product-demo-body { grid-template-columns:74px 1fr; min-height:330px; }
	.hh24-product-demo-body aside { padding:20px 10px; }
	.hh24-product-demo-body aside b { font-size:12px; }
	.hh24-product-demo-body aside span { font-size:8px; }
	.hh24-product-demo-body section { padding:30px 15px; }
	.hh24-product-demo-body section h2 { font-size:25px; }
	.hh24-product-demo-body section > div { grid-template-columns:1fr; }
	.hh24-product-demo-body article { grid-template-columns:auto 1fr auto; align-items:center; text-align:left; }
}

.hh24-partner-form-card { padding:clamp(28px,4vw,52px); border:1px solid var(--hh24-v4-border); border-radius:30px; background:#fff; box-shadow:0 26px 70px rgba(29,20,18,.09); }
.hh24-partner-form-card form { display:grid; gap:24px; }
.hh24-partner-form-card .hh24-checkout-fields { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.hh24-partner-form-card label { display:grid; gap:8px; color:#171414; font:700 14px/1.4 "Jost Variable","Jost",Arial,sans-serif; }
.hh24-partner-form-card label.is-wide { grid-column:1/-1; }
.hh24-partner-form-card input,.hh24-partner-form-card select,.hh24-partner-form-card textarea { width:100%; min-height:50px; padding:12px 14px; border:1px solid #cfc5c1; border-radius:12px; background:#fff; color:#171414; font:400 16px/1.5 "Jost Variable","Jost",Arial,sans-serif; }
.hh24-partner-form-card textarea { min-height:128px; resize:vertical; }
.hh24-partner-form-card input:focus-visible,.hh24-partner-form-card select:focus-visible,.hh24-partner-form-card textarea:focus-visible { outline:3px solid rgba(247,143,130,.35); outline-offset:2px; border-color:#111; }
.hh24-form-consent { grid-template-columns:auto 1fr; align-items:start; font-weight:400 !important; }
.hh24-form-consent input { width:18px; min-height:18px; margin-top:3px; }
.hh24-form-notice { margin-bottom:22px; padding:14px 16px; border-radius:12px; font:600 15px/1.5 "Jost Variable","Jost",Arial,sans-serif; }
.hh24-form-notice.is-success { background:#e9f5ed; color:#245737; }
.hh24-form-notice.is-error { background:#fff0ee; color:#7d2822; }
.hh24-honeypot { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.hh24-v4-live-shot { display:block; min-height:0; overflow:hidden; border:1px solid var(--hh24-v4-border); border-radius:24px; background:#fff; box-shadow:var(--hh24-v4-shadow); }
.hh24-v4-live-shot picture { display:block; }
.hh24-v4-live-shot img { display:block; width:100%; height:auto; }
.hh24-v4-builder-demo.hh24-v4-live-shot { overflow:visible; }
.hh24-v4-builder-demo.hh24-v4-live-shot picture { overflow:hidden; border-radius:24px; }

@media (max-width:680px) {
	.hh24-partner-form-card .hh24-checkout-fields { grid-template-columns:1fr; }
	.hh24-partner-form-card label.is-wide { grid-column:auto; }
}

/* v0.7.1 final navigation and mobile type normalization. */
.hh24-primary-nav a,
.hh24-header-actions .hh24-header-login,
.hh24-header-actions .hh24-header-start,
.hh24-mobile-nav-actions .hh24-header-login,
.hh24-mobile-nav-actions .hh24-header-start { font-size:14px; }
.hh24-header-actions .hh24-header-login,
.hh24-header-actions .hh24-header-start { min-height:44px; padding:9px 16px; }

@media (max-width:680px) {
	:root {
		--hh24-v4-hero-title:clamp(34px,9vw,38px);
		--hh24-v4-section-title-size:clamp(30px,8vw,34px);
	}
	.hh24-primary-nav a { font-size:14px; }
	.hh24-v4-main h1,
	.hh24-v4-hero-copy h1 { font-size:clamp(34px,9vw,38px); line-height:1.15; }
	.hh24-v4-main h2,
	.hh24-v4-section-title h2 { font-size:clamp(30px,8vw,34px); line-height:1.18; }
	.hh24-v4-main h3 { font-size:23px!important; }
}
