/*
Theme Name: Pointalize Minimal
Theme URI: https://pointalize.com
Author: Phillip Rosenheinrich
Description: Minimal frame theme for pointalize.com (rosenheinrich-style). Page content is edited in WordPress.
Version: 1.4.3
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pointalize-minimal
*/

html {
	background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 40%, #f8fafc 100%);
	background-color: #ffffff;
}

body {
	color: #1a1a1a;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.plz-skip-link {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 100000;
	padding: 0.5rem 0.85rem;
	border-radius: 6px;
	background: #0f766e;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transform: translateY(-200%);
	transition: transform 0.15s ease;
}

.plz-skip-link:focus {
	transform: translateY(0);
	outline: 2px solid #14b8a6;
	outline-offset: 2px;
}

.plz-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

a:focus-visible,
.plz-site-nav__lang:focus-visible,
.plz-site-footer a:focus-visible,
.plz-menu__link:focus-visible,
.plz-menu__sub-link:focus-visible,
.plz-nav-toggle:focus-visible {
	outline: 2px solid #14b8a6;
	outline-offset: 3px;
	border-radius: 4px;
}

.plz-main {
	min-height: 100vh;
}

body.plz-front-page .plz-main {
	min-height: calc(100dvh - var(--plz-header-height, 60px));
	min-height: calc(100svh - var(--plz-header-height, 60px));
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	overflow-anchor: none;
}

body.plz-front-page .plz-page-content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
	padding: 0;
}

.plz-main,
.plz-page-content,
.entry-content,
.wp-block-post-content,
.wp-block-html {
	margin: 0;
	padding: 0;
}

/* —— Site header & navigation —— */

:root {
	--plz-accent: #008080;
	--plz-accent-hover: #0f766e;
	--plz-header-height: 60px;
	--plz-content-max-width: 1180px;
}

body.plz-nav-open {
	overflow: hidden;
}

.plz-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
}

.plz-site-header__bar {
	background: #ffffff;
	border-bottom: 1px solid #ececec;
	box-shadow: 0 1px 0 rgba(15, 118, 110, 0.04);
}

.plz-site-header__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	max-width: var(--plz-content-max-width);
	min-height: var(--plz-header-height);
	margin: 0 auto;
	padding-top: max(0px, env(safe-area-inset-top, 0px));
	padding-bottom: 0;
	padding-left: max(clamp(1rem, 3vw, 1.5rem), env(safe-area-inset-left, 0px));
	padding-right: max(clamp(1rem, 3vw, 1.5rem), env(safe-area-inset-right, 0px));
}

.plz-site-header__left {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-shrink: 0;
}

.plz-site-header__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	text-decoration: none;
}

.plz-site-header__logo img {
	display: block;
	width: auto;
	height: 50px;
	max-height: 50px;
}

.plz-site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
	flex-shrink: 0;
	margin-left: auto;
	min-width: 0;
}

.plz-site-header__auth {
	display: flex;
	align-items: center;
	min-width: 0;
}

.plz-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #313131;
	cursor: pointer;
}

.plz-nav-toggle__icon {
	display: grid;
	gap: 5px;
	width: 20px;
}

