:root {
	--hgc-blue: #0066cc;
	--hgc-teal: #0066cc;
	--hgc-charcoal: #333;
	--hgc-sand: #f5e6c8;
	--hgc-white: #fff;
	--bg: oklch(98.5% 0.006 255);
	--surface: oklch(100% 0 0);
	--surface-teal: oklch(56% 0.18 255);
	--surface-teal-deep: #0056b3;
	--surface-blue: oklch(49% 0.17 255);
	--ink: oklch(24% 0.012 255);
	--heading: color-mix(in srgb, var(--surface-blue) 82%, var(--ink));
	--muted: oklch(40% 0.02 255);
	--line: oklch(88% 0.018 255);
	--sand-soft: oklch(93% 0.04 82);
	--focus: oklch(69% 0.17 255);
	--shadow-sm: 0 2px 8px rgb(0 56 128 / 10%);
	--shadow-md: 0 12px 28px rgb(0 56 128 / 14%);
	--font: "Montserrat", "Poppins", "Open Sans", Arial, sans-serif;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.5rem;
	--space-6: 2rem;
	--space-7: 3rem;
	--space-8: 4rem;
	--space-9: 6rem;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--hgc-blue-deep: var(--surface-teal-deep);
	--hgc-ink: var(--ink);
	--hgc-heading: var(--heading);
	--hgc-muted: var(--muted);
	--hgc-bg: var(--bg);
	--hgc-surface: var(--surface);
	--hgc-line: var(--line);
	--hgc-radius: var(--radius-md);
	--hgc-radius-md: var(--radius-md);
	--hgc-radius-lg: var(--radius-lg);
	--hgc-shadow: 0 18px 34px rgb(0 34 92 / 18%);
	--hgc-font: var(--font);
	--hgc-space-2: var(--space-2);
	--hgc-space-3: var(--space-3);
	--hgc-space-4: var(--space-4);
	--hgc-space-5: var(--space-5);
	--hgc-ease-out: var(--ease-out);
	--hgc-ease-out-expo: var(--ease-out-expo);
}

.hgc-section {
	display: block;
	color: var(--ink);
	background: var(--bg);
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.6;
	font-kerning: normal;
	-webkit-font-smoothing: antialiased;
}

.hgc-section :where(a) {
	color: inherit;
}

.hgc-section :where(button, input, textarea) {
	font: inherit;
}

.site-main:has(.hgc-section),
.entry:has(.hgc-section) {
	overflow-x: clip;
}

.entry:has(.hgc-section) {
	margin-bottom: 0;
}

.entry-content:has(> .hgc-section),
.page-content:has(> .hgc-section) {
	margin-top: 0;
}

.hgc-section [data-reveal],
.hgc-section [data-reveal-stagger] > * {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.hgc-section [data-reveal].is-visible,
.hgc-section [data-reveal-stagger] > *.is-visible {
	opacity: 1;
	transform: translateY(0);
}

body .entry-content > .hgc-section,
body .page-content > .hgc-section,
body .entry-content > .alignfull.hgc-section,
body .page-content > .alignfull.hgc-section,
body .entry-content > .wp-block-hgc-hgc-hero,
body .page-content > .wp-block-hgc-hgc-hero {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-right: -50vw;
	margin-left: -50vw;
	padding-right: 0;
	padding-left: 0;
}

.entry-content > .hgc-section:first-child,
.page-content > .hgc-section:first-child {
	margin-top: 0;
}

.hgc-section * {
	box-sizing: border-box;
}

.hgc-section img,
.hgc-section svg {
	display: block;
	max-width: 100%;
}

.hgc-section svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.hgc-section__inner {
	width: min(1180px, calc(100% - 2rem));
	margin-inline: auto;
}

.hgc-section h1,
.hgc-section h2,
.hgc-section h3,
.hgc-section p {
	margin-top: 0;
}

.hgc-section h1,
.hgc-section h2,
.hgc-section h3 {
	color: var(--heading);
	font-family: var(--font);
	font-stretch: normal;
	font-weight: 800;
	line-height: 1.08;
}

.hgc-section h1 {
	max-width: 15ch;
	font-size: clamp(2.35rem, 4.35vw, 3.85rem);
}

.hgc-section h2 {
	font-size: clamp(2rem, 4vw, 3.35rem);
}

.hgc-section h3 {
	font-size: 1.2rem;
}

.hgc-section p {
	color: var(--muted);
	line-height: 1.7;
}

.hgc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	min-height: 48px;
	padding: 0.85rem 1.2rem;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition:
		transform 180ms var(--ease-out),
		background-color 180ms var(--ease-out),
		border-color 180ms var(--ease-out),
		box-shadow 180ms var(--ease-out),
		color 180ms var(--ease-out);
}

.hgc-button:hover {
	transform: translateY(-2px);
}

.hgc-button--primary {
	background: var(--hgc-blue-deep);
	color: #fff;
}

.hgc-button--light {
	background: #fff;
	color: var(--hgc-blue-deep);
}

.hgc-button--outline-light {
	border: 2px solid rgb(255 255 255 / 48%);
	color: #fff;
}

.hgc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.hgc-eyebrow {
	width: fit-content;
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	color: rgb(255 255 255 / 76%);
	font-size: clamp(0.84rem, 1.2vw, 1rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	animation: hero-copy-in 640ms 70ms var(--ease-out-expo) both;
}

.hgc-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: calc(100svh - 76px);
	background: var(--surface-teal);
	color: var(--hgc-white);
}

.hgc-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -3;
	background:
		radial-gradient(circle at 12% 20%, rgb(71 143 255 / 30%) 0%, rgb(71 143 255 / 8%) 32%, transparent 55%),
		radial-gradient(circle at 38% 90%, rgb(0 102 204 / 28%) 0%, transparent 48%),
		linear-gradient(90deg, rgb(0 102 204 / 94%) 0%, rgb(0 86 179 / 94%) 34%, rgb(0 65 148 / 95%) 65%, rgb(0 42 102 / 98%) 100%),
		var(--hgc-hero-texture, none) center / cover;
	opacity: 1;
}

