/* ============================================================
 * Buttons
 * ============================================================ */
.pc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--pc-r);
	font-family: var(--pc-font);
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	white-space: nowrap;
}
.pc-button.is-pressing { transform: scale(0.96); }
.pc-button--primary {
	background: var(--pc-primary);
	color: var(--pc-white);
}

.pc-button--outline {
	background: var(--pc-white);
	color: var(--pc-primary);
	border: 1px solid var(--pc-primary);
}

.pc-button--dark {
	background: rgba(17, 17, 16, 0.4);
	color: var(--pc-white);
	font-weight: 500;
}

/* ============================================================
 * Header
 * ============================================================ */
.pc-header {
	position: sticky;
	top: 0;
	z-index: 80;
	background: var(--pc-white);
	border-bottom: 1px solid var(--pc-line);
}
.pc-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
	max-width: var(--pc-container-max);
	margin-inline: auto;
	padding: 22px var(--pc-container-pad);
}
.pc-header__logo { width: 146px; height: 40px; object-fit: contain; }
.pc-header__brand-text {
	font-weight: 700;
	font-size: 18px;
	color: var(--pc-heading);
}

.pc-header__nav { justify-self: center; }
.pc-menu {
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.pc-menu > li { position: relative; }
.pc-menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--pc-heading);
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	padding: 8px 12px;
	border-radius: var(--pc-r);
}
.pc-menu > li > a:hover { color: var(--pc-primary); }

/* Sub-menu - Figma 684:2678 (white card, 16/16, desc color, soft shadow) */
.pc-menu .sub-menu {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	margin: 0;
	padding: 16px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: var(--pc-white);
	border-radius: var(--pc-r);
	box-shadow: var(--pc-shadow-card);
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s;
	z-index: 90;
}
.pc-menu > li:hover > .sub-menu,
.pc-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pc-menu .sub-menu li { line-height: 0; }
.pc-menu .sub-menu a {
	display: inline-block;
	padding: 0;
	color: var(--pc-desc);
	text-decoration: none;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	white-space: nowrap;
}
.pc-menu .sub-menu a:hover { color: var(--pc-primary); }

/* Caret on top-level items that have a sub-menu */
.pc-menu > li.menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.pc-menu > li.menu-item-has-children > a::after {
	content: "";
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231c1c19' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m4 6 4 4 4-4'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform .15s ease;
	flex-shrink: 0;
}
.pc-menu > li.menu-item-has-children:hover > a::after,
.pc-menu > li.menu-item-has-children:focus-within > a::after {
	transform: rotate(180deg);
}

.pc-header__actions {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 52px;
}
.pc-header__menu-toggle {
	background: transparent;
	border: 0;
	width: 36px;
	height: 36px;
	border-radius: var(--pc-r);
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	color: var(--pc-heading);
	cursor: pointer;
}
.pc-header__menu-toggle span {
	width: 22px; height: 2px; background: var(--pc-heading); border-radius: 2px;
}

/* Header search - always-open box (Figma 837:5943: 330×52, padding 8/16) */
.pc-header__search {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid rgba(168, 166, 165, 0.5);
	border-radius: var(--pc-r);
	width: 330px;
	height: 52px;
	max-width: 100%;
	background: var(--pc-white);
	transition: border-color .15s ease, box-shadow .15s ease;
	box-sizing: border-box;
}
.pc-header__search:focus-within {
	border-color: var(--pc-primary);
	box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}
.pc-header__search-icon {
	flex-shrink: 0;
	color: var(--pc-desc);
}
.pc-header__search-input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--pc-heading);
	padding: 0;
	-webkit-appearance: none;
	appearance: none;
}
.pc-header__search-input::placeholder { color: var(--pc-desc); font-weight: 500; }
.pc-header__search-input::-webkit-search-cancel-button { -webkit-appearance: none; }

.pc-header__cta {
	padding: 12px 24px;
	font-size: 16px;
	line-height: 24px;
}

/* Logged-in user dropdown - Figma 837:4519 */
.pc-header__user {
	position: relative;
}
.pc-header__user-toggle {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 52px;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	color: var(--pc-heading);
	border-radius: 999px;
}
.pc-header__user-toggle:focus { outline: 0; }
.pc-header__user-toggle:focus-visible {
	outline: 2px solid var(--pc-primary);
	outline-offset: 2px;
}
.pc-header__user-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--pc-img-bg);
	display: block;
}
.pc-header__user-caret {
	color: var(--pc-desc);
	transition: transform .15s ease;
}
.pc-header__user[data-open="true"] .pc-header__user-caret { transform: rotate(180deg); }

/* Figma 684:2683 - white card, 16px padding, 16px gap, soft drop-shadow */
.pc-header__user-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: var(--pc-white);
	border-radius: var(--pc-r);
	box-shadow: var(--pc-shadow-card);
	min-width: 220px;
	padding: 16px;
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.pc-header__user-menu[hidden] { display: none; }
.pc-header__user[data-open="true"] .pc-header__user-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pc-header__user-menu-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	border-radius: 6px;
	color: var(--pc-desc);
	text-decoration: none;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	white-space: nowrap;
}
.pc-header__user-menu-item svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	stroke-width: 1.6;
}
.pc-header__user-menu-item:hover {
	color: var(--pc-primary);
}
.pc-header__user-menu-item--danger:hover {
	color: #b91c1c;
}


/* ============================================================
 * Footer
 * ============================================================ */