.plz-nav-toggle__line {
	display: block;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

body.plz-nav-open .plz-nav-toggle__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.plz-nav-open .plz-nav-toggle__line:nth-child(2) {
	opacity: 0;
}

body.plz-nav-open .plz-nav-toggle__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.plz-nav--desktop {
	display: flex;
	flex: 1 1 auto;
	justify-content: center;
	min-width: 0;
}

.plz-menu {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.plz-menu--desktop {
	flex-wrap: wrap;
	justify-content: center;
}

.plz-menu__item {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.plz-menu--desktop .plz-menu__item {
	margin-right: 1.75rem;
}

.plz-menu--desktop .plz-menu__item:last-child {
	margin-right: 0;
}

.plz-menu__link {
	position: relative;
	display: inline-block;
	padding: 0 0.15rem;
	color: #313131;
	font-size: 12px;
	font-weight: 600;
	line-height: var(--plz-header-height);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.plz-menu__link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: calc(50% - 12px);
	width: 0;
	height: 2px;
	background: var(--plz-accent);
	transition: left 0.2s ease, width 0.2s ease;
}

.plz-menu__item.is-active > .plz-menu__link,
.plz-menu__item.is-current > .plz-menu__link,
.plz-menu__link:hover,
.plz-menu__link:focus-visible {
	color: var(--plz-accent);
}

.plz-menu__item.is-active > .plz-menu__link::after,
.plz-menu__item.is-current > .plz-menu__link::after,
.plz-menu__link:hover::after,
.plz-menu__link:focus-visible::after {
	left: 0;
	width: 100%;
}

.plz-menu--desktop .plz-menu__sub {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(100% - 4px);
	left: 0;
	z-index: 20;
	min-width: 220px;
	margin: 0;
	padding: 0.35rem 0 0;
	list-style: none;
	background: #ffffff;
	border: 1px solid #ececec;
	border-top: 1px solid #ececec;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(8px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
	pointer-events: none;
}

.plz-menu--desktop .plz-menu__item.has-children:hover > .plz-menu__sub,
.plz-menu--desktop .plz-menu__item.has-children:focus-within > .plz-menu__sub {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.plz-menu__sub-link {
	display: block;
	padding: 0.75rem 1.25rem;
	color: #313131;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	border-bottom: 1px solid #e8e8e8;
	transition: color 0.2s ease, background 0.2s ease;
}

.plz-menu__sub-item:last-child .plz-menu__sub-link {
	border-bottom: 0;
}

.plz-menu__sub-item.is-current > .plz-menu__sub-link,
.plz-menu__sub-link:hover,
.plz-menu__sub-link:focus-visible {
	color: var(--plz-accent);
	background: rgba(0, 128, 128, 0.06);
}

.plz-mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 1001;
}

.plz-mobile-drawer[hidden] {
	display: none !important;
}

.plz-mobile-drawer__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(15, 23, 42, 0.45);
	cursor: pointer;
}

.plz-mobile-drawer__panel {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	width: min(330px, 88vw);
	height: 100%;
	padding: 1rem 1.25rem 1.5rem;
	background: #ffffff;
	box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
	overflow-y: auto;
}

.plz-mobile-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #ececec;
}

.plz-mobile-drawer__logo {
	line-height: 0;
}

.plz-mobile-drawer__logo img {
	height: 40px;
	width: auto;
}

.plz-mobile-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #313131;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

.plz-nav--mobile {
	flex: 1 1 auto;
	min-height: 0;
	width: 100%;
}

.plz-mobile-drawer .plz-menu.plz-menu--mobile,
.plz-nav--mobile .plz-menu.plz-menu--mobile {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	width: 100% !important;
	gap: 0 !important;
	flex-wrap: nowrap !important;
}

.plz-mobile-drawer .plz-menu--mobile > .plz-menu__item,
.plz-nav--mobile .plz-menu--mobile > .plz-menu__item {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
}

.plz-menu--mobile {
	flex-direction: column !important;
	align-items: stretch !important;
	flex-wrap: nowrap;
	width: 100%;
}

.plz-menu--mobile > .plz-menu__item {
	border-bottom: 1px solid #dedede;
}

.plz-menu--mobile .plz-menu__item {
	border-bottom: 1px solid #dedede;
}

.plz-menu--mobile .plz-menu__row {
	display: flex;
	align-items: stretch;
}

.plz-menu--mobile .plz-menu__link {
	flex: 1 1 auto;
	display: block;
	padding: 0.9rem 0;
	line-height: 1.35 !important;
	font-size: 13px;
	text-transform: uppercase;
	white-space: normal;
}

.plz-nav--mobile .plz-menu--mobile .plz-menu__link {
	line-height: 1.35 !important;
	white-space: normal;
}

.plz-menu--mobile .plz-menu__link::after {
	display: none;
}

.plz-menu__expand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	border: 0;
	border-left: 1px solid #ececec;
	background: transparent;
	color: #64748b;
	cursor: pointer;
}

.plz-menu__chevron {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.2s ease;
}

.plz-menu__expand[aria-expanded="true"] .plz-menu__chevron {
	transform: rotate(-135deg) translateY(2px);
}

.plz-menu--mobile .plz-menu__sub {
	margin: 0;
	padding: 0;
	list-style: none;
	background: #f8fafc;
	border-top: 1px solid #ececec;
}

