:root {
	--hy-black: #070707;
	--hy-charcoal: #141217;
	--hy-purple: #5b2ca0;
	--hy-orange: #f05a1a;
	--hy-bone: #f3ead7;
	--hy-parchment: #e8dcc3;
	--hy-green: #7aa33d;
	--hy-border: #2a211b;
	--hy-muted: #a99c87;
	--hy-font-heading: "Creepster", "Nosifer", "Bebas Neue", Impact, sans-serif;
	--hy-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--hy-font-comic: "Bangers", "Comic Neue", system-ui, sans-serif;
}

body {
	background: var(--hy-charcoal);
	color: var(--hy-bone);
	font-family: var(--hy-font-body);
}

a {
	color: var(--hy-orange);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
	outline: 3px solid var(--hy-green);
	outline-offset: 3px;
}

.site-content,
.ast-container {
	background: transparent;
}

.main-header-bar,
.site-footer {
	background: var(--hy-black);
	border-color: rgba(243, 234, 215, .16);
}

.site-title a,
.main-header-menu .menu-link {
	color: var(--hy-bone);
	font-weight: 800;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.hy-site-footer {
	background: var(--hy-black);
	color: var(--hy-bone);
	padding: 2.5rem 1.25rem;
}

.hy-footer-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1.4fr 1fr;
}

.hy-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hy-footer-menu a,
.hy-footer-social a {
	color: var(--hy-bone);
	font-weight: 800;
}

.hy-footer-disclaimer {
	border-top: 1px solid rgba(243, 234, 215, .2);
	grid-column: 1 / -1;
	margin: 0;
	padding-top: 1rem;
}

.main-header-menu .menu-link:hover,
.main-header-menu .current-menu-item > .menu-link {
	color: var(--hy-orange);
}

.hy-front-page {
	background:
		radial-gradient(circle at top left, rgba(91, 44, 160, .28), transparent 34rem),
		linear-gradient(180deg, var(--hy-black), var(--hy-charcoal));
}

.hy-section {
	padding: clamp(3rem, 6vw, 6rem) 1.25rem;
}

.hy-section-dark {
	background:
		linear-gradient(135deg, rgba(91, 44, 160, .22), transparent 40%),
		var(--hy-charcoal);
	color: var(--hy-bone);
}

.hy-section-parchment {
	background:
		radial-gradient(circle at 20% 10%, rgba(240, 90, 26, .11), transparent 18rem),
		linear-gradient(135deg, rgba(42, 33, 27, .08) 25%, transparent 25%) 0 0 / 18px 18px,
		var(--hy-parchment);
	color: var(--hy-border);
}

.hy-section-inner {
	margin-inline: auto;
	max-width: 1180px;
}

.hy-section-heading {
	margin-bottom: 1.75rem;
}

.hy-section-heading h2,
.hy-entry h1,
.hy-archive-header h1 {
	font-family: var(--hy-font-heading);
	font-size: clamp(2.15rem, 5vw, 4rem);
	letter-spacing: .01em;
	line-height: .95;
	margin: 0;
	text-transform: uppercase;
}

.hy-grid {
	display: grid;
	gap: 1.25rem;
}

.hy-grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hy-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hy-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hy-comic-border,
.hy-card,
.hy-checklist-cta,
.hy-archive-header,
.hy-entry {
	border: 2px solid var(--hy-border);
	border-radius: 7px 4px 8px 5px;
	box-shadow: 4px 4px 0 rgba(0, 0, 0, .45);
}

.hy-card {
	background: var(--hy-bone);
	color: var(--hy-border);
	overflow: hidden;
}

.hy-card a {
	color: inherit;
	display: block;
	height: 100%;
	text-decoration: none;
}

.hy-card-dark {
	background: #211929;
	border-color: rgba(243, 234, 215, .55);
	color: var(--hy-bone);
}

.hy-card-body {
	padding: 1rem;
}

.hy-card-title {
	font-family: var(--hy-font-comic);
	font-size: 1.45rem;
	line-height: 1.05;
	margin: .35rem 0 .6rem;
	text-transform: uppercase;
}

.hy-card ul {
	margin: .75rem 0 0 1.15rem;
}

