:root {
	--signedge-max: 1380px;
	--signedge-radius-sm: 11px;
	--signedge-radius-md: 18px;
	--signedge-radius-lg: 26px;
	--signedge-shadow-soft: 0 18px 50px rgba(17, 19, 24, 0.1);
	--signedge-shadow-lifted: 0 32px 80px rgba(17, 19, 24, 0.18);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-wrap: break-word;
	-webkit-font-smoothing: antialiased;
}

img {
	height: auto;
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid var(--wp--preset--color--amber);
	outline-offset: 3px;
}

.signedge-site {
	overflow: clip;
}

.signedge-header {
	position: relative;
	z-index: 50;
	min-height: 84px;
	border-bottom: 1px solid rgba(17, 19, 24, 0.08);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 8px 30px rgba(17, 19, 24, 0.035);
	backdrop-filter: blur(18px);
}

.signedge-header__inner {
	width: min(calc(100% - 80px), var(--signedge-max));
	min-height: 84px;
	margin-inline: auto;
}

.signedge-brand {
	min-width: 180px;
}

.signedge-brand .wp-block-site-logo img {
	width: auto;
	max-width: 190px;
	height: 42px;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.signedge-brand .wp-block-site-title {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.signedge-header .wp-block-navigation-item__content {
	position: relative;
	padding-block: 12px;
}

.signedge-header .wp-block-navigation-item__content::after {
	position: absolute;
	right: 100%;
	bottom: 5px;
	left: 0;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, #f4a100, #ffca42);
	content: "";
	transition: right 180ms ease;
}

.signedge-header .wp-block-navigation-item__content:hover::after,
.signedge-header .wp-block-navigation-item__content:focus-visible::after {
	right: 0;
}

.signedge-header__cta .wp-block-button__link {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow: 0 10px 24px rgba(17, 19, 24, 0.12);
}

.signedge-header__cta .wp-block-button__link::after,
.is-style-signedge-arrow .wp-block-button__link::after,
.signedge-arrow-link::after {
	color: var(--wp--preset--color--amber);
	content: "↗";
	font-size: 1.15rem;
	line-height: 1;
}

.signedge-section {
	position: relative;
	padding-block: clamp(4.75rem, 8vw, 7.5rem);
}

.signedge-section__inner {
	width: min(calc(100% - 80px), var(--signedge-max));
	margin-inline: auto;
}

.signedge-section-kicker {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 1.1rem;
	color: var(--wp--preset--color--muted);
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.signedge-section-kicker::before {
	width: 28px;
	height: 2px;
	border-radius: 99px;
	background: var(--wp--preset--color--amber);
	content: "";
}

.signedge-section-kicker--light {
	color: rgba(255, 255, 255, 0.56);
}

.signedge-display-heading {
	margin-top: 0;
	font-size: clamp(2.75rem, 4.8vw, 4.25rem);
	font-weight: 760;
	letter-spacing: -0.055em;
	line-height: 0.99;
	text-wrap: balance;
}

.signedge-muted-copy {
	color: var(--wp--preset--color--muted);
}

.is-style-signedge-card {
	border: 1px solid rgba(17, 19, 24, 0.09);
	border-radius: var(--signedge-radius-md);
	background: #fff;
	box-shadow: 0 10px 28px rgba(17, 19, 24, 0.04);
}

.signedge-page-banner {
	position: relative;
	min-height: 360px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: radial-gradient(circle at 82% 20%, rgba(255, 173, 13, 0.16), transparent 27%), #15171c;
	color: #fff;
}

.signedge-page-banner::after {
	position: absolute;
	right: max(24px, calc((100vw - var(--signedge-max)) / 2));
	bottom: 24px;
	width: 54px;
	height: 3px;
	border-radius: 99px;
	background: var(--wp--preset--color--amber);
	content: "";
}

.signedge-page-banner__inner {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 80px), var(--signedge-max));
	margin-inline: auto;
	padding-block: 3rem;
}

.signedge-page-banner h1 {
	max-width: 880px;
	margin: 0;
	font-size: clamp(3rem, 5vw, 4.6rem);
	line-height: 0.98;
}

.signedge-page-banner p:last-child {
	max-width: 690px;
	margin-top: 1.25rem;
	color: rgba(255, 255, 255, 0.6);
}

.signedge-footer {
	padding-top: 4rem;
	background: #fff;
}

.signedge-footer__inner,
.signedge-footer__bottom {
	width: min(calc(100% - 80px), var(--signedge-max));
	margin-inline: auto;
}

.signedge-footer__inner {
	display: grid !important;
	grid-template-columns: 1.28fr 0.72fr 0.62fr 1fr;
}

.signedge-footer__inner > .wp-block-column {
	width: auto;
}

.signedge-footer__brand .wp-block-site-logo img {
	max-width: 185px;
	height: 41px;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.signedge-footer__brand .wp-block-site-title {
	font-size: 1.2rem;
	font-weight: 800;
}

.signedge-footer__links a {
	color: #4e535c;
	font-size: 0.75rem;
}

.signedge-footer__prompt {
	padding: 1.25rem;
	border: 1px solid rgba(17, 19, 24, 0.1);
	border-radius: var(--signedge-radius-md);
	background: #f5f6f8;
}

.signedge-footer__bottom {
	min-height: 60px;
	border-top: 1px solid rgba(17, 19, 24, 0.1);
	color: #858b94;
	font-size: 0.625rem;
}

.signedge-comment-avatar {
	flex: 0 0 40px !important;
}

.signedge-content-shell {
	width: min(calc(100% - 80px), var(--signedge-max));
	margin-inline: auto;
	padding-block: clamp(4rem, 7vw, 7rem);
}

.signedge-content-shell > .wp-block-post-content {
	min-width: 0;
}

.wp-block-post-content > *:not(.alignfull):not(.alignwide) {
	max-width: var(--wp--style--global--content-size);
	margin-inline: auto;
}

.wp-block-post-content > .alignwide {
	max-width: var(--wp--style--global--wide-size);
}

.wp-block-post-content > .alignfull {
	max-width: none;
}

.wp-block-image img,
.wp-block-post-featured-image img {
	border-radius: var(--signedge-radius-md);
}

.wp-block-separator {
	border-color: rgba(17, 19, 24, 0.12);
}

.wp-block-query-pagination {
	margin-top: 3rem;
}

.wp-block-query-pagination a,
.wp-block-query-pagination .current {
	min-width: 42px;
	height: 42px;
	display: inline-grid;
	place-items: center;
	border: 1px solid rgba(17, 19, 24, 0.12);
	border-radius: 10px;
}

.wp-block-query-pagination .current {
	border-color: var(--wp--preset--color--ink);
	background: var(--wp--preset--color--ink);
	color: #fff;
}

@media (max-width: 1160px) {
	.signedge-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.signedge-header__inner,
	.signedge-section__inner,
	.signedge-page-banner__inner,
	.signedge-footer__inner,
	.signedge-footer__bottom,
	.signedge-content-shell {
		width: min(calc(100% - 48px), var(--signedge-max));
	}

	.signedge-header__cta {
		display: none;
	}
}

@media (max-width: 780px) {
	.signedge-footer__inner {
		grid-template-columns: 1fr;
	}

	.signedge-header,
	.signedge-header__inner {
		min-height: 76px;
	}

	.signedge-header__inner,
	.signedge-section__inner,
	.signedge-page-banner__inner,
	.signedge-footer__inner,
	.signedge-footer__bottom,
	.signedge-content-shell {
		width: calc(100% - 32px);
	}

	.signedge-header .wp-block-navigation__responsive-container.is-menu-open {
		padding: 1.5rem;
		background: #15171c;
		color: #fff;
	}

	.signedge-page-banner {
		min-height: 330px;
	}

	.signedge-footer__bottom {
		min-height: 74px;
		align-items: flex-start !important;
		justify-content: center !important;
		flex-direction: column;
		gap: 0.4rem;
	}
}

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