.plz-menu--mobile .plz-menu__sub[hidden] {
	display: none !important;
}

.plz-menu--mobile .plz-menu__sub:not([hidden]) {
	display: block;
}

.plz-menu--mobile .plz-menu__sub .plz-menu__sub-item {
	border-bottom: 1px solid #ececec;
}

.plz-menu--mobile .plz-menu__sub .plz-menu__sub-item:last-child {
	border-bottom: 0;
}

.plz-menu--mobile .plz-menu__sub-link {
	display: block;
	padding: 0.75rem 1rem 0.75rem 1.25rem;
	border-bottom: 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	text-transform: none;
	white-space: normal;
}

.plz-mobile-drawer__langs {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #ececec;
}

.plz-site-nav__langs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.35rem;
	margin: 0;
}

.plz-site-nav__lang {
	display: inline-block;
	padding: 0.22rem 0.55rem;
	border-radius: 6px;
	color: #64748b;
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	transition: color 0.2s ease, background 0.2s ease;
}

.plz-site-nav__lang:hover {
	color: var(--plz-accent);
	background: rgba(0, 128, 128, 0.08);
}

.plz-site-nav__lang.is-active {
	color: var(--plz-accent);
	background: rgba(0, 128, 128, 0.12);
}

@media (max-width: 1023px) {
	.plz-site-header__inner {
		display: grid;
		grid-template-columns: 44px 1fr 44px;
		align-items: center;
		gap: 0;
		padding-left: max(1rem, env(safe-area-inset-left, 0px));
		padding-right: max(1rem, env(safe-area-inset-right, 0px));
	}

	.plz-site-header__left {
		display: contents;
	}

	.plz-nav-toggle {
		display: inline-flex;
		grid-column: 1;
		justify-self: center;
	}

	.plz-site-header__logo {
		position: static;
		transform: none;
		grid-column: 2;
		justify-self: center;
	}

	.plz-site-header__actions {
		grid-column: 3;
		justify-self: center;
		margin-left: 0;
		min-width: 0;
		max-width: none;
		width: 44px;
	}

	.plz-site-header__auth {
		justify-content: flex-end;
	}

	.plz-site-header__auth .pointalize-auth-buttons {
		width: auto !important;
		flex-direction: row !important;
		align-items: center !important;
	}

	.plz-site-header__auth .plz-auth-signed-out,
	.plz-site-header__auth .plz-auth-signed-in,
	.plz-site-header__auth .plz-auth-avatar-menu {
		width: auto !important;
		margin: 0 !important;
	}

	.plz-site-header__auth .plz-auth-avatar-trigger,
	.plz-site-header__auth .plz-auth-entry-btn {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		flex: 0 0 44px !important;
		width: 44px !important;
		min-width: 44px !important;
		max-width: 44px !important;
		height: 44px !important;
		min-height: 44px !important;
		padding: 0 !important;
		gap: 0 !important;
		border-radius: 999px !important;
		box-sizing: border-box !important;
	}

	.plz-site-header__auth .plz-auth-entry-btn {
		border: 1.5px solid #008080 !important;
		background: #fff !important;
		box-shadow: 0 4px 16px rgba(0, 128, 128, 0.12) !important;
		color: #008080 !important;
		transform: none !important;
	}

	.plz-site-header__auth .plz-auth-entry-btn:hover {
		transform: none !important;
		border-color: #007070 !important;
		background: #f0fdfa !important;
		box-shadow: 0 6px 18px rgba(0, 128, 128, 0.16) !important;
	}

	.plz-site-header__auth .plz-auth-entry-btn .plz-auth-entry-dot,
	.plz-site-header__auth .plz-auth-entry-btn .plz-auth-entry-label {
		display: none !important;
	}

	.plz-site-header__auth .plz-auth-entry-btn::before {
		content: "";
		display: block;
		width: 22px;
		height: 22px;
		background-color: currentColor;
		-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23000' stroke-width='1.8' d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3Cpath stroke='%23000' stroke-width='1.8' stroke-linecap='round' d='M5 20a7 7 0 0 1 14 0'/%3E%3C/svg%3E") center / contain no-repeat;
		mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23000' stroke-width='1.8' d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3Cpath stroke='%23000' stroke-width='1.8' stroke-linecap='round' d='M5 20a7 7 0 0 1 14 0'/%3E%3C/svg%3E") center / contain no-repeat;
	}

	.plz-site-header__auth .plz-auth-avatar-trigger {
		border: 1.5px solid #008080 !important;
		background: #fff !important;
		box-shadow: 0 4px 16px rgba(0, 128, 128, 0.12) !important;
	}

	.plz-nav--desktop {
		display: none !important;
	}

	.plz-nav--mobile .plz-menu.plz-menu--mobile {
		flex-direction: column !important;
		align-items: stretch !important;
		flex-wrap: nowrap;
	}

	.plz-nav--mobile .plz-menu--mobile > .plz-menu__item {
		width: 100%;
		margin-right: 0;
	}

	.plz-nav--mobile .plz-menu--mobile .plz-menu__link {
		line-height: 1.35 !important;
		display: block;
	}

	.plz-nav--mobile .plz-menu--mobile .plz-menu__sub {
		position: static;
		visibility: visible;
		opacity: 1;
		transform: none;
		pointer-events: auto;
		box-shadow: none;
		border: 0;
		background: transparent;
		min-width: 0;
		padding-top: 0;
	}
}