.pc-footer {
	background: var(--pc-footer-bg);
	color: var(--pc-footer-text);
}
.pc-footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 64px;
	max-width: var(--pc-container-max);
	margin-inline: auto;
	padding: 64px var(--pc-container-pad) 40px;
}
.pc-footer__brand .pc-footer__logo {
	width: 179px;
	height: 49px;
	object-fit: contain;
	display: block;
	margin-bottom: 16px;
}
.pc-footer__brand .pc-footer__logo--invert {
	filter: brightness(0) invert(1);
}
.pc-footer__brand .pc-footer__logo-text {
	display: inline-block;
	color: var(--pc-white);
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 16px;
}
.pc-footer__about {
	font-family: var(--pc-font);
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--pc-footer-text);
	margin: 0 0 20px;
	max-width: 380px;
}
.pc-footer__social {
	display: flex;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.pc-footer__social a {
	display: inline-flex;
	width: 44px; height: 44px;
	align-items: center;
	justify-content: center;
	color: var(--pc-footer-text);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--pc-r);
	transition: background .15s, color .15s, border-color .15s;
}
.pc-footer__social a:hover {
	background: var(--pc-primary);
	color: var(--pc-white);
	border-color: var(--pc-primary);
}
.pc-footer__col-title {
	color: var(--pc-footer-head);
	font-family: var(--pc-font);
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.pc-footer__menu, .pc-footer__placeholder {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 16px;
	line-height: 32px;
}
.pc-footer__menu a {
	color: var(--pc-footer-text);
	text-decoration: none;
	font-weight: 400;
}
.pc-footer__menu a:hover { color: var(--pc-white); }
.pc-footer__placeholder { color: rgba(255,255,255,0.3); font-style: italic; }
.pc-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
}
.pc-footer__bottom-inner {
	max-width: var(--pc-container-max);
	margin-inline: auto;
	padding: 28px var(--pc-container-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	font-family: var(--pc-font);
	font-size: 14px;
	line-height: 20px;
	color: rgba(255,255,255,0.7);
}
.pc-footer__copy { margin: 0; }
.pc-footer__legal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.pc-footer__legal a,
.pc-footer__legal-btn {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	background: none;
	border: 0;
	/* WCAG 2.5.5 - 24px min tap target. 4px top/bottom + 20px line-height = 28px. */
	padding: 4px 0;
	min-height: 24px;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	transition: color .15s ease;
}
.pc-footer__legal a:hover,
.pc-footer__legal-btn:hover { color: var(--pc-white); }

/* ============================================================
 * Search form
 * ============================================================ */
.search-form {
	display: flex;
	gap: 8px;
	max-width: 600px;
	margin-inline: auto;
}
.search-form__input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-r);
	font: inherit;
	font-size: 16px;
	line-height: 24px;
	color: var(--pc-heading);
}
.search-form__input::placeholder { color: var(--pc-desc); }
.search-form__submit {
	padding: 12px 24px;
	border: 0;
	border-radius: var(--pc-r);
	background: var(--pc-primary);
	color: var(--pc-white);
	font-weight: 600;
	cursor: pointer;
}

/* ============================================================
 * Mobile
 * ============================================================ */