.hgc-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.53fr) minmax(400px, 0.47fr);
	align-items: center;
	gap: clamp(2rem, 4vw, 4rem);
	width: min(1180px, calc(100% - 2rem));
	min-height: calc(100svh - 76px);
	margin-inline: auto;
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.hgc-hero h1 {
	max-width: 15ch;
	margin: var(--space-4) 0 0;
	color: var(--hgc-white);
	font-size: clamp(2.35rem, 4.35vw, 3.85rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.04em;
	text-wrap: balance;
	animation: hero-copy-in 720ms 150ms var(--ease-out-expo) both;
}

.hgc-hero p {
	color: var(--hgc-white);
}

.hgc-hero__lead {
	max-width: 68ch;
	margin: var(--space-4) 0 0;
	color: rgb(255 255 255 / 82%);
	font-size: clamp(0.98rem, 1.35vw, 1.12rem);
	line-height: 1.68;
	animation: hero-copy-in 720ms 230ms var(--ease-out-expo) both;
}

.hgc-hero .hgc-actions {
	gap: var(--space-3);
	margin-top: var(--space-5);
	animation: hero-copy-in 720ms 320ms var(--ease-out-expo) both;
}

.hgc-hero .hgc-button--light {
	min-height: 64px;
	border-radius: var(--radius-md);
	background: var(--hgc-white);
	color: var(--surface-teal-deep);
	box-shadow: 0 10px 18px rgb(0 34 92 / 18%);
}

.hgc-hero .hgc-button--light:hover {
	box-shadow: 0 14px 24px rgb(0 34 92 / 22%);
}

.hgc-hero .hgc-button--outline-light {
	min-height: 64px;
	border: 2px solid rgb(255 255 255 / 45%);
	border-radius: var(--radius-md);
	background: transparent;
	color: var(--hgc-white);
}

.hgc-hero .hgc-button--outline-light:hover {
	border-color: rgb(255 255 255 / 72%);
	background: rgb(255 255 255 / 10%);
}

.hgc-hero__security {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	margin-top: var(--space-5);
	color: rgb(255 255 255 / 88%);
	font-weight: 700;
	animation: hero-copy-in 720ms 410ms var(--ease-out-expo) both;
}

.hgc-hero__security svg {
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hgc-hero__security p {
	margin: 0;
}

.hgc-hero__media {
	position: relative;
	align-self: stretch;
	min-height: min(70vh, 660px);
	display: flex;
	align-items: center;
	width: calc(100% + clamp(2rem, 8vw, 8rem));
	margin-right: calc(-1 * clamp(2rem, 8vw, 8rem));
}

.hgc-house-mask {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 24px 60px rgb(0 34 92 / 24%);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M50 0 L100 23 L100 100 L0 100 L0 23 Z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M50 0 L100 23 L100 100 L0 100 L0 23 Z'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	animation: hero-image-in 850ms 180ms var(--ease-out-expo) both;
}

.hgc-house-mask img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	box-shadow: none;
	opacity: 1;
	transform: scale(1.01);
	transition: transform 700ms var(--ease-out);
}

.hgc-house-mask:hover img {
	transform: scale(1.045);
}

.hgc-verification-card {
	position: absolute;
	bottom: clamp(1.5rem, 4vw, 3rem);
	left: clamp(1.5rem, 4vw, 3rem);
	display: flex;
	align-items: center;
	gap: var(--space-3);
	width: min(360px, calc(100% - 3rem));
	padding: var(--space-5);
	border-radius: 16px;
	background: var(--hgc-white);
	box-shadow: 0 18px 34px rgb(0 34 92 / 22%), 0 2px 8px rgb(0 34 92 / 10%);
	color: var(--ink);
	animation: float-card 6s ease-in-out infinite;
}

.hgc-verification-card__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	flex: 0 0 auto;
	background: transparent;
	color: var(--surface-teal);
}

.hgc-verification-card__icon svg {
	width: 56px;
	height: 56px;
	stroke-width: 3;
}

.hgc-verification-card strong,
.hgc-verification-card span span {
	display: block;
	line-height: 1.2;
}

.hgc-verification-card strong {
	color: var(--surface-teal);
	font-size: 1.35rem;
	font-weight: 800;
}

.hgc-verification-card span span {
	margin-top: 0;
	color: var(--ink);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
}

.hgc-decorative-glow {
	position: absolute;
	z-index: -1;
	pointer-events: none;
	border-radius: 999px;
	filter: blur(80px);
	animation: glow-drift 9s var(--ease-out) infinite alternate;
}

.hgc-decorative-glow--one {
	top: 10rem;
	left: -10rem;
	width: 24rem;
	height: 24rem;
	background: rgb(0 102 204 / 10%);
}

.hgc-decorative-glow--two {
	bottom: -12rem;
	left: 25%;
	width: 34rem;
	height: 34rem;
	background: rgb(0 102 204 / 12%);
	animation-delay: 900ms;
	animation-duration: 11s;
}

@keyframes hero-copy-in {
	from {
		opacity: 0.82;
		transform: translateY(14px);
		filter: blur(2px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

@keyframes hero-image-in {
	from {
		opacity: 0.9;
		transform: translateX(18px) scale(0.985);
		filter: saturate(0.88) blur(3px);
	}

	to {
		opacity: 1;
		transform: translateX(0) scale(1);
		filter: saturate(1) blur(0);
	}
}

@keyframes glow-drift {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		transform: translate3d(18px, -14px, 0) scale(1.08);
	}
}

@keyframes float-card {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-10px) rotate(-0.35deg);
	}
}

.hgc-trust-indicators {
	background: #fff;
}

.hgc-trust-indicators__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-block: 1.4rem;
}

.hgc-trust-point {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem 1.5rem;
	border-right: 1px solid rgb(0 102 204 / 18%);
}