.hy-card-photo {
	aspect-ratio: 4 / 3;
	background: #261e28;
	overflow: hidden;
}

.hy-card-photo img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.hy-theme-placeholder,
.hy-image-placeholder {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(240, 90, 26, .55), transparent 42%),
		radial-gradient(circle at 72% 24%, rgba(91, 44, 160, .72), transparent 34%),
		linear-gradient(180deg, #120f15, #2a211b);
	color: var(--hy-bone);
	display: flex;
	font-family: var(--hy-font-heading);
	font-size: clamp(1.5rem, 4vw, 3rem);
	font-weight: 900;
	height: 100%;
	justify-content: center;
	min-height: 160px;
	padding: 1rem;
	text-align: center;
	text-shadow: 2px 2px 0 var(--hy-black);
	text-transform: uppercase;
	width: 100%;
}

.hy-tag {
	background: var(--hy-purple);
	border: 2px solid var(--hy-border);
	color: var(--hy-bone);
	display: inline-block;
	font-family: var(--hy-font-comic);
	font-size: .8rem;
	font-weight: 900;
	letter-spacing: .06em;
	margin: 0 0 .6rem;
	padding: .25rem .55rem;
	text-transform: uppercase;
}

.hy-button,
.hy-text-link {
	align-items: center;
	border: 2px solid var(--hy-border);
	border-radius: 5px;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, .4);
	display: inline-flex;
	font-family: var(--hy-font-comic);
	font-weight: 900;
	justify-content: center;
	line-height: 1;
	min-height: 44px;
	padding: .75rem 1rem;
	text-decoration: none;
	text-transform: uppercase;
}

.hy-button-primary {
	background: var(--hy-orange);
	color: var(--hy-black);
}

.hy-button-secondary {
	background: var(--hy-purple);
	color: var(--hy-bone);
}

.hy-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
}

.hy-text-link {
	background: var(--hy-green);
	color: var(--hy-black);
	margin-top: .75rem;
}

.hy-hero {
	isolation: isolate;
	min-height: min(760px, 92vh);
	overflow: hidden;
	padding: clamp(5rem, 9vw, 8rem) 1.25rem;
	position: relative;
}