@media (min-width: 1024px) {
	.plz-mobile-drawer {
		display: none !important;
	}

	.plz-nav-toggle {
		display: none;
	}
}

@media (max-width: 480px) {
	.plz-site-header__logo img {
		height: 42px;
	}

	.plz-site-nav__langs {
		display: none;
	}
}

/* —— Text pages: wide by default (1180px), narrow for legal prose —— */

body.plz-page-text .plz-page-content--text {
	margin: 0 auto;
	padding: 2rem 1.5rem 4rem;
	line-height: 1.65;
	color: #334155;
}

body.plz-page-text .plz-page-content--text.plz-page-content--wide,
body.plz-plugin-route .plz-page-content--text {
	max-width: var(--plz-content-max-width);
	width: 100%;
	padding-left: clamp(1rem, 3vw, 1.5rem);
	padding-right: clamp(1rem, 3vw, 1.5rem);
	box-sizing: border-box;
}

body.plz-page-text .plz-page-content--text.plz-page-content--narrow {
	max-width: 42rem;
}

body.plz-plugin-route .plz-page-content--wide .pointalize-faq-container,
body.plz-plugin-route .plz-page-content--wide .avc-main-wrapper,
body.plz-plugin-route .plz-page-content--wide #plz-dashboard-root {
	width: 100%;
	max-width: none;
}

body.plz-page-text .plz-page-content--text.plz-page-content--wide .entry-content,
body.plz-page-text .plz-page-content--text.plz-page-content--wide .wp-block-post-content,
body.plz-plugin-route .plz-page-content--text .entry-content,
body.plz-plugin-route .plz-page-content--text .wp-block-post-content {
	max-width: none;
	width: 100%;
}

body.plz-page-text .plz-page-content--text.plz-page-content--wide .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
body.plz-plugin-route .plz-page-content--text .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: none;
}

body.plz-page-text .plz-page-content--wide .plz-partner-grid {
	width: 100%;
}

body.plz-page-text .plz-page-content--wide .plz-page-headline {
	max-width: none;
}

.plz-page-headline {
	margin: 0 0 1.5rem;
}

.plz-page-headline__title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
	color: #0f172a;
	letter-spacing: -0.02em;
}

body.plz-page-text .plz-page-content--text h1:not(.plz-page-headline__title),
body.plz-page-text .plz-page-content--text h2,
body.plz-page-text .plz-page-content--text h3 {
	font-weight: 700;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	color: #0f172a;
}

body.plz-page-text .plz-page-content--text a {
	color: #0f766e;
}

body.plz-page-text .plz-page-content--text a:hover {
	color: #14b8a6;
}

body.plz-page-text .plz-page-content--text p,
body.plz-page-text .plz-page-content--text li {
	margin-bottom: 1em;
}

body.plz-page-text .plz-page-content--text .wp-block-post-title {
	display: none;
}

body.plz-page-text .plz-page-content--text.plz-page-content--narrow .alignwide {
	max-width: 48rem;
}