.hgc-trust-point:last-child {
	border-right: 0;
}

.hgc-trust-point__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	flex: 0 0 auto;
	border-radius: 999px;
	background: oklch(96% 0.035 255);
	color: var(--hgc-blue-deep);
}

.hgc-trust-point__icon svg {
	width: 28px;
	height: 28px;
}

.hgc-trust-point h2 {
	margin-bottom: 0.15rem;
	font-size: 1.1rem;
}

.hgc-trust-point p {
	margin-bottom: 0;
	font-weight: 800;
}

.hgc-intro-feature,
.hgc-steps,
.hgc-testimonials {
	background: var(--hgc-bg);
	padding-block: clamp(4rem, 8vw, 7rem);
}

.hgc-intro-feature__inner,
.hgc-why-choose__grid,
.hgc-testimonials__grid,
.hgc-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
}

.hgc-prose p {
	max-width: 68ch;
}

.hgc-intro-feature__panel img,
.hgc-testimonials img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--hgc-radius-lg);
}

.hgc-section-heading {
	max-width: 760px;
	margin-inline: auto;
	margin-bottom: clamp(2rem, 5vw, 4rem);
	text-align: center;
}

.hgc-section-heading p {
	font-weight: 800;
}

.hgc-steps__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.hgc-steps__list li {
	display: grid;
	justify-items: center;
	gap: 0.75rem;
}

.hgc-steps__mark {
	position: relative;
	width: 88px;
	height: 88px;
}

.hgc-steps__icon {
	display: grid;
	place-items: center;
	width: 80px;
	height: 80px;
	border-radius: 999px;
	background: oklch(96% 0.035 255);
	color: var(--hgc-blue-deep);
}

.hgc-steps__icon svg {
	width: 40px;
	height: 40px;
}

.hgc-steps__number {
	position: absolute;
	top: -4px;
	right: -2px;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 4px solid #fff;
	border-radius: 999px;
	background: var(--hgc-blue-deep);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 800;
}

.hgc-feature-story {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	min-height: 720px;
	background: var(--hgc-bg);
}

.hgc-feature-story__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hgc-feature-story__content {
	align-self: center;
	width: min(640px, calc(100% - 2rem));
	margin-inline: auto;
	padding-block: clamp(4rem, 8vw, 6rem);
}

.hgc-feature-list {
	display: grid;
	border-top: 1px solid var(--hgc-line);
}

.hgc-feature-list article {
	padding-block: 1rem;
	border-bottom: 1px solid var(--hgc-line);
}

.hgc-feature-list p {
	margin-bottom: 0;
}

.hgc-why-choose {
	padding-block: clamp(4rem, 8vw, 7rem);
	background: var(--hgc-blue-deep);
	color: #fff;
}

.hgc-why-choose h2,
.hgc-why-choose p {
	color: #fff;
}

.hgc-why-choose__points {
	display: grid;
	gap: 0.75rem;
}

.hgc-why-choose__points div {
	display: grid;
	gap: 0.5rem;
	padding-block: 1rem;
	border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.hgc-why-choose__points span {
	color: rgb(255 255 255 / 80%);
}

.hgc-action-panels,
.hgc-contact {
	padding-block: clamp(3rem, 6vw, 5rem);
	background: #fff;
}

.hgc-action-panels__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.hgc-action-panel {
	display: grid;
	grid-template-rows: clamp(170px, 18vw, 200px) 1fr;
	overflow: hidden;
	border-radius: var(--hgc-radius-lg);
	background: oklch(96% 0.025 255);
}

.hgc-action-panel--deep {
	background: var(--hgc-blue);
	color: #fff;
}

.hgc-action-panel__media {
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% 76%, 72% 100%, 0 100%);
}

.hgc-action-panel__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hgc-action-panel__media span {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	background: #fff;
	color: var(--hgc-blue);
}

.hgc-action-panel__media svg {
	width: 28px;
	height: 28px;
}

.hgc-action-panel__copy {
	padding: clamp(1.35rem, 3vw, 2.1rem);
}