@media (max-width: 1100px) {
	.pc-header__inner { padding: 18px var(--pc-container-pad); gap: 16px; }
	.pc-header__search { width: 220px; }
	.pc-footer__inner { padding: 56px var(--pc-container-pad) 32px; }
	.pc-footer__bottom-inner { padding: 24px var(--pc-container-pad); }
}
@media (max-width: 960px) {
	.pc-header__inner {
		padding: 0 16px;
		gap: 8px;
		grid-template-columns: auto 1fr;
		height: 64px;
		align-items: center;
	}
	.pc-header__actions { justify-self: end; }
	.pc-header__logo { width: 120px; height: 32px; }
	.pc-header__actions { gap: 8px; height: 36px; }

	.pc-header__nav {
		position: fixed;
		inset: var(--pc-header-h, 64px) 0 0 0;
		background: var(--pc-white);
		display: block;
		visibility: hidden;
		justify-self: stretch;
		padding: 24px 16px 40px;
		z-index: 70;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		opacity: 0;
		transition: opacity .2s ease, visibility 0s linear .2s;
		pointer-events: none;
	}
	.pc-header__nav--open {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		transition: opacity .25s ease, visibility 0s linear 0s;
	}
	.pc-header__nav--open .pc-menu {
		flex-direction: column;
		gap: 0;
	}
	.pc-header__nav .pc-menu > li {
		opacity: 0;
		transform: translateX(-12px);
		transition: opacity .2s ease, transform .25s cubic-bezier(0.2, 0.7, 0.2, 1);
	}
	.pc-header__nav--open .pc-menu > li {
		opacity: 1;
		transform: translateX(0);
	}
	.pc-header__nav--open .pc-menu > li:nth-child(1) { transition-delay: .05s; }
	.pc-header__nav--open .pc-menu > li:nth-child(2) { transition-delay: .1s; }
	.pc-header__nav--open .pc-menu > li:nth-child(3) { transition-delay: .15s; }
	.pc-header__nav--open .pc-menu > li:nth-child(4) { transition-delay: .2s; }
	.pc-header__nav--open .pc-menu > li:nth-child(5) { transition-delay: .25s; }
	.pc-header__nav--open .pc-menu > li:nth-child(6) { transition-delay: .3s; }
	.pc-header__nav--open .pc-menu > li > a {
		padding: 18px 4px;
		font-size: 16px;
		line-height: 24px;
		/* Sharp 1px line - reset border-radius so no rounding inherits from
		 * the link itself, and tighten the color so the divider is visible
		 * but not heavy. */
		border-bottom: 1px solid rgba(28, 28, 25, 0.08);
		border-radius: 0;
		width: 100%;
		justify-content: space-between;
		transition: color .15s ease, padding-left .2s ease;
	}
	.pc-header__nav--open .pc-menu > li:last-child > a {
		border-bottom: 0;
	}
	.pc-header__nav--open .pc-menu > li > a:active {
		padding-left: 4px;
		color: var(--pc-primary);
	}
	.pc-header__nav--open .sub-menu a {
		transition: color .15s ease, padding-left .15s ease;
	}
	.pc-header__nav--open .sub-menu a:active {
		padding-left: 4px;
		color: var(--pc-primary);
	}
	.pc-header__nav--open .pc-menu > li.menu-item-has-children > a::after {
		margin-left: auto;
	}
	.pc-header__nav--open .sub-menu {
		position: static;
		opacity: 0;
		visibility: hidden;
		transform: none;
		box-shadow: none;
		border: 0;
		padding: 0 0 0 16px;
		min-width: 0;
		display: none;
		flex-direction: column;
		gap: 14px;
		max-height: 0;
		overflow: hidden;
	}
	.pc-header__nav--open .sub-menu {
		transition: max-height .3s cubic-bezier(0.2, 0.7, 0.2, 1), opacity .2s ease, padding .25s ease;
	}
	.pc-header__nav--open .pc-menu > li.is-open .sub-menu {
		display: flex;
		opacity: 1;
		visibility: visible;
		max-height: 500px;
		padding: 14px 0 18px 16px;
	}
	.pc-header__nav--open .sub-menu a { font-size: 15px; line-height: 22px; padding: 4px 0; display: inline-block; min-height: 24px; }
	.pc-header__nav--open .pc-menu > li.menu-item-has-children > a::after {
		transition: transform .15s ease;
	}
	.pc-header__nav--open .pc-menu > li.is-open > a::after {
		transform: rotate(180deg);
	}

	/* Loading state: link tapped, page loading. Drawer locked open until
	 * pageshow. Tapped link turns orange + a thin ring spinner appears next
	 * to it - confirms the tap on slow networks where the new page can take
	 * seconds to land. */
	.pc-header__nav--open.pc-header__nav--loading { pointer-events: none; }
	.pc-header__nav--open .pc-menu a.is-loading,
	.pc-header__nav--open .sub-menu a.is-loading {
		color: var(--pc-primary);
		padding-left: 4px;
		position: relative;
	}
	.pc-header__nav--open .pc-menu a.is-loading,
	.pc-header__nav--open .sub-menu a.is-loading {
		padding-left: 26px;
	}
	.pc-header__nav--open .pc-menu a.is-loading::before,
	.pc-header__nav--open .sub-menu a.is-loading::before {
		content: '';
		/* Absolute positions the spinner inside the link's padding-left gap.
		 * Use background-image with a CSS conic gradient masked into a ring
		 * shape - works around the blockified flex-item rendering that turned
		 * the bordered ::before into a filled orange dot on the link line. */
		position: absolute;
		left: 4px;
		top: 50%;
		margin-top: -8px;
		width: 16px;
		height: 16px;
		border-radius: 50%;
		background: conic-gradient(var(--pc-primary), rgba(255, 106, 0, 0));
		-webkit-mask: radial-gradient(circle 6px at center, transparent 5px, #000 6px);
		        mask: radial-gradient(circle 6px at center, transparent 5px, #000 6px);
		/* Lock the rotation axis to the box center. Some browsers infer
		 * transform-origin from the flow position of the pseudo's containing
		 * block (parent is inline-flex), giving 0px 8px and a wobbly spin. */
		transform-origin: 8px 8px;
		animation: pc-nav-spin .6s linear infinite;
	}

	/* Scroll lock when mobile nav drawer is open.
	 * IMPORTANT: lock on <html> only. body { overflow:hidden } kills the
	 * sticky header (sticky requires a scrollable ancestor). The matching JS
	 * sets document.documentElement.style.overflow = 'hidden'. */
	html.pc-nav-open-html {
		overflow: hidden;
	}
	body.pc-nav-open {
		touch-action: none;
	}

	.pc-header__menu-toggle {
		display: inline-flex;
		justify-self: end;
		position: relative;
		z-index: 75;
		width: 36px;
		height: 36px;
	}
	.pc-header__menu-toggle span {
		display: block;
		transition: transform .2s ease, opacity .15s ease;
		transform-origin: center;
	}
	.pc-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	.pc-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}
	.pc-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.pc-header__cta {
		padding: 6px 16px;
		font-size: 16px;
		line-height: 24px;
		height: 36px;
	}

	.pc-header__search-wrap { position: static; }
	.pc-header__search {
		width: 36px;
		height: 36px;
		padding: 8px;
		border: 0;
		background: transparent;
		border-radius: var(--pc-r);
	}
	.pc-header__search:focus-within {
		box-shadow: none;
		border: 0;
	}
	.pc-header__search-icon { color: var(--pc-heading); }
	.pc-header__search-input {
		position: absolute;
		left: -9999px;
		width: 1px;
		height: 1px;
		opacity: 0;
		pointer-events: none;
	}
	.pc-header__search-wrap[data-pc-mobile-open="true"] {
		position: fixed;
		left: 16px;
		right: 16px;
		top: calc(var(--pc-header-h, 64px) + 8px);
		z-index: 80;
	}
	.pc-header__search-wrap[data-pc-mobile-open="true"] .pc-header__search {
		width: 100%;
		height: 36px;
		padding: 8px 16px;
		border: 1px solid rgba(168, 166, 165, 0.5);
		background: var(--pc-white);
	}
	.pc-header__search-wrap[data-pc-mobile-open="true"] .pc-header__search-input {
		position: static;
		width: auto;
		height: auto;
		opacity: 1;
		pointer-events: auto;
		flex: 1;
	}
	.pc-header__search-wrap[data-pc-mobile-open="true"] .pc-header__search-panel {
		position: fixed;
		left: 16px;
		right: 16px;
		top: calc(var(--pc-header-h, 64px) + 8px + 36px + 8px);
		width: auto;
		min-width: 0;
		max-width: none;
		max-height: calc(100vh - var(--pc-header-h, 64px) - 60px);
		overflow-y: auto;
		border-radius: var(--pc-r);
	}

	.pc-header__user-toggle { height: 36px; gap: 2px; }
	.pc-header__user-avatar { width: 36px; height: 36px; }
	.pc-header__user-caret { display: none; }
	.pc-header__user-menu {
		right: 0;
		left: auto;
		min-width: 200px;
	}

	.pc-footer__inner { grid-template-columns: 1fr 1fr; gap: 24px 24px; padding: 32px 16px 24px; }
	.pc-footer__brand { grid-column: 1 / -1; margin-bottom: 0; }
	.pc-footer__brand .pc-footer__logo { width: 130px; height: 36px; margin-bottom: 8px; }
	.pc-footer__about { font-size: 13px; line-height: 20px; margin-bottom: 12px; }
	.pc-footer__social a { width: 32px; height: 32px; }
	.pc-footer__col-title { font-size: 13px; margin-bottom: 8px; }
	.pc-footer__menu { gap: 6px; }
	.pc-footer__menu a { font-size: 13px; line-height: 20px; }

	.pc-button {
		padding: 0 16px;
		font-size: 14px;
		line-height: 22px;
		height: 40px;
	}
	.pc-header__cta {
		padding: 0 16px;
		font-size: 14px;
		line-height: 22px;
		height: 40px;
	}
	.pc-newsletter__form--email > .pc-button { padding: 0 16px; height: 40px; }
	.pc-newsletter__btn-block { padding: 0 16px; height: 40px; }
}
@media (max-width: 560px) {
	.pc-footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────  Terms consent modal  ───────────────────────── */
.pc-terms {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.pc-terms[hidden] { display: none; }
.pc-terms__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	animation: pc-fade-in 200ms ease;
}
.pc-terms__card {
	position: relative;
	width: 100%;
	max-width: 520px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	animation: pc-zoom-in 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pc-terms__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(28, 28, 25, 0.06);
	color: #1c1c19;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	padding: 0;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.pc-terms__close:hover {
	background: #1c1c19;
	color: #fff;
	transform: scale(1.05);
}
.pc-terms__close:focus-visible {
	outline: 2px solid #ff6a00;
	outline-offset: 2px;
}
.pc-terms__head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px 16px;
	border-bottom: 1px solid rgba(28, 28, 25, 0.08);
}
.pc-terms__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: rgba(255, 106, 0, 0.1);
	color: #ff6a00;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pc-terms__title {
	font-family: var(--pc-font);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.25;
	color: #1c1c19;
	margin: 0;
	letter-spacing: -0.01em;
}
.pc-terms__sub {
	font-family: var(--pc-font);
	font-size: 12px;
	color: #746a66;
	margin: 4px 0 0;
}
.pc-terms__body {
	padding: 18px 22px;
	background: rgba(28, 28, 25, 0.025);
	max-height: 38vh;
	overflow-y: auto;
}
.pc-terms__body p {
	font-family: var(--pc-font);
	font-size: 14px;
	line-height: 1.55;
	color: rgba(28, 28, 25, 0.78);
	margin: 0 0 12px;
}
.pc-terms__body p:last-child { margin: 0; }
.pc-terms__strong { color: #1c1c19; font-weight: 600; }
.pc-terms__list {
	list-style: none;
	padding: 0;
	margin: 0 0 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pc-terms__list li {
	display: flex;
	gap: 8px;
	font-family: var(--pc-font);
	font-size: 14px;
	line-height: 1.5;
	color: rgba(28, 28, 25, 0.78);
}
.pc-terms__list li span {
	color: #ff6a00;
	flex-shrink: 0;
}
.pc-terms__list a { color: #ff6a00; font-weight: 600; }
.pc-terms__note {
	background: rgba(255, 106, 0, 0.08);
	border: 1px solid rgba(255, 106, 0, 0.2);
	border-radius: 8px;
	padding: 12px 14px;
	margin-top: 12px;
}
.pc-terms__note p {
	font-size: 12px;
	color: rgba(28, 28, 25, 0.7);
	margin: 0;
}
.pc-terms__foot {
	padding: 16px 22px 20px;
	border-top: 1px solid rgba(28, 28, 25, 0.08);
}
.pc-terms__check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 14px;
	cursor: pointer;
}
.pc-terms__check input {
	flex-shrink: 0;
	margin-top: 2px;
	width: 16px;
	height: 16px;
	accent-color: #ff6a00;
}
.pc-terms__check span {
	font-family: var(--pc-font);
	font-size: 13px;
	line-height: 1.45;
	color: rgba(28, 28, 25, 0.78);
}
.pc-terms__check a {
	color: #ff6a00;
	font-weight: 600;
}
.pc-terms__accept {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pc-terms__accept:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.pc-terms__hint {
	margin: 8px 0 0;
	font-family: var(--pc-font);
	font-size: 11px;
	color: rgba(28, 28, 25, 0.5);
	text-align: center;
}

@keyframes pc-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes pc-zoom-in {
	from { opacity: 0; transform: scale(0.95); }
	to   { opacity: 1; transform: scale(1);    }
}

/* ─────────────────────────  Cookies toaster - bottom-right compact  ───────────────────────── */
.pc-cookies {
	position: fixed;
	right: 16px;
	bottom: 16px;
	left: auto;
	z-index: 999;
	padding: 0;
	pointer-events: none;
	animation: pc-slide-up 320ms cubic-bezier(0.4, 0, 0.2, 1);
	max-width: 360px;
	width: calc(100vw - 32px);
}
.pc-cookies[hidden] { display: none; }
.pc-cookies__card {
	pointer-events: auto;
	background: #fff;
	border: 1px solid rgba(28, 28, 25, 0.1);
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
}
.pc-cookies__copy {
	flex: 1;
	min-width: 0;
}
.pc-cookies__title {
	font-family: var(--pc-font);
	font-weight: 700;
	font-size: 14px;
	color: #1c1c19;
	margin: 0 0 4px;
	letter-spacing: -0.005em;
}
.pc-cookies__sub {
	font-family: var(--pc-font);
	font-size: 12px;
	line-height: 1.5;
	color: rgba(28, 28, 25, 0.7);
	margin: 0;
}
.pc-cookies__actions {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}
.pc-cookies__accept {
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 600;
}
.pc-cookies__decline {
	background: transparent;
	border: none;
	/* WCAG AA on white: rgba(28,28,25,0.6) flattens to ~4.50 which is at the
	 * threshold and Lighthouse rounds down to fail. Use opaque mid-grey for
	 * a comfortable 4.8:1 ratio. */
	color: #6a6a68;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 12px;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	padding: 4px 6px;
}
.pc-cookies__decline:hover { color: #1c1c19; }

@keyframes pc-slide-up {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
	.pc-cookies__card {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		padding: 16px;
	}
	.pc-cookies__actions {
		justify-content: space-between;
	}
}


/* Newsletter / lead-capture form status - shared across pages */
.pc-newsletter__status {
	width: 100%;
	min-height: 20px;
	margin: 4px 0 0;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: var(--pc-desc);
}
.pc-newsletter__status:empty { display: none; }
.pc-newsletter__status[data-kind="ok"]  { color: #1b7a3e; }
.pc-newsletter__status[data-kind="err"] { color: #c1351a; }

/* Header inline search dropdown */
.pc-header__search-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
}
.pc-header__search-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: auto;
	width: 100%;
	min-width: 330px;
	background: #fff;
	border: 1px solid rgba(168, 166, 165, 0.4);
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	padding: 12px;
	z-index: 1000;
	max-height: min(70vh, 540px);
	overflow-y: auto;
	scrollbar-gutter: stable;
}
.pc-header__search-section + .pc-header__search-section { margin-top: 12px; }
.pc-header__search-cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 12px;
}
.pc-header__search-cols[hidden] { display: none !important; }
/* Collapse to 1 col when only one child visible */
.pc-header__search-cols:has(> .pc-header__search-col[hidden]) {
	grid-template-columns: 1fr;
}
.pc-header__search-section[hidden],
.pc-header__search-empty[hidden] {
	display: none !important;
}
.pc-header__search-col { margin: 0 !important; min-width: 0; }
.pc-header__search-col[hidden] { display: none; }
@media (max-width: 720px) {
	.pc-header__search-cols { grid-template-columns: 1fr; gap: 12px; }
}
.pc-header__search-top-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.pc-header__search-top-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--pc-heading);
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 13px;
	transition: background-color .15s ease;
}
.pc-header__search-top-item:hover { background: #f6f4f2; }
.pc-header__search-top-icon {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: rgba(255, 106, 0, 0.10);
	color: var(--pc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pc-header__search-top-label {
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.pc-header__search-top-count {
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 600;
	color: var(--pc-desc);
	background: rgba(17, 17, 16, 0.05);
	padding: 2px 7px;
	border-radius: 999px;
}
.pc-header__search-section-title--top { color: var(--pc-primary); }
.pc-header__search-section-title--top svg { color: var(--pc-primary); }
.pc-header__search-section-title {
	font-family: var(--pc-font);
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pc-desc);
	margin: 0 0 8px;
	padding: 0 8px;
}
.pc-header__search-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.pc-header__search-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--pc-heading);
	transition: background-color .15s ease;
}
.pc-header__search-item:hover { background: #f6f4f2; }
.pc-header__search-thumb {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #eee;
	/* Anchor near the top of the portrait so the face stays visible in the
	 * 36px circle. Use individual props so .pc-skel's `background` shorthand
	 * (when stacked on this element) does not wipe these out. */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 25%;
}
/* Skeleton row shown while the search index is fetching */
.pc-header__search-skel-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	pointer-events: none;
}
.pc-header__search-skel-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
	min-width: 0;
}
.pc-header__search-skel-line {
	height: 12px;
	width: 70%;
	border-radius: 4px;
}
.pc-header__search-skel-line--short { width: 40%; height: 10px; }
/* When the thumb is also a .pc-skel during load, the shimmer base color wins,
 * but as soon as JS swaps in the real image we want the portrait size + anchor
 * preserved. Bumping specificity by stacking the two classes ensures the
 * sizing rules survive .pc-skel's `background: #ece9e5` shorthand. */
.pc-header__search-thumb.pc-skel.is-loaded {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 25%;
}
.pc-header__search-thumb--ph {
	background: linear-gradient(135deg, #ffd9bf 0%, #ff9a5c 100%);
}
.pc-header__search-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.pc-header__search-name {
	font-family: var(--pc-font);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: var(--pc-heading);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.pc-header__search-meta {
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	color: var(--pc-desc);
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 6px;
	min-width: 0;
	overflow: hidden;
}
.pc-header__search-meta > span { flex-shrink: 0; }
.pc-header__search-meta > span:first-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}
.pc-header__search-dot { color: rgba(17, 17, 16, 0.30); }
.pc-header__search-mini-theme {
	display: inline-block;
	background: rgba(107, 70, 193, 0.10);
	color: #6b46c1;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 1px 7px;
	border-radius: 999px;
	line-height: 16px;
}
.pc-header__search-mini-theme--more {
	background: rgba(17, 17, 16, 0.06);
	color: rgba(17, 17, 16, 0.6);
	cursor: help;
}
.pc-header__search-section-title--trending {
	color: #00A86B;
}
.pc-header__search-section-title--trending svg { color: #00A86B; }
.pc-header__search-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 4px;
}
.pc-header__search-chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border: 1px solid rgba(168, 166, 165, 0.5);
	border-radius: 999px;
	background: #fff;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 13px;
	line-height: 18px;
	color: var(--pc-heading);
	text-decoration: none;
	transition: border-color .15s ease, color .15s ease;
}
.pc-header__search-chip:hover {
	border-color: var(--pc-primary);
	color: var(--pc-primary);
}
.pc-header__search-empty {
	padding: 0;
}
.pc-header__search-empty-head {
	padding: 12px 12px 8px;
	background: rgba(17, 17, 16, 0.02);
	border-bottom: 1px solid rgba(17, 17, 16, 0.08);
	margin: -4px -4px 8px;
	border-radius: 8px 8px 0 0;
}
.pc-header__search-empty-line {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--pc-font);
	font-size: 13px;
	color: rgba(17, 17, 16, 0.7);
}
.pc-header__search-empty-line svg {
	flex: 0 0 auto;
	color: rgba(17, 17, 16, 0.45);
}
.pc-header__search-empty-cta {
	margin: 4px 0 0 22px;
	font-family: var(--pc-font);
	font-size: 12px;
	font-weight: 600;
	color: var(--pc-primary);
	letter-spacing: 0.02em;
}
.pc-header__search-empty .pc-header__search-list {
	margin: 0;
}
.pc-header__search-all {
	display: block;
	margin-top: 12px;
	padding: 10px 8px;
	border-top: 1px solid rgba(168, 166, 165, 0.25);
	font-family: var(--pc-font);
	font-weight: 600;
	font-size: 13px;
	line-height: 18px;
	color: var(--pc-primary);
	text-decoration: none;
	text-align: center;
}
.pc-header__search-all:hover { text-decoration: underline; }