body.plz-page-text .plz-page-content--text .alignfull {
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
}

/* —— Theme footer (subpages) —— */

.plz-site-footer {
	margin-top: 2rem;
	padding: 1.5rem 1.25rem 2rem;
	text-align: center;
	font-size: 0.875rem;
	color: #64748b;
	border-top: 1px solid rgba(15, 118, 110, 0.08);
	background: rgba(255, 255, 255, 0.72);
}

.plz-site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	margin-bottom: 0.75rem;
}

.plz-site-footer__sep {
	color: #94a3b8;
}

.plz-site-footer__copy {
	margin: 0;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
	font-size: 0.8rem;
}

.plz-site-footer a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.5rem 0.75rem;
	color: #0f766e;
	text-decoration: none;
	border-radius: 6px;
}

.plz-site-footer a:hover {
	text-decoration: underline;
	background: rgba(15, 118, 110, 0.06);
}

.plz-site-footer span {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 0.125rem;
	pointer-events: none;
	color: #94a3b8;
}

body.plz-page-text .plz-page-content--text .legal-page address {
	font-style: normal;
	line-height: 1.7;
}

body.plz-page-text .plz-page-content--text .legal-page h2 {
	margin-top: 1.75em;
}

@media (max-width: 720px) {
	.plz-site-footer__nav {
		flex-direction: column;
		align-items: stretch;
		gap: 0.25rem;
		max-width: 20rem;
		margin-left: auto;
		margin-right: auto;
	}

	.plz-site-footer__sep {
		display: none;
	}

	.plz-site-footer a {
		width: 100%;
	}
}

body.plz-not-found-page .plz-main--not-found {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 8rem);
	min-height: calc(100dvh - 8rem);
	padding: 2rem 1.25rem 3rem;
	box-sizing: border-box;
}

body.plz-not-found-page .plz-not-found {
	width: 100%;
	max-width: 28rem;
	margin: 0 auto;
}

.plz-not-found__card {
	padding: clamp(2rem, 5vw, 2.75rem);
	border: 1px solid rgba(15, 118, 110, 0.14);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 16px 40px rgba(15, 23, 42, 0.08);
	text-align: center;
	backdrop-filter: blur(8px);
}

.plz-not-found__code {
	margin: 0 0 0.35rem;
	font-size: clamp(4.5rem, 18vw, 6rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.06em;
	color: #0f766e;
	opacity: 0.2;
}

.plz-not-found__title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.625rem, 4.5vw, 2.125rem);
	font-weight: 800;
	line-height: 1.15;
	color: #0f172a;
	letter-spacing: -0.02em;
}

.plz-not-found__message {
	margin: 0 auto 1.75rem;
	max-width: 22rem;
	font-size: 1rem;
	line-height: 1.65;
	color: #64748b;
}

.plz-not-found__actions {
	margin: 0 0 1.75rem;
}

.plz-not-found__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.8rem 1.5rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
	color: #ffffff !important;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(15, 118, 110, 0.28);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.plz-not-found__button:hover {
	filter: brightness(1.05);
	box-shadow: 0 10px 24px rgba(15, 118, 110, 0.34);
	text-decoration: none;
	transform: translateY(-1px);
}

.plz-not-found__button:focus-visible {
	outline: 2px solid #14b8a6;
	outline-offset: 3px;
}

.plz-not-found__links {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(15, 118, 110, 0.1);
}

.plz-not-found__links-title {
	margin: 0 0 0.85rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.plz-not-found__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.plz-not-found__chip {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0.4rem 0.95rem;
	border: 1px solid rgba(15, 118, 110, 0.18);
	border-radius: 999px;
	background: rgba(240, 253, 250, 0.8);
	color: #0f766e !important;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.plz-not-found__chip:hover {
	background: #ecfdf5;
	border-color: rgba(15, 118, 110, 0.35);
	text-decoration: none;
	transform: translateY(-1px);
}

@media (max-width: 480px) {
	body.plz-not-found-page .plz-main--not-found {
		align-items: flex-start;
		padding-top: 2.5rem;
	}

	.plz-not-found__chip {
		flex: 1 1 calc(50% - 0.5rem);
		justify-content: center;
	}
}