.hgc-action-panel h2 {
	max-width: 13ch;
	font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.hgc-action-panel--deep h2,
.hgc-action-panel--deep p {
	color: #fff;
}

.hgc-action-panel__label {
	display: block;
	margin-bottom: 0.75rem;
	color: var(--hgc-blue-deep);
	font-weight: 800;
}

.hgc-action-panel--deep .hgc-action-panel__label {
	color: var(--hgc-sand);
}

.hgc-quote-stack {
	display: grid;
	gap: 1.25rem;
}

.hgc-quote-stack figure {
	margin: 0;
	padding: clamp(1.5rem, 3vw, 2rem);
	border-radius: var(--hgc-radius-lg);
	background: #fff;
}

.hgc-quote-stack blockquote {
	margin: 0;
	font-size: clamp(1.05rem, 2vw, 1.4rem);
	line-height: 1.55;
}

.hgc-quote-stack figcaption {
	margin-top: 1.5rem;
	color: var(--hgc-blue-deep);
	font-weight: 800;
}

.hgc-quote-stack figcaption span {
	display: block;
	color: var(--hgc-muted);
	font-size: 0.9rem;
	font-weight: 600;
}

.hgc-contact__details {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.hgc-contact__details div {
	display: grid;
	gap: 0.25rem;
}

.hgc-contact__details dt {
	color: var(--hgc-muted);
	font-size: 0.86rem;
	font-weight: 800;
}

.hgc-contact__details dd {
	margin: 0;
	font-weight: 700;
}

.hgc-contact__form {
	padding: 1.5rem;
	border-radius: var(--hgc-radius-lg);
	background: oklch(96% 0.018 255);
}

.hgc-form-placeholder {
	margin: 0;
	font-weight: 800;
}

@media (max-width: 900px) {
	.hgc-hero__inner,
	.hgc-intro-feature__inner,
	.hgc-why-choose__grid,
	.hgc-testimonials__grid,
	.hgc-contact__grid,
	.hgc-feature-story,
	.hgc-action-panels__grid {
		grid-template-columns: 1fr;
	}

	.hgc-hero__inner {
		min-height: auto;
	}

	.hgc-hero__media {
		min-height: 520px;
		width: 100%;
		margin-right: 0;
	}

	.hgc-trust-indicators__grid,
	.hgc-steps__list {
		grid-template-columns: 1fr;
	}

	.hgc-trust-point {
		border-right: 0;
		border-bottom: 1px solid rgb(0 102 204 / 18%);
	}

	.hgc-feature-story__image {
		min-height: 360px;
	}
}

@media (max-width: 620px) {
	.hgc-section__inner,
	.hgc-hero__inner {
		width: min(1180px, calc(100% - 1.25rem));
	}

	.hgc-hero__media {
		min-height: 360px;
	}

	.hgc-verification-card {
		position: relative;
		bottom: auto;
		left: auto;
		width: 100%;
		margin-top: 1rem;
		animation: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hgc-section [data-reveal],
	.hgc-section [data-reveal-stagger] > * {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.hgc-button {
		transition: none;
	}

	.hgc-eyebrow,
	.hgc-hero h1,
	.hgc-hero__lead,
	.hgc-hero .hgc-actions,
	.hgc-hero__security,
	.hgc-house-mask,
	.hgc-verification-card,
	.hgc-decorative-glow {
		animation: none;
	}

	.hgc-button:hover {
		transform: none;
	}
}

/* Source-of-truth hero rules from the static reference. */
body .entry-content > .hero,
body .page-content > .hero {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-right: -50vw;
	margin-left: -50vw;
	padding-right: 0;
	padding-left: 0;
}

.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: calc(100svh - 76px);
	background: var(--surface-teal);
	color: var(--hgc-white);
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.6;
	font-kerning: normal;
	-webkit-font-smoothing: antialiased;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: -3;
	background:
		radial-gradient(circle at 12% 20%, rgb(71 143 255 / 30%) 0%, rgb(71 143 255 / 8%) 32%, transparent 55%),
		radial-gradient(circle at 38% 90%, rgb(0 102 204 / 28%) 0%, transparent 48%),
		linear-gradient(90deg, rgb(0 102 204 / 94%) 0%, rgb(0 86 179 / 94%) 34%, rgb(0 65 148 / 95%) 65%, rgb(0 42 102 / 98%) 100%),
		var(--hgc-hero-texture, none) center / cover;
	opacity: 1;
}

.hero__inner {
	position: relative;
	z-index: 1;
	width: min(1180px, calc(100% - 2rem));
	min-height: calc(100svh - 76px);
	margin: 0 auto;
	padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem);
	display: grid;
	grid-template-columns: minmax(0, 0.53fr) minmax(400px, 0.47fr);
	align-items: center;
	gap: clamp(2rem, 4vw, 4rem);
}

.hero h1,
.hero.hgc-hero h1 {
	max-width: 15ch;
	margin: var(--space-4) 0 0;
	color: var(--hgc-white);
	font-family: var(--font);
	font-size: clamp(2.35rem, 4.35vw, 3.85rem);
	font-stretch: normal;
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.04em;
	text-wrap: balance;
	animation: hero-copy-in 720ms 150ms var(--ease-out-expo) both;
}

.hero .hero__lead {
	max-width: 68ch;
	margin: var(--space-4) 0 0;
	color: rgb(255 255 255 / 82%);
	font-size: clamp(0.98rem, 1.35vw, 1.12rem);
	font-weight: 400;
	line-height: 1.68;
	text-wrap: pretty;
	animation: hero-copy-in 720ms 230ms var(--ease-out-expo) both;
}

.hero .trust-chip {
	width: fit-content;
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	color: rgb(255 255 255 / 76%);
	font-size: clamp(0.84rem, 1.2vw, 1rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	animation: hero-copy-in 640ms 70ms var(--ease-out-expo) both;
}

.hero .hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-top: var(--space-5);
	animation: hero-copy-in 720ms 320ms var(--ease-out-expo) both;
}

.button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	border-radius: 999px;
	padding: 0.85rem 1.2rem;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition:
		transform 180ms var(--ease-out),
		background-color 180ms var(--ease-out),
		border-color 180ms var(--ease-out),
		box-shadow 180ms var(--ease-out),
		color 180ms var(--ease-out);
}

.hero .button--light {
	min-height: 64px;
	border-radius: var(--radius-md);
	background: var(--hgc-white);
	color: var(--surface-teal-deep);
	box-shadow: 0 10px 18px rgb(0 34 92 / 18%);
}

.hero .button--outline-light {
	min-height: 64px;
	border: 2px solid rgb(255 255 255 / 45%);
	border-radius: var(--radius-md);
	color: var(--hgc-white);
	background: transparent;
}

.hero .hero__security {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	margin-top: var(--space-5);
	color: rgb(255 255 255 / 88%);
	font-weight: 700;
	animation: hero-copy-in 720ms 410ms var(--ease-out-expo) both;
}

.hero .hero__security p {
	margin: 0;
	color: inherit;
	line-height: inherit;
}

.hero .hero__security svg {
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero .hero__media {
	position: relative;
	align-self: stretch;
	min-height: min(70vh, 660px);
	display: flex;
	align-items: center;
	width: calc(100% + clamp(2rem, 8vw, 8rem));
	margin-right: calc(-1 * clamp(2rem, 8vw, 8rem));
}

.house-mask {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: var(--hgc-white);
	box-shadow: 0 24px 60px rgb(0 34 92 / 24%);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M50 0 L100 23 L100 100 L0 100 L0 23 Z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M50 0 L100 23 L100 100 L0 100 L0 23 Z'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	animation: hero-image-in 850ms 180ms var(--ease-out-expo) both;
}

.hero .hero__media img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	box-shadow: none;
	opacity: 1;
	transform: scale(1.01);
	transition: transform 700ms var(--ease-out);
}

.image-wrapper:hover img {
	transform: scale(1.045);
}

.verification-card {
	position: absolute;
	left: clamp(1.5rem, 4vw, 3rem);
	right: auto;
	bottom: clamp(1.5rem, 4vw, 3rem);
	width: min(360px, calc(100% - 3rem));
	display: flex;
	gap: var(--space-3);
	align-items: center;
	padding: var(--space-5);
	border-radius: 16px;
	background: var(--hgc-white);
	color: var(--ink);
	box-shadow: 0 18px 34px rgb(0 34 92 / 22%), 0 2px 8px rgb(0 34 92 / 10%);
	animation: float-card 6s ease-in-out infinite;
}

.verification-card__icon {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	display: grid;
	place-items: center;
	border-radius: 0;
	background: transparent;
	color: var(--surface-teal);
}

.verification-card svg {
	width: 56px;
	height: 56px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.verification-card strong,
.verification-card span {
	display: block;
}

.verification-card strong {
	color: var(--surface-teal);
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.2;
}

.verification-card span {
	margin-top: 0;
	color: var(--ink);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
}

@media (max-width: 900px) {
	.hero__bg {
		background:
			radial-gradient(circle at 20% 18%, rgb(71 143 255 / 26%) 0%, transparent 52%),
			linear-gradient(180deg, rgb(0 86 179 / 96%) 0%, rgb(0 42 102 / 98%) 100%),
			var(--hgc-hero-texture, none) center / cover;
	}

	.hero .hero__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero.hgc-hero h1 {
		max-width: 14ch;
	}

	.hero .hero__media {
		min-height: 520px;
		width: 100%;
		margin-right: 0;
	}

	.house-mask {
		-webkit-mask-image: none;
		mask-image: none;
		border-radius: 24px;
	}
}

@media (max-width: 620px) {
	.hero .hero__inner {
		width: min(1180px, calc(100% - 1.25rem));
	}

	.hero.hgc-hero h1 {
		font-size: clamp(2.2rem, 12vw, 3.35rem);
	}

	.hero .hero__media {
		height: 360px;
		min-height: 360px;
	}

	.verification-card {
		position: relative;
		left: auto;
		bottom: auto;
		width: 100%;
		margin-top: var(--space-4);
		animation: none;
	}
}

/* Source-of-truth non-hero rules from the static reference. */
.hgc-section.trust-indicators,
.wp-block-hgc-hgc-trust-indicators.trust-indicators,
.trust-indicators {
	position: relative;
	z-index: 2;
	overflow: hidden;
	background:
		radial-gradient(circle at 22% 0%, rgb(0 102 204 / 10%), transparent 34%),
		oklch(96.5% 0.025 255);
	border-top: 1px solid rgb(0 102 204 / 20%);
	border-bottom: 1px solid oklch(88% 0.018 255);
}

.trust-indicators__inner {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
	padding: clamp(2.25rem, 5vw, 3.25rem) 0;
}

.trust-indicators__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	align-items: start;
}

.trust-point {
	display: flex;
	align-items: center;
	min-height: 72px;
	gap: var(--space-4);
	padding: 0 var(--space-6);
	border-right: 1px solid rgb(0 102 204 / 20%);
}

.trust-point:first-child {
	padding-left: 0;
}

.trust-point:last-child {
	padding-right: 0;
	border-right: 0;
}

.trust-point__icon {
	flex: 0 0 auto;
	color: var(--surface-teal-deep);
}

.trust-point svg {
	width: 44px;
	height: 44px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.trust-point h2 {
	margin: 0;
	color: var(--surface-teal-deep);
	font-size: clamp(1.1rem, 1.55vw, 1.35rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
}

.trust-point p {
	margin: var(--space-1) 0 0;
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.25;
}

.hgc-section.intro-feature,
.wp-block-hgc-hgc-intro-feature.intro-feature,
.intro-feature {
	padding: clamp(3.4rem, 6.8vw, 5.95rem) 0;
	background:
		radial-gradient(circle at 78% 16%, rgb(0 102 204 / 20%), transparent 32%),
		linear-gradient(135deg, var(--surface-blue), color-mix(in srgb, var(--surface-blue) 54%, var(--surface-teal-deep)));
	color: var(--hgc-white);
}

.intro-feature__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
	align-items: center;
	width: min(1180px, calc(100% - 2rem));
	gap: clamp(1.7rem, 4.25vw, 3.4rem);
	margin: 0 auto;
}

.intro-feature__copy {
	max-width: 760px;
}

.intro-feature h2 {
	max-width: 16ch;
	margin: 0;
	color: var(--hgc-white);
	font-size: clamp(2rem, 3.25vw, 3.15rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
	text-wrap: balance;
}

.intro-feature p {
	max-width: 66ch;
	margin: var(--space-4) 0 0;
	color: rgb(255 255 255 / 84%);
	font-size: 1.05rem;
	line-height: 1.75;
}

.intro-feature__panel {
	padding: 0.75rem;
	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 16px;
	background: rgb(255 255 255 / 10%);
	box-shadow: 0 28px 70px rgb(0 34 92 / 28%);
	backdrop-filter: blur(14px);
}

.intro-feature__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 12px;
}

.intro-feature__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.section__inner {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
}

.section h2,
.feature-story h2,
.contact h2 {
	margin: 0;
	color: var(--heading);
	font-size: clamp(1.9rem, 3.25vw, 3rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
	text-wrap: balance;
}

.section h3,
.feature-story h3 {
	margin: 0;
	color: var(--heading);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
}

.hgc-section.steps,
.wp-block-hgc-hgc-steps.steps,
.steps {
	background: var(--surface);
}

.section-heading {
	max-width: 780px;
	margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading p {
	max-width: 60ch;
	margin: var(--space-4) 0 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.section-heading--center p {
	margin-inline: auto;
	color: oklch(47% 0.025 255);
	font-size: clamp(1.05rem, 1.8vw, 1.25rem);
	font-weight: 600;
}

.steps__list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.steps__list li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-5);
	padding: 0 clamp(0.5rem, 1.6vw, 1.5rem);
	background: transparent;
}

.steps__mark {
	position: relative;
	width: 88px;
	height: 88px;
}

.steps__icon {
	display: grid;
	place-items: center;
	width: 80px;
	height: 80px;
	border-radius: 999px;
	background: oklch(96% 0.035 255);
	color: var(--surface-teal-deep);
	transition: transform 220ms var(--ease-out), background-color 220ms var(--ease-out);
}

.steps__list li:hover .steps__icon {
	transform: translateY(-3px);
	background: oklch(93% 0.055 255);
}

.steps__icon svg {
	width: 40px;
	height: 40px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.steps__icon--home svg {
	width: 42px;
	height: 42px;
}

.steps__number {
	position: absolute;
	top: -4px;
	right: -2px;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 4px solid var(--surface);
	border-radius: 999px;
	background: var(--surface-teal-deep);
	color: var(--hgc-white);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1;
}

.steps__copy {
	display: grid;
	gap: var(--space-2);
}

.steps__copy h3 {
	color: var(--surface-teal-deep);
	font-size: 1.25rem;
	font-weight: 800;
}

.steps__copy p {
	max-width: 31ch;
	margin: 0 auto;
	color: oklch(42% 0.025 255);
	line-height: 1.7;
}

.steps__arrow {
	position: absolute;
	top: 28px;
	right: clamp(-3.5rem, -4vw, -2rem);
	width: clamp(3.5rem, 7vw, 5rem);
	color: rgb(0 102 204 / 38%);
}

.steps__arrow svg {
	width: 100%;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hgc-section.feature-story,
.wp-block-hgc-hgc-feature-story.feature-story,
.feature-story {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	min-height: 740px;
	background: var(--bg);
}

.feature-story__image {
	min-height: 520px;
}

.feature-story__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feature-story__content {
	align-self: center;
	width: min(640px, calc(100% - 2rem));
	margin: 0 auto;
	padding: clamp(4rem, 8vw, 6rem) 0;
}

.feature-story__content > p {
	max-width: 64ch;
	margin: var(--space-5) 0 var(--space-7);
	color: var(--muted);
	font-size: 1.05rem;
}

.feature-list {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--line);
}

.feature-list article {
	padding: var(--space-4) 0;
	border-bottom: 1px solid var(--line);
}

.feature-list p {
	margin: var(--space-2) 0 0;
	color: var(--muted);
}

.hgc-section.why,
.wp-block-hgc-hgc-why-choose.why,
.why {
	background: var(--surface-teal-deep);
	color: var(--hgc-white);
}

.why h2 {
	color: var(--hgc-white);
}

.why__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
	align-items: start;
	gap: clamp(2rem, 6vw, 5rem);
}

.why__copy p {
	max-width: 60ch;
	color: rgb(255 255 255 / 82%);
	font-size: 1.05rem;
}

.why__points {
	display: grid;
	gap: var(--space-3);
}

.why__points div {
	display: grid;
	gap: var(--space-2);
	padding: var(--space-4) 0;
	border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.why__points strong {
	color: var(--hgc-white);
	font-size: 1.05rem;
}

.why__points span {
	color: rgb(255 255 255 / 78%);
}

.hgc-section.action-zone,
.wp-block-hgc-hgc-action-panels.action-zone,
.action-zone {
	padding: clamp(3rem, 6vw, 5rem) 0;
	background: var(--surface);
}

.action-zone__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: min(1180px, calc(100% - 2rem));
	gap: var(--space-5);
	margin: 0 auto;
}

.action-panel {
	display: grid;
	grid-template-rows: clamp(170px, 18vw, 200px) 1fr;
	overflow: hidden;
	padding: 0;
	border-radius: var(--radius-lg);
	background: oklch(96% 0.025 255);
}

.action-panel--deep {
	background: var(--surface-teal);
	color: var(--hgc-white);
}

.action-panel__media {
	position: relative;
	min-height: 170px;
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% 76%, 72% 100%, 0 100%);
}

.action-panel__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.action-panel__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgb(0 102 204 / 24%), rgb(0 70 170 / 42%));
}