.hy-hero::before {
	background:
		linear-gradient(90deg, rgba(7, 7, 7, .92), rgba(7, 7, 7, .55), rgba(91, 44, 160, .38)),
		radial-gradient(circle at 72% 44%, rgba(240, 90, 26, .32), transparent 18rem),
		linear-gradient(160deg, #101010, #271732 52%, #070707);
	content: "";
	inset: 0;
	position: absolute;
	z-index: -2;
}

.hy-hero::after {
	background-image:
		linear-gradient(rgba(243, 234, 215, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(243, 234, 215, .04) 1px, transparent 1px);
	background-size: 16px 16px;
	content: "";
	inset: 0;
	opacity: .45;
	position: absolute;
	z-index: -1;
}

.hy-hero-content {
	max-width: 820px;
}

.hy-logo-mark {
	color: var(--hy-bone);
	font-family: var(--hy-font-heading);
	font-size: clamp(1.9rem, 4vw, 3rem);
	line-height: 1;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.hy-logo-mark strong {
	color: var(--hy-orange);
}

.hy-hero h1 {
	color: var(--hy-bone);
	font-family: var(--hy-font-heading);
	font-size: clamp(3.25rem, 9vw, 7.5rem);
	line-height: .88;
	margin: 0;
	text-shadow: 3px 3px 0 var(--hy-black);
	text-transform: uppercase;
}

.hy-hero-subtitle {
	color: #fff8e8;
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	margin: 1.25rem 0 1.6rem;
	max-width: 740px;
}

.hy-speech-bubble {
	background: var(--hy-bone);
	border: 2px solid var(--hy-border);
	border-radius: 50%;
	box-shadow: 4px 4px 0 rgba(0, 0, 0, .45);
	color: var(--hy-border);
	display: inline-block;
	font-family: var(--hy-font-comic);
	margin-top: 1.5rem;
	padding: 1rem 1.35rem;
	transform: rotate(-2deg);
}

.hy-scene-tile {
	background: var(--hy-bone);
	color: var(--hy-border);
	display: grid;
	min-height: 220px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}

.hy-scene-tile .hy-theme-placeholder {
	grid-area: 1 / 1;
	min-height: 220px;
}

.hy-scene-tile > span {
	align-self: end;
	background: rgba(7, 7, 7, .78);
	color: var(--hy-bone);
	font-family: var(--hy-font-heading);
	font-size: 2rem;
	grid-area: 1 / 1;
	padding: .75rem;
	text-transform: uppercase;
	z-index: 1;
}

.hy-icon-card {
	align-items: center;
	background: var(--hy-bone);
	color: var(--hy-border);
	display: grid;
	gap: .65rem;
	justify-items: center;
	min-height: 160px;
	padding: 1.25rem;
	text-align: center;
	text-decoration: none;
}

.hy-icon-card span {
	align-items: center;
	background: var(--hy-orange);
	border: 2px solid var(--hy-border);
	border-radius: 999px;
	display: inline-flex;
	font-family: var(--hy-font-heading);
	font-size: 2rem;
	height: 64px;
	justify-content: center;
	width: 64px;
}

.hy-checklist-cta {
	align-items: center;
	background:
		radial-gradient(circle at 88% 18%, rgba(122, 163, 61, .26), transparent 12rem),
		var(--hy-bone);
	color: var(--hy-border);
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1.25fr .75fr;
	padding: clamp(1.25rem, 4vw, 2.25rem);
}

.hy-checklist-cta h2 {
	font-family: var(--hy-font-heading);
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: .95;
	margin: 0;
	text-transform: uppercase;
}

.hy-checklist-cta form {
	display: grid;
	gap: .6rem;
}

.hy-checklist-cta input,
.hy-filter-bar select {
	border: 2px solid var(--hy-border);
	border-radius: 5px;
	padding: .7rem .8rem;
	width: 100%;
}

.hy-disclosure {
	background: #fff8e8;
	border-left: 6px solid var(--hy-orange);
	color: var(--hy-border);
	font-weight: 700;
	margin: 1rem 0;
	padding: .9rem 1rem;
}

.hy-content-wrap {
	background: var(--hy-charcoal);
	padding: clamp(2rem, 6vw, 5rem) 1.25rem;
}

.hy-entry,
.hy-archive-header {
	background: var(--hy-parchment);
	color: var(--hy-border);
	margin: 0 auto 2rem;
	max-width: 960px;
	padding: clamp(1.25rem, 4vw, 2.5rem);
}

.hy-entry-content {
	font-size: 1.06rem;
}

.hy-entry-image {
	margin: 1rem 0;
}

.hy-entry-image img {
	border: 2px solid var(--hy-border);
	display: block;
	height: auto;
	width: 100%;
}

.hy-content-wrap > .hy-grid,
.hy-content-wrap > .navigation {
	margin-inline: auto;
	max-width: 1180px;
}

.hy-card-note {
	color: var(--hy-muted);
	font-size: .85rem;
}

.hy-pro-con-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 980px) {
	.hy-grid-4,
	.hy-grid-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hy-checklist-cta {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.hy-grid-2,
	.hy-grid-3,
	.hy-grid-4 {
		grid-template-columns: 1fr;
	}

	.hy-section {
		padding-inline: 1rem;
	}

	.hy-hero {
		min-height: auto;
		padding-block: 4rem;
	}

	.hy-button {
		width: 100%;
	}

	.hy-pro-con-grid {
		grid-template-columns: 1fr;
	}

	.hy-footer-grid {
		grid-template-columns: 1fr;
	}
}

/* Mockup alignment pass. */
.hy-site-shell {
	background: #050505;
	margin-inline: auto;
	max-width: 1440px;
	min-height: 100vh;
	overflow: hidden;
}

.hy-site-header {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .04), transparent),
		var(--hy-black);
	border-bottom: 2px solid rgba(232, 220, 195, .45);
	position: sticky;
	top: 0;
	z-index: 20;
}

.hy-site-header-inner {
	align-items: center;
	display: grid;
	gap: 1rem;
	grid-template-columns: auto 1fr auto;
	margin-inline: auto;
	max-width: 1360px;
	min-height: 74px;
	padding: .6rem 1.25rem;
}

.hy-header-logo {
	color: var(--hy-bone);
	font-family: Georgia, serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.hy-header-logo strong {
	color: var(--hy-orange);
}

.hy-header-logo em {
	background: var(--hy-orange);
	border: 2px solid var(--hy-border);
	border-radius: 45% 45% 55% 55%;
	display: inline-block;
	height: 24px;
	margin-left: .35rem;
	position: relative;
	vertical-align: middle;
	width: 28px;
}

.hy-header-logo em::before {
	background: var(--hy-green);
	content: "";
	height: 8px;
	left: 12px;
	position: absolute;
	top: -8px;
	transform: rotate(12deg);
	width: 5px;
}

.hy-primary-menu {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(.7rem, 2vw, 1.9rem);
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hy-primary-menu a {
	color: var(--hy-bone);
	font-family: var(--hy-font-comic);
	font-weight: 900;
	text-decoration: none;
}

.hy-primary-menu a:hover {
	color: var(--hy-orange);
}

.hy-header-cta {
	background: var(--hy-orange);
	border: 2px solid var(--hy-border);
	border-radius: 5px;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, .55);
	color: var(--hy-black);
	font-family: var(--hy-font-comic);
	font-weight: 900;
	padding: .65rem .9rem;
	text-decoration: none;
	white-space: nowrap;
}

.hy-section {
	padding: .7rem 1.25rem;
}

.hy-section-inner {
	max-width: 1360px;
}

.hy-section-heading {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: .75rem;
}

.hy-section-heading h2 {
	font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.hy-section-heading h2 > span {
	color: var(--hy-orange);
	font-family: var(--hy-font-body);
	font-size: .72em;
}

.hy-section-heading a {
	color: var(--hy-purple);
	font-family: var(--hy-font-comic);
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.hy-grid {
	gap: .9rem;
}

.hy-comic-border,
.hy-card,
.hy-checklist-cta,
.hy-archive-header,
.hy-entry {
	box-shadow: 3px 3px 0 rgba(0, 0, 0, .55);
}

.hy-card-body {
	padding: .8rem;
}

.hy-card-title {
	font-size: 1.35rem;
}

.hy-card-photo {
	aspect-ratio: 16 / 9;
}

.hy-theme-placeholder,
.hy-image-placeholder {
	min-height: 132px;
}

.hy-button,
.hy-text-link {
	min-height: 38px;
	padding: .62rem .9rem;
}

.hy-hero {
	min-height: 540px;
	padding: clamp(2.5rem, 6vw, 5rem) 1.25rem;
}

.hy-hero::before {
	background:
		linear-gradient(90deg, rgba(7, 7, 7, .96), rgba(7, 7, 7, .64) 36%, rgba(7, 7, 7, .16)),
		radial-gradient(circle at 72% 44%, rgba(240, 90, 26, .32), transparent 18rem),
		radial-gradient(circle at 68% 40%, rgba(91, 44, 160, .72), transparent 20rem),
		linear-gradient(160deg, #101010, #271732 52%, #070707);
}

.hy-hero-content {
	max-width: 600px;
}

.hy-hero h1 {
	font-size: clamp(3.5rem, 8vw, 6.8rem);
	line-height: .82;
}

.hy-hero h1 span {
	color: var(--hy-orange);
	display: block;
	font-size: 1.15em;
}

.hy-hero-kicker {
	color: var(--hy-orange);
	font-size: 1.2rem;
	font-weight: 900;
	margin: 1rem 0 0;
}

.hy-hero-subtitle {
	margin: .5rem 0 1.25rem;
	max-width: 560px;
}

.hy-speech-bubble {
	border-radius: 44% 52% 48% 55%;
	bottom: 58%;
	margin: 0;
	max-width: 210px;
	padding: 1rem 1.25rem;
	position: absolute;
	right: 7%;
}

.hy-scene-tile,
.hy-scene-tile .hy-theme-placeholder {
	min-height: 150px;
}

.hy-scene-tile > span {
	font-size: 1.25rem;
	padding: .55rem;
}

.hy-panel {
	background: var(--hy-parchment);
	color: var(--hy-border);
	padding: .8rem;
}

.hy-split-grid {
	display: grid;
	gap: .9rem;
	grid-template-columns: .85fr 1.15fr;
}

.hy-split-section .hy-section-heading h2 {
	font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.hy-split-section .hy-grid-4 {
	gap: .55rem;
}

.hy-icon-card {
	background: var(--hy-bone);
	border: 1px solid rgba(42, 33, 27, .55);
	border-radius: 6px;
	min-height: 150px;
	padding: .75rem .45rem;
}

.hy-icon-card span {
	height: 58px;
	width: 58px;
}

.hy-icon-card em {
	color: var(--hy-purple);
	font-family: var(--hy-font-comic);
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.hy-checklist-cta {
	background:
		radial-gradient(circle at 12% 16%, rgba(91, 44, 160, .38), transparent 12rem),
		radial-gradient(circle at 94% 70%, rgba(240, 90, 26, .28), transparent 10rem),
		var(--hy-black);
	border-color: var(--hy-purple);
	color: var(--hy-bone);
	padding: clamp(1rem, 3vw, 1.65rem);
}

.hy-checklist-cta h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.hy-disclosure {
	padding: .65rem .8rem;
}

.hy-comparison-module .hy-disclosure {
	font-size: .76rem;
	margin: .5rem 0 0;
}

.hy-filter-bar {
	gap: .45rem;
	margin-block: .45rem;
}

.hy-filter-bar label {
	font-size: .78rem;
}

.hy-product-table {
	font-size: .78rem;
	min-width: 660px;
}

.hy-product-table th,
.hy-product-table td {
	padding: .45rem;
}

@media (max-width: 980px) {
	.hy-site-header-inner,
	.hy-split-grid {
		grid-template-columns: 1fr;
	}

	.hy-primary-menu {
		justify-content: flex-start;
	}

	.hy-speech-bubble {
		display: none;
	}
}

/* High-polish mockup pass with generated raster assets and Astra-friendly fonts. */
:root {
	--hy-font-heading: "Eater", "Creepster", Impact, sans-serif;
	--hy-font-logo: "Fontdiner Swanky", Georgia, serif;
	--hy-font-body: "Special Elite", system-ui, sans-serif;
	--hy-font-comic: "Metal Mania", "Fontdiner Swanky", Impact, sans-serif;
	--hy-font-accent: "Frijole", "Creepster", Impact, sans-serif;
	--hy-ink-shadow: 2px 2px 0 #000, -1px 1px 0 rgba(0,0,0,.8);
}

html {
	background: #020202;
}

body {
	background:
		radial-gradient(circle at 50% 0, rgba(91,44,160,.22), transparent 36rem),
		linear-gradient(180deg, #020202, #070707);
}

.hy-site-shell {
	border-left: 2px solid rgba(232, 220, 195, .35);
	border-right: 2px solid rgba(232, 220, 195, .35);
	box-shadow: 0 0 42px rgba(0, 0, 0, .9);
}

.hy-site-header {
	border-bottom: 3px solid var(--hy-border);
	box-shadow: 0 6px 0 rgba(0,0,0,.65), inset 0 -1px 0 rgba(232,220,195,.28);
}

.hy-site-header::before,
.hy-site-header::after {
	background:
		linear-gradient(90deg, transparent, rgba(232,220,195,.35), transparent),
		repeating-linear-gradient(90deg, rgba(232,220,195,.2) 0 2px, transparent 2px 28px);
	bottom: -6px;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
}

.hy-site-header-inner {
	min-height: 68px;
	padding-block: .45rem;
}

.hy-header-logo,
.hy-logo-mark {
	font-family: var(--hy-font-logo);
	text-shadow: 2px 2px 0 #000;
}

.hy-header-logo {
	font-size: clamp(2.2rem, 4vw, 3.45rem);
	letter-spacing: .01em;
}

.hy-primary-menu a,
.hy-header-cta,
.hy-button,
.hy-text-link,
.hy-tag {
	letter-spacing: .02em;
}

.hy-header-cta::before,
.hy-button-primary::before {
	content: "";
	background: url("../img/skull-lantern.svg") center / contain no-repeat;
	display: inline-block;
	height: 1.35em;
	margin-right: .35rem;
	width: 1.35em;
}

.hy-front-page {
	background:
		repeating-linear-gradient(0deg, rgba(243,234,215,.025) 0 1px, transparent 1px 8px),
		radial-gradient(circle at 10% 10%, rgba(240,90,26,.1), transparent 20rem),
		#050505;
}

.hy-section {
	padding-block: .55rem;
}

.hy-section-parchment {
	background:
		radial-gradient(circle at 8% 0, rgba(255,255,255,.18), transparent 18rem),
		repeating-linear-gradient(135deg, rgba(42,33,27,.055) 0 2px, transparent 2px 11px),
		var(--hy-parchment);
	border-bottom: 3px solid var(--hy-border);
	border-top: 3px solid var(--hy-border);
}

.hy-section-dark {
	border-bottom: 2px solid rgba(232,220,195,.28);
	border-top: 2px solid rgba(232,220,195,.18);
}

.hy-section-heading {
	border-bottom: 2px solid rgba(42, 33, 27, .55);
	margin-bottom: .65rem;
	padding-bottom: .35rem;
}

.hy-section-dark .hy-section-heading {
	border-bottom-color: rgba(232,220,195,.34);
}

.hy-section-heading h2 {
	color: inherit;
	font-family: var(--hy-font-comic);
	font-size: clamp(1.7rem, 2.7vw, 2.5rem);
	text-shadow: 1px 1px 0 rgba(0,0,0,.75);
}

.hy-section-heading h2 > span {
	display: inline-block;
	font-size: 0;
	height: 1.15em;
	margin-right: .4rem;
	vertical-align: -.15em;
	width: 1.15em;
}

.hy-section-heading h2 > span::before {
	content: "";
	background: url("../img/skull-lantern.svg") center / contain no-repeat;
	display: block;
	height: 100%;
	width: 100%;
}

.hy-card,
.hy-panel,
.hy-scene-tile,
.hy-icon-card,
.hy-checklist-cta {
	border: 3px solid var(--hy-border);
	box-shadow: 4px 4px 0 rgba(0,0,0,.75), inset 0 0 0 2px rgba(243,234,215,.24);
	position: relative;
}

.hy-card::after,
.hy-panel::after,
.hy-checklist-cta::after {
	border: 1px dashed rgba(42,33,27,.55);
	content: "";
	inset: 5px;
	pointer-events: none;
	position: absolute;
}

.hy-card {
	background:
		repeating-linear-gradient(135deg, rgba(42,33,27,.04) 0 1px, transparent 1px 8px),
		var(--hy-bone);
	transform: rotate(-.15deg);
}

.hy-card:nth-child(even) {
	transform: rotate(.18deg);
}

.hy-card-photo {
	aspect-ratio: 16 / 8.7;
	border-bottom: 3px solid var(--hy-border);
	position: relative;
}

.hy-card-photo::after {
	background:
		linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4)),
		radial-gradient(circle at 15% 20%, rgba(240,90,26,.18), transparent 35%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.hy-generated-image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.hy-card-body {
	font-size: .92rem;
	line-height: 1.32;
	padding: .75rem .82rem .82rem;
}

.hy-card-title {
	font-family: var(--hy-font-comic);
	font-size: clamp(1.3rem, 2vw, 1.85rem);
	letter-spacing: .01em;
	text-shadow: 1px 1px 0 rgba(0,0,0,.18);
}

.hy-card p {
	margin-bottom: .45rem;
}

.hy-card ul {
	list-style: none;
	margin: .55rem 0 0;
	padding: 0;
}

.hy-card li {
	padding-left: 1rem;
	position: relative;
}

.hy-card li::before {
	color: var(--hy-orange);
	content: "x";
	font-family: var(--hy-font-accent);
	font-size: .7em;
	left: 0;
	position: absolute;
	top: .1em;
}

.hy-button-primary,
.hy-text-link {
	background:
		linear-gradient(180deg, rgba(255,255,255,.16), transparent),
		var(--hy-orange);
	color: #100702;
}

.hy-button-secondary {
	background:
		linear-gradient(180deg, rgba(255,255,255,.12), transparent),
		#2b1742;
	border-color: rgba(232,220,195,.55);
}

.hy-text-link {
	display: inline-flex;
	font-size: .8rem;
	min-height: 30px;
	padding: .42rem .7rem;
}

.hy-hero {
	background-image: url("../img/generated/hero-yard-haunt.webp");
	background-position: center right;
	background-size: cover;
	border-bottom: 4px solid var(--hy-border);
	min-height: 570px;
	padding-block: clamp(3.2rem, 6vw, 5.6rem);
}

.hy-hero::before {
	background:
		linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.88) 25%, rgba(0,0,0,.45) 54%, rgba(0,0,0,.18) 100%),
		radial-gradient(circle at 78% 52%, rgba(91,44,160,.25), transparent 22rem),
		radial-gradient(circle at 72% 72%, rgba(240,90,26,.16), transparent 16rem);
	z-index: -1;
}

.hy-hero::after {
	background:
		repeating-linear-gradient(0deg, rgba(243,234,215,.055) 0 1px, transparent 1px 7px),
		linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38));
	z-index: -1;
}

.hy-hero-content {
	margin-left: 0;
	max-width: 560px;
}

.hy-hero h1 {
	font-family: var(--hy-font-heading);
	font-size: clamp(4rem, 8vw, 7rem);
	letter-spacing: .015em;
	text-shadow: 4px 4px 0 #000, 0 0 16px rgba(0,0,0,.7);
}

.hy-hero h1 span {
	color: var(--hy-orange);
	text-shadow: 4px 4px 0 #000, 0 0 18px rgba(240,90,26,.4);
}

.hy-hero-kicker {
	font-family: var(--hy-font-comic);
	font-size: 1.45rem;
	text-shadow: 2px 2px 0 #000;
}

.hy-hero-subtitle {
	font-family: var(--hy-font-body);
	font-size: 1.08rem;
	line-height: 1.58;
	text-shadow: 2px 2px 0 #000;
}

.hy-speech-bubble {
	background:
		radial-gradient(circle at 20% 20%, #fff8e8, var(--hy-bone));
	border-width: 3px;
	font-family: var(--hy-font-comic);
	font-size: 1.3rem;
	line-height: 1.05;
	max-width: 240px;
	outline: 3px solid rgba(0,0,0,.65);
	text-align: center;
	text-transform: uppercase;
}

.hy-scene-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hy-scene-tile {
	background: #070707;
	min-height: 135px;
}

.hy-scene-tile .hy-theme-placeholder,
.hy-scene-tile .hy-generated-image {
	grid-area: 1 / 1;
	min-height: 135px;
}

.hy-scene-tile > span {
	align-items: center;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,.88));
	display: flex;
	font-family: var(--hy-font-comic);
	font-size: 1.08rem;
	gap: .25rem;
	justify-content: center;
	text-shadow: 2px 2px 0 #000;
}

.hy-icon-card {
	box-shadow: none;
	font-size: .86rem;
	min-height: 135px;
}

.hy-icon-card span {
	background:
		radial-gradient(circle at 35% 25%, rgba(255,255,255,.35), transparent 30%),
		var(--hy-orange);
	box-shadow: 2px 2px 0 rgba(0,0,0,.45);
	color: #120904;
	font-family: var(--hy-font-accent);
}

.hy-product-table {
	background: rgba(232,220,195,.75);
	color: var(--hy-border);
}

.hy-product-table th {
	background: rgba(42,33,27,.88);
	font-family: var(--hy-font-comic);
	font-size: .86rem;
}

.hy-product-table .hy-affiliate-button {
	font-size: .75rem;
	min-height: 28px;
	padding: .3rem .5rem;
}

.hy-checklist-cta {
	background:
		url("../img/checklist-note.svg") 3% 50% / 150px auto no-repeat,
		url("../img/skull-lantern.svg") 99% 95% / 150px auto no-repeat,
		radial-gradient(circle at 12% 16%, rgba(91,44,160,.36), transparent 14rem),
		radial-gradient(circle at 84% 78%, rgba(240,90,26,.22), transparent 14rem),
		#070707;
	grid-template-columns: 1fr .8fr;
	padding-left: 190px;
}

.hy-checklist-cta h2 {
	font-family: var(--hy-font-heading);
	font-size: clamp(2rem, 4vw, 3.45rem);
	text-shadow: var(--hy-ink-shadow);
}

.hy-checklist-cta form {
	position: relative;
	z-index: 1;
}

.hy-checklist-cta input {
	background: var(--hy-bone);
	color: var(--hy-border);
	font-family: var(--hy-font-body);
}

.hy-site-footer {
	background:
		url("../img/skull-lantern.svg") right 1rem bottom .5rem / 180px auto no-repeat,
		radial-gradient(circle at right bottom, rgba(240,90,26,.13), transparent 16rem),
		#040404;
	border-top: 3px solid var(--hy-border);
	padding-block: 1.6rem;
}

.hy-footer-grid {
	align-items: end;
}

.hy-footer-grid .hy-logo-mark {
	font-size: clamp(2rem, 4vw, 3.25rem);
	margin-bottom: .35rem;
}

@media (max-width: 980px) {
	.hy-scene-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hy-checklist-cta {
		background-position: right 1rem bottom .5rem, right 1rem bottom .5rem, center, center;
		grid-template-columns: 1fr;
		padding-left: 1rem;
	}
}

@media (max-width: 640px) {
	.hy-hero {
		background-position: 62% center;
		min-height: auto;
	}

	.hy-hero h1 {
		font-size: clamp(3rem, 16vw, 4.5rem);
	}

	.hy-scene-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Astra typography handoff and border cleanup. */
:root {
	--hy-font-heading: var(--ast-heading-font-family, "Eater", "Creepster", Impact, sans-serif);
	--hy-font-body: var(--ast-body-font-family, "Special Elite", system-ui, sans-serif);
}

body,
button,
input,
select,
textarea {
	font-family: var(--ast-body-font-family, "Special Elite", system-ui, sans-serif);
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-content :where(h1, h2, h3, h4, h5, h6) {
	font-family: var(--ast-heading-font-family, "Eater", "Creepster", Impact, sans-serif);
}

.hy-site-shell {
	border-left: 0;
	border-right: 0;
	box-shadow: none;
}

.hy-site-header {
	border-bottom: 1px solid rgba(232, 220, 195, .22);
	box-shadow: 0 5px 18px rgba(0, 0, 0, .45);
}

.hy-site-header::before,
.hy-site-header::after,
.hy-card::after,
.hy-panel::after,
.hy-checklist-cta::after {
	display: none;
}

.hy-section-parchment,
.hy-section-dark {
	border-bottom: 0;
	border-top: 0;
}

.hy-section-heading {
	border-bottom: 0;
}

.hy-section-heading::after {
	background: linear-gradient(90deg, rgba(42, 33, 27, .5), rgba(42, 33, 27, .08));
	content: "";
	flex: 1 1 auto;
	height: 2px;
	margin-left: .75rem;
	order: 2;
}

.hy-section-dark .hy-section-heading::after {
	background: linear-gradient(90deg, rgba(232, 220, 195, .42), rgba(232, 220, 195, .06));
}

.hy-section-heading a {
	order: 3;
}

.hy-card,
.hy-panel,
.hy-scene-tile,
.hy-checklist-cta {
	border: 2px solid rgba(42, 33, 27, .92);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, .55);
}

.hy-card-photo {
	border-bottom: 2px solid rgba(42, 33, 27, .88);
}

.hy-card-dark {
	border-color: rgba(232, 220, 195, .34);
}

.hy-icon-card {
	border: 0;
	box-shadow: none;
}

.hy-speech-bubble {
	outline: 0;
}

.hy-checklist-cta {
	border-color: rgba(91, 44, 160, .82);
}

.hy-product-table th,
.hy-product-table td {
	border-color: rgba(42, 33, 27, .35);
}

.hy-disclosure {
	border: 0;
	border-left: 5px solid var(--hy-orange);
}