/* ===== Universal image fade-in ===== */
img.pc-img-fade {
	opacity: 0;
	transition: opacity .4s ease;
}
img.pc-img-fade.pc-img-loaded { opacity: 1; }

/* ===== Back-to-top button ===== */
.pc-back-to-top {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 998;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	background: var(--pc-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s, background-color .15s ease;
	box-shadow: 0 6px 16px rgba(255, 106, 0, 0.4);
}
.pc-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pc-back-to-top:hover { background: #e55a00; }
.pc-back-to-top:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}
/* Don't overlap cookie banner */
.pc-cookies:not([hidden]) ~ .pc-back-to-top.is-visible {
	bottom: 200px;
}
/* Hide the back-to-top FAB while the mobile nav drawer is open - otherwise
 * the orange circle sits on top of the white drawer at z-index 998. */
html.pc-nav-open-html .pc-back-to-top,
body.pc-nav-open .pc-back-to-top {
	display: none !important;
}
@media (max-width: 480px) {
	.pc-back-to-top { right: 12px; bottom: 12px; }
}

/* Note: button transform handled by JS magnetic effect; transition stays on bg/color/shadow only.
   Buttons no longer translate on hover - cursor moves toward them instead. */

/* ===== Page fade-in on load ===== */
html:not(.pc-loaded) body {
	opacity: 0;
}
html.pc-loaded body {
	opacity: 1;
	transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
	html:not(.pc-loaded) body { opacity: 1; }
	html.pc-loaded body { transition: none; }
}

/* ===== Hero stats divider - subtle pulse ===== */
.pc-hero__stats {
	position: relative;
}
.pc-hero__stats > li + li::before {
	animation: pc-divider-pulse 4s ease-in-out infinite;
}
@keyframes pc-divider-pulse {
	0%, 100% { opacity: 0.3; }
	50%      { opacity: 0.7; }
}
@media (prefers-reduced-motion: reduce) {
	.pc-hero__stats > li + li::before { animation: none; }
}

/* ===== Premium custom cursor - orange brand, dual-element trail ===== */
.pc-cursor-root {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
}
.pc-cursor {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	will-change: transform, width, height, background-color, border-color;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Dot - small filled, near-instant follow */
.pc-cursor--dot {
	width: 8px;
	height: 8px;
	background: var(--pc-primary);
	border-radius: 50%;
	transition: opacity .2s ease, background-color .25s ease, width .25s cubic-bezier(0.2, 0.7, 0.2, 1), height .25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
/* Ring - large outline, lerp trail */
.pc-cursor--ring {
	width: 40px;
	height: 40px;
	border: 1.5px solid var(--pc-primary);
	border-radius: 999px;
	background: transparent;
	transition: width .3s cubic-bezier(0.2, 0.7, 0.2, 1),
		height .3s cubic-bezier(0.2, 0.7, 0.2, 1),
		border-color .25s ease,
		background-color .25s ease,
		opacity .25s ease;
	mix-blend-mode: normal;
}
.pc-cursor__label {
	font-family: var(--pc-font);
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.02em;
	opacity: 0;
	transform: scale(0.85);
	transition: opacity .2s ease, transform .25s cubic-bezier(0.2, 0.7, 0.2, 1);
	white-space: nowrap;
}
/* Hidden until pointer enters */
body:not(.pc-cursor-active) .pc-cursor { opacity: 0; }
body.pc-cursor-active .pc-cursor { opacity: 1; }

/* State: link hover - ring grows, dot vanishes */
body.pc-cursor--link .pc-cursor--ring {
	width: 56px;
	height: 56px;
	background: rgba(255, 106, 0, 0.08);
}
body.pc-cursor--link .pc-cursor--dot { opacity: 0; }

/* State: primary CTA hover - invert to white (visible on orange BG) */
body.pc-cursor--primary .pc-cursor--ring {
	width: 56px;
	height: 56px;
	border-color: #fff;
	background: rgba(255, 255, 255, 0.18);
}
body.pc-cursor--primary .pc-cursor--dot {
	background: #fff;
	opacity: 0;
}

/* State: card hover - large filled circle with "View" label */
body.pc-cursor--card .pc-cursor--ring {
	width: 96px;
	height: 96px;
	background: var(--pc-primary);
	border-color: var(--pc-primary);
}
body.pc-cursor--card .pc-cursor__label {
	opacity: 1;
	transform: scale(1);
}
body.pc-cursor--card .pc-cursor--dot { opacity: 0; }

/* State: press feedback - ring shrinks */
body.pc-cursor--down .pc-cursor--ring {
	transform-origin: center;
	scale: 0.85;
}

/* Hide native cursor on hover-capable devices when active */
@media (hover: hover) and (pointer: fine) {
	html.pc-has-cursor body.pc-cursor-active,
	html.pc-has-cursor body.pc-cursor-active * {
		cursor: none !important;
	}
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
	.pc-cursor-root { display: none !important; }
}

/* ===== CTA hover - lift + sliding fill + icon nudge ===== */
.pc-button {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition:
		color .3s cubic-bezier(0.4, 0, 0.2, 1),
		border-color .3s cubic-bezier(0.4, 0, 0.2, 1),
		transform .4s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow .4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}
/* Sliding fill - origin flip
 * Hover: enters from LEFT (origin left, scaleX 0→1)
 * Un-hover: exits to RIGHT (origin flips to right, scaleX 1→0)
 */
.pc-button::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--pc-primary);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .45s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}
.pc-button:hover::before {
	transform: scaleX(1);
	transform-origin: left center;
}
/* On un-hover, flip origin to RIGHT so scaleX 1→0 collapses TO the right */
.pc-button:not(:hover)::before {
	transform-origin: right center;
}
.pc-button:hover { transform: translateY(-2px); }

/* Primary - orange base, slightly-darker orange sweep (subtle theme shift) */
.pc-button--primary {
	background: var(--pc-primary);
	box-shadow: 0 4px 12px rgba(255, 106, 0, 0.16);
}
.pc-button--primary::before { background: #d65800; }
.pc-button--primary:hover {
	color: var(--pc-white);
	box-shadow: 0 12px 28px rgba(255, 106, 0, 0.42);
}

/* Outline - fill from left with primary on hover */
.pc-button--outline { background: var(--pc-white); }
.pc-button--outline:hover {
	color: var(--pc-white);
	border-color: var(--pc-primary);
	box-shadow: 0 12px 28px rgba(255, 106, 0, 0.22);
}

/* Dark - fill from left with deeper shade */
.pc-button--dark::before { background: rgba(17, 17, 16, 0.85); }
.pc-button--dark:hover {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* Icon nudge inside CTA */
.pc-button svg,
.pc-button .pc-button__icon {
	transition: transform .3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pc-button:hover svg,
.pc-button:hover .pc-button__icon {
	transform: translateX(3px);
}

.pc-button.is-pressing {
	transform: translateY(-2px) scale(0.96);
	transition-duration: .12s;
}

@media (prefers-reduced-motion: reduce) {
	.pc-button,
	.pc-button::before,
	.pc-button svg,
	.pc-button .pc-button__icon {
		transition: none !important;
		transform: none !important;
	}
	.pc-button:hover { transform: none; }
}

/* ===== Universal CTA hover - applies to all custom button classes site-wide ===== */
.pc-denied__btn,
.pc-founders__cta-btn,
.pc-auth__submit,
.pc-newsletter__btn-block,
.pc-profile__btn-upload,
.pc-profile__btn-delete,
.pc-profile__submit,
.pc-report__cta {
	transition:
		color .3s cubic-bezier(0.4, 0, 0.2, 1),
		background-color .3s cubic-bezier(0.4, 0, 0.2, 1),
		border-color .3s cubic-bezier(0.4, 0, 0.2, 1),
		transform .4s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow .4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	will-change: transform;
}
.pc-denied__btn:hover,
.pc-founders__cta-btn:hover,
.pc-auth__submit:hover,
.pc-newsletter__btn-block:hover:not(:disabled),
.pc-profile__btn-upload:hover,
.pc-profile__btn-delete:hover,
.pc-profile__submit:hover,
.pc-report__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(255, 106, 0, 0.32);
}

@media (prefers-reduced-motion: reduce) {
	.pc-denied__btn, .pc-founders__cta-btn, .pc-auth__submit,
	.pc-newsletter__btn-block, .pc-profile__btn-upload, .pc-profile__btn-delete,
	.pc-profile__submit, .pc-report__cta {
		transition: none !important;
		transform: none !important;
	}
}

/* ===== Header link hover - underline slide ===== */
.pc-menu > li > a {
	position: relative;
	transition: color .2s ease;
}
.pc-menu > li > a::before {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 4px;
	height: 2px;
	background: var(--pc-primary);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .3s cubic-bezier(0.2, 0.7, 0.2, 1);
	border-radius: 2px;
}
.pc-menu > li > a:hover::before,
.pc-menu > li > a:focus-visible::before { transform: scaleX(1); }
.pc-menu > li.menu-item-has-children > a::before { display: none; }

/* Footer menu link hover */
.pc-footer__menu a {
	display: inline-block;
	transition: color .2s ease, transform .2s ease;
}
.pc-footer__menu a:hover {
	transform: translateX(4px);
}

/* ===== Header scroll shrink + blur ===== */
.pc-header {
	transition: padding .25s cubic-bezier(0.2, 0.7, 0.2, 1),
		background-color .25s ease,
		box-shadow .25s ease;
}
@media (min-width: 961px) {
	.pc-header.is-scrolled .pc-header__inner {
		padding-top: 12px;
		padding-bottom: 12px;
	}
}
.pc-header.is-scrolled {
	background: #ffffff;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	border-bottom-color: transparent;
}
.pc-header__inner {
	transition: padding .25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (min-width: 961px) {
	.pc-header.is-scrolled .pc-header__logo {
		width: 124px;
		height: 34px;
		transition: width .25s, height .25s;
	}
}
.pc-header__logo {
	transition: width .25s cubic-bezier(0.2, 0.7, 0.2, 1), height .25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ===== Sitewide focus-visible - keyboard rings ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--pc-primary);
	outline-offset: 2px;
	border-radius: 4px;
}
.pc-button:focus-visible {
	outline-offset: 3px;
}
/* Inputs whose wrapper already shows a focus ring - kill the inner outline to prevent double border */
.pc-header__search-input:focus,
.pc-header__search-input:focus-visible,
.pc-newsletter__input:focus,
.pc-newsletter__input:focus-visible,
.pc-archive__search-input:focus,
.pc-archive__search-input:focus-visible,
.pc-auth__input-bare:focus,
.pc-auth__input-bare:focus-visible,
.pc-submit__input-bare:focus,
.pc-submit__input-bare:focus-visible,
.pc-auth__input:focus,
.pc-auth__input:focus-visible,
.pc-auth__input--tel:focus,
.pc-auth__input--tel:focus-visible,
.pc-submit__input:focus,
.pc-submit__input:focus-visible,
.pc-submit__textarea:focus,
.pc-submit__textarea:focus-visible {
	outline: 0 !important;
}

/* ===== Footer social hover - smoother ===== */
.pc-footer__social a {
	transition: background .25s ease, color .2s ease, border-color .2s ease, transform .25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pc-footer__social a:hover {
	transform: translateY(-2px);
}

/* ===== Cursor on orange CTA - switch to white ring/dot for visibility ===== */
body.pc-cursor-on-primary .pc-cursor--ring {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.18);
}
body.pc-cursor-on-primary .pc-cursor--dot {
	background: #fff;
}

/* ===== Smoother global hover transitions - anti-jerk ===== */
.pc-button {
	transition: background .35s cubic-bezier(0.2, 0.7, 0.2, 1),
		color .3s cubic-bezier(0.2, 0.7, 0.2, 1),
		border-color .3s cubic-bezier(0.2, 0.7, 0.2, 1),
		box-shadow .35s cubic-bezier(0.2, 0.7, 0.2, 1);
	/* transform NOT in transition - magnetic JS lerps it instead */
}
.pc-menu > li > a {
	transition: color .3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pc-menu > li > a::before {
	transition: transform .35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pc-footer__menu a {
	transition: color .3s cubic-bezier(0.2, 0.7, 0.2, 1), transform .3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pc-footer__social a {
	transition: background .3s ease, color .25s ease, border-color .25s ease, transform .3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pc-header__search-chip,
.pc-header__search-item {
	transition: all .25s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
}

/* When pointer is inside text input - hide custom cursor, restore native I-beam */
body.pc-cursor--text .pc-cursor { opacity: 0 !important; }
body.pc-cursor--text input,
body.pc-cursor--text textarea,
body.pc-cursor--text [contenteditable="true"],
body.pc-cursor--text input *,
body.pc-cursor--text textarea * {
	cursor: text !important;
}
body.pc-cursor--text {
	cursor: text !important;
}

/* Mobile nav loading spinner keyframes. Kept at top level (not inside
 * @media (max-width: 960px)) so the animation is always registered and the
 * spinner ::before actually rotates. */
@keyframes pc-nav-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}