.action-panel__icon {
	position: absolute;
	left: var(--space-4);
	bottom: var(--space-4);
	z-index: 1;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	background: var(--hgc-white);
	color: var(--surface-teal);
}

.action-panel__icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.action-panel__copy {
	padding: clamp(1.35rem, 3vw, 2.1rem);
}

.action-panel h2 {
	max-width: 13ch;
	font-size: clamp(1.55rem, 2.5vw, 2.25rem);
	line-height: 1.08;
}

.action-panel--deep h2 {
	color: var(--hgc-white);
}

.action-panel p {
	max-width: 54ch;
	margin: var(--space-3) 0 var(--space-5);
	color: var(--muted);
}

.action-panel--deep p {
	color: rgb(255 255 255 / 82%);
}

.action-panel__label {
	display: block;
	margin-bottom: var(--space-3);
	color: var(--surface-teal-deep);
	font-size: 0.9rem;
	font-weight: 700;
}

.action-panel--deep .action-panel__label {
	color: var(--sand-soft);
}

.hgc-section.testimonials,
.wp-block-hgc-hgc-testimonials.testimonials,
.testimonials {
	background: var(--bg);
}

.testimonials__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
	align-items: start;
	gap: clamp(2rem, 6vw, 5rem);
}

.testimonials img {
	width: 100%;
	margin-top: var(--space-6);
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.quote-stack {
	display: grid;
	gap: var(--space-5);
}

.quote-stack figure {
	margin: 0;
	padding: var(--space-6);
	border-radius: var(--radius-lg);
	background: var(--surface);
}

.quote-stack blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	color: var(--ink);
	font-size: clamp(1.05rem, 2vw, 1.4rem);
	line-height: 1.55;
	quotes: auto;
}

.quote-stack figcaption {
	margin-top: var(--space-5);
	color: var(--surface-teal-deep);
	font-weight: 700;
}

.quote-stack figcaption span {
	display: block;
	margin-top: var(--space-1);
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 500;
}

.hgc-section.contact,
.wp-block-hgc-hgc-contact.contact,
.contact {
	padding: clamp(4rem, 8vw, 7rem) 0;
	background: var(--surface);
}

.contact__inner {
	display: grid;
	grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
	width: min(1180px, calc(100% - 2rem));
	gap: clamp(2rem, 6vw, 5rem);
	margin: 0 auto;
}

.contact__copy > p {
	max-width: 56ch;
	color: var(--muted);
	font-size: 1.05rem;
}

.contact__details {
	display: grid;
	gap: var(--space-4);
	margin: var(--space-7) 0 0;
}

.contact__details div {
	display: grid;
	gap: var(--space-1);
}

.contact__details dt {
	color: var(--muted);
	font-size: 0.86rem;
	font-weight: 700;
}

.contact__details dd {
	margin: 0;
	font-weight: 600;
}

.contact-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-4);
	padding: var(--space-5);
	border-radius: var(--radius-lg);
	background: oklch(96% 0.018 255);
}

@media (max-width: 900px) {
	.intro-feature__inner,
	.why__grid,
	.testimonials__grid,
	.contact__inner {
		grid-template-columns: 1fr;
	}

	.trust-indicators__grid {
		grid-template-columns: 1fr;
	}

	.trust-point {
		padding: var(--space-4) 0;
		border-right: 0;
		border-bottom: 1px solid rgb(0 102 204 / 18%);
	}

	.trust-point:first-child {
		padding-top: 0;
	}

	.trust-point:last-child {
		padding-bottom: 0;
		border-bottom: 0;
	}

	.intro-feature h2 {
		max-width: 16ch;
	}

	.steps__arrow {
		display: none;
	}

	.action-zone__inner,
	.feature-story {
		grid-template-columns: 1fr;
	}

	.feature-story__content {
		width: min(720px, calc(100% - 2rem));
	}

	.feature-story__image {
		min-height: 360px;
	}
}

@media (max-width: 620px) {
	.intro-feature__inner,
	.section__inner,
	.trust-indicators__inner,
	.action-zone__inner,
	.contact__inner {
		width: min(100% - 1.25rem, 1180px);
	}

	.trust-indicators__inner {
		gap: var(--space-4);
	}

	.steps__list li {
		padding: var(--space-4) 0;
	}

	.quote-stack figure,
	.contact-form {
		padding: var(--space-4);
	}

	.contact-form {
		grid-template-columns: 1fr;
	}
}

/* Source-of-truth membership page rules from the static reference. */
.button--primary-blue {
	background: var(--hgc-blue);
	color: var(--hgc-white);
}

.button--quiet {
	border: 1px solid rgb(0 102 204 / 22%);
	background: var(--hgc-white);
	color: var(--surface-teal-deep);
}

.button--quiet:hover {
	border-color: rgb(0 102 204 / 38%);
	background: oklch(97% 0.014 255);
}

.button--outline-dark {
	border: 1px solid rgb(0 102 204 / 34%);
	background: transparent;
	color: var(--surface-teal-deep);
}

.button--outline-dark:hover {
	background: oklch(96% 0.018 255);
}

.hgc-section.membership-hero,
.wp-block-hgc-hgc-membership-hero.membership-hero,
.membership-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--bg);
}

.membership-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 14% 16%, rgb(0 102 204 / 16%), transparent 34%),
		radial-gradient(circle at 88% 22%, rgb(0 102 204 / 12%), transparent 34%),
		linear-gradient(180deg, oklch(98.5% 0.006 255), oklch(96.5% 0.018 255));
}

.membership-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
	align-items: center;
	width: min(1180px, calc(100% - 2rem));
	min-height: calc(100svh - 76px);
	gap: clamp(2rem, 6vw, 5.5rem);
	margin: 0 auto;
	padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.membership-hero .trust-chip {
	color: var(--surface-teal-deep);
}

.membership-hero h1 {
	max-width: 13ch;
	margin: var(--space-4) 0 0;
	color: var(--heading);
	font-size: clamp(2.35rem, 4.9vw, 4.45rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.membership-hero__lead {
	max-width: 66ch;
	margin: var(--space-5) 0 0;
	color: var(--muted);
	font-size: clamp(1rem, 1.4vw, 1.14rem);
	line-height: 1.72;
}

.membership-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-top: var(--space-6);
}

.membership-hero__actions .button {
	min-height: 58px;
	border-radius: var(--radius-md);
	padding-inline: 1.25rem;
}

.membership-card {
	position: relative;
	overflow: hidden;
	padding: clamp(1.4rem, 3vw, 2rem);
	border-radius: 16px;
	background:
		radial-gradient(circle at 18% 12%, rgb(0 102 204 / 38%), transparent 34%),
		linear-gradient(145deg, var(--surface-blue), color-mix(in srgb, var(--surface-blue) 54%, var(--surface-teal-deep)));
	color: var(--hgc-white);
	box-shadow: 0 28px 56px rgb(0 34 92 / 20%);
}

.membership-card::after {
	content: "";
	position: absolute;
	right: -4rem;
	bottom: -6rem;
	width: 18rem;
	height: 18rem;
	border: 1px solid rgb(255 255 255 / 12%);
	border-radius: 999px;
}

.membership-card__top {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: var(--space-3);
	color: rgb(255 255 255 / 82%);
	font-size: 0.86rem;
	font-weight: 700;
}

.membership-card__label-stack {
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
}

.membership-card__label {
	color: rgb(255 255 255 / 75%);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.membership-card__heading {
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.membership-card__mark {
	display: block;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	color: var(--sand-soft);
}

.membership-card__mark svg {
	width: 42px;
	height: 42px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.membership-card__price {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: baseline;
	gap: 0.35rem;
	margin-top: clamp(3rem, 8vw, 5.5rem);
	padding-bottom: var(--space-5);
	border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.membership-card__currency {
	color: var(--sand-soft);
	font-size: clamp(1.5rem, 3vw, 2.15rem);
	font-weight: 800;
}

.membership-card__price strong {
	font-size: clamp(4rem, 8vw, 6.5rem);
	font-weight: 800;
	line-height: 0.82;
	letter-spacing: -0.04em;
}

.membership-card__term {
	color: rgb(255 255 255 / 74%);
	font-weight: 700;
}

.membership-card__list {
	position: relative;
	z-index: 1;
	display: grid;
	gap: var(--space-3);
	margin: var(--space-5) 0 var(--space-6);
	padding: 0;
	list-style: none;
}

.membership-card__list li {
	position: relative;
	padding-left: 1.6rem;
	color: rgb(255 255 255 / 84%);
	font-weight: 600;
}

.membership-card__list li::before {
	content: "";
	position: absolute;
	top: 0.55rem;
	left: 0;
	width: 0.58rem;
	height: 0.58rem;
	border-radius: 999px;
	background: var(--sand-soft);
}

.membership-card__button {
	position: relative;
	z-index: 1;
	width: 100%;
	border-radius: var(--radius-md);
}

.hgc-section.membership-includes,
.wp-block-hgc-hgc-membership-includes.membership-includes,
.membership-includes {
	padding: clamp(4rem, 8vw, 7rem) 0;
	background: var(--surface);
}

.membership-includes__inner {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
}

.membership-includes__heading {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
	align-items: end;
	gap: clamp(1.5rem, 5vw, 4rem);
	margin-bottom: clamp(2rem, 5vw, 4rem);
}

.membership-includes__heading p {
	margin: 0;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.7;
}

.amenity-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.amenity-list article {
	padding: clamp(1.35rem, 3vw, 2rem);
	border-right: 1px solid var(--line);
}

.amenity-list article:first-child {
	padding-left: 0;
}

.amenity-list article:last-child {
	padding-right: 0;
	border-right: 0;
}

.amenity-list span {
	display: inline-flex;
	margin-bottom: var(--space-4);
	color: var(--surface-teal-deep);
	font-size: 0.82rem;
	font-weight: 800;
}

.amenity-list h3 {
	color: var(--heading);
	font-size: 1.18rem;
	font-weight: 800;
}

.amenity-list p {
	margin: var(--space-3) 0 0;
	color: var(--muted);
}

.hgc-section.membership-detail,
.wp-block-hgc-hgc-membership-detail.membership-detail,
.membership-detail {
	padding: clamp(3rem, 7vw, 5rem) 0;
	background: oklch(95.5% 0.03 255);
}

.membership-detail__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
	width: min(1180px, calc(100% - 2rem));
	gap: clamp(1.5rem, 5vw, 4rem);
	margin: 0 auto;
}

.membership-detail__copy {
	display: grid;
	gap: var(--space-4);
}

.membership-detail__copy p {
	margin: 0;
	color: oklch(35% 0.018 255);
	font-size: 1.03rem;
	line-height: 1.75;
}

.hgc-section.membership-conversion,
.wp-block-hgc-hgc-membership-conversion.membership-conversion,
.membership-conversion {
	padding: clamp(4rem, 8vw, 7rem) 0;
	background: var(--bg);
}

.membership-conversion__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
	align-items: start;
	width: min(1180px, calc(100% - 2rem));
	gap: var(--space-5);
	margin: 0 auto;
}

.signup-panel {
	display: grid;
	grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	padding: clamp(1.4rem, 3vw, 2rem);
	border-radius: 16px;
	background: var(--surface);
}

.signup-panel__label {
	margin: 0 0 var(--space-3);
	color: var(--surface-teal-deep);
	font-weight: 800;
}

.signup-panel__copy p:last-child {
	max-width: 48ch;
	color: var(--muted);
}

.membership-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-4);
}

.membership-form .gform_wrapper,
.membership-form .hgc-form-placeholder {
	grid-column: 1 / -1;
}

.form-row {
	display: grid;
	gap: var(--space-2);
}

.form-row--full {
	grid-column: 1 / -1;
}

.hgc-section label {
	font-size: 0.9rem;
	font-weight: 700;
}

.hgc-section input,
.hgc-section textarea {
	width: 100%;
	padding: 0.85rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	color: var(--ink);
}

.hgc-section textarea {
	resize: vertical;
}

.form-note {
	min-height: 1.5em;
	margin: 0;
	color: var(--surface-teal-deep);
	font-weight: 700;
}

.login-panel {
	padding: clamp(1.35rem, 3vw, 2rem);
	border-radius: 16px;
	background: oklch(96% 0.018 255);
}

.login-panel h2 {
	font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.login-panel p {
	margin: var(--space-3) 0 var(--space-5);
	color: var(--muted);
}

@media (max-width: 900px) {
	.membership-hero__inner,
	.membership-includes__heading,
	.membership-detail__inner,
	.membership-conversion__inner,
	.signup-panel {
		grid-template-columns: 1fr;
	}

	.membership-hero__inner {
		min-height: auto;
	}

	.membership-hero h1 {
		max-width: 14ch;
	}

	.membership-includes__inner,
	.amenity-list {
		grid-template-columns: 1fr;
	}

	.amenity-list article,
	.amenity-list article:first-child,
	.amenity-list article:last-child {
		padding: var(--space-5) 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.amenity-list article:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 620px) {
	.membership-hero__inner,
	.membership-includes__inner,
	.membership-detail__inner,
	.membership-conversion__inner {
		width: min(100% - 1.25rem, 1180px);
	}

	.membership-hero h1 {
		font-size: clamp(2.2rem, 12vw, 3.4rem);
	}

	.signup-panel,
	.login-panel {
		padding: var(--space-4);
	}

	.membership-form {
		grid-template-columns: 1fr;
	}
}
