:root {
	--sp-color-bg: #f4f6f8;
	--sp-color-surface: #ffffff;
	--sp-color-text: #111823;
	--sp-color-accent: #161f2b;
	--sp-color-muted: #677182;
	--sp-color-panel: #a8d3ff;
	--sp-color-line: #d2d9e1;
	--sp-color-dark: #10161f;
	--sp-color-dark-text: #e6edf5;
	--sp-spacing: 1rem;
}

.blog-index-page {
	background: #d7d8da;
	color: #171a1f;
}

.blog-index-hero {
	background: #ff5f52;
	padding: clamp(120px, 11vw, 180px) clamp(24px, 3.3vw, 48px) clamp(36px, 4vw, 58px);
	margin-top: calc(-1 * clamp(90px, 9vw, 120px));
}

.blog-index-hero h1 {
	margin: 0;
	font-size: clamp(4.2rem, 14vw, 18rem);
	line-height: 0.85;
	letter-spacing: -0.05em;
	font-weight: 600;
	color: #171a1f;
}

.blog-index-hero h1 span {
	font-weight: 500;
}

.blog-featured {
	background: #171a1f;
	color: #d7d8da;
	padding: clamp(22px, 2.5vw, 36px) clamp(18px, 2.8vw, 40px) clamp(30px, 3vw, 44px);
}

.blog-featured-inner {
	display: grid;
	gap: clamp(12px, 1.4vw, 18px);
}

.blog-featured-label {
	margin: 0;
	font-size: clamp(1.8rem, 2.4vw, 3.3rem);
	line-height: 1;
	letter-spacing: -0.02em;
}

.blog-featured-link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: color 220ms ease;
}

.blog-featured-link img,
.blog-featured-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 8.8;
	object-fit: cover;
	transition: filter 280ms ease, transform 280ms ease;
}

.blog-featured-placeholder {
	background: linear-gradient(180deg, #2a2f37 0%, #161a21 100%);
}

.blog-featured-copy {
	background: #d7d8da;
	color: #171a1f;
	padding: clamp(22px, 2.4vw, 34px);
	transition: background-color 220ms ease, color 220ms ease;
}

.blog-featured-copy h2 {
	margin: 0 0 14px;
	font-size: clamp(2.8rem, 4.6vw, 7rem);
	line-height: 0.9;
	letter-spacing: -0.04em;
	font-weight: 500;
	transition: color 220ms ease;
}

.blog-featured-copy p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.78rem, 0.86vw, 1rem);
	line-height: 1.35;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 220ms ease;
}

.blog-featured-link:hover .blog-featured-copy,
.blog-featured-link:focus-visible .blog-featured-copy {
	background: radial-gradient(circle at 30% 20%, #1f2737 0%, #151922 52%, #10141c 100%);
	color: #d7d8da;
}

.blog-featured-link:hover .blog-featured-copy h2,
.blog-featured-link:focus-visible .blog-featured-copy h2 {
	color: #d7d8da;
}

.blog-featured-link:hover .blog-featured-copy p,
.blog-featured-link:focus-visible .blog-featured-copy p {
	color: rgba(215, 216, 218, 0.76);
}

.blog-featured-link:hover img,
.blog-featured-link:focus-visible img {
	filter: saturate(0.88) contrast(1.08) brightness(0.9);
	transform: scale(1.01);
}

.blog-cards {
	background: #d7d8da;
	border-top: 1px solid rgba(23, 26, 31, 0.22);
}

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

.blog-card {
	border-right: 1px solid rgba(23, 26, 31, 0.22);
	border-bottom: 1px solid rgba(23, 26, 31, 0.22);
	min-height: clamp(300px, 28vw, 460px);
}

.blog-card:nth-child(4n) {
	border-right: 0;
}

.blog-card a {
	text-decoration: none;
	color: #171a1f;
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 1.8vw, 28px);
	height: 100%;
	padding: clamp(24px, 2.2vw, 36px);
	transition: background-color 220ms ease, color 220ms ease;
}

.blog-card-label {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.78rem, 0.84vw, 0.96rem);
	line-height: 1.25;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(23, 26, 31, 0.72);
}

.blog-card h3 {
	margin: 0;
	font-size: clamp(2.1rem, 2.7vw, 4.6rem);
	line-height: 0.94;
	letter-spacing: -0.03em;
	font-weight: 500;
	max-width: 13ch;
	transition: color 220ms ease;
}

.blog-card-excerpt {
	margin: auto 0 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.86rem, 0.94vw, 1.1rem);
	line-height: 1.35;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: rgba(23, 26, 31, 0.68);
	transition: color 220ms ease;
}

.blog-card-label {
	transition: color 220ms ease;
}

.blog-card a:hover,
.blog-card a:focus-visible {
	background: radial-gradient(circle at 30% 20%, #1f2737 0%, #151922 52%, #10141c 100%);
	color: #d7d8da;
	outline: 0;
}

.blog-card a:hover .blog-card-label,
.blog-card a:focus-visible .blog-card-label {
	color: rgba(215, 216, 218, 0.72);
}

.blog-card a:hover h3,
.blog-card a:focus-visible h3 {
	color: #d7d8da;
}

.blog-card a:hover .blog-card-excerpt,
.blog-card a:focus-visible .blog-card-excerpt {
	color: rgba(215, 216, 218, 0.74);
}

.blog-pagination {
	background: #d7d8da;
	padding: clamp(20px, 2vw, 34px);
	border-top: 1px solid rgba(23, 26, 31, 0.22);
}

.blog-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	text-decoration: none;
	border: 1px solid rgba(23, 26, 31, 0.28);
	color: #171a1f;
}

.blog-pagination .current {
	background: #171a1f;
	color: #d7d8da;
}

@media (max-width: 1200px) {
	.blog-cards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.blog-card:nth-child(2n) {
		border-right: 0;
	}
}

@media (max-width: 780px) {
	.blog-index-hero h1 {
		font-size: clamp(3rem, 17vw, 6rem);
		line-height: 0.9;
	}

	.blog-featured-copy h2 {
		font-size: clamp(2rem, 8.2vw, 3.5rem);
		line-height: 0.95;
	}

	.blog-cards-grid {
		grid-template-columns: 1fr;
	}

	.blog-card {
		border-right: 0;
		min-height: auto;
	}

	.blog-card h3 {
		max-width: none;
		font-size: clamp(1.8rem, 9vw, 3rem);
	}
}

.blog-single-page {
	background: #d7d8da;
	color: #171a1f;
}

.blog-single-hero {
	background: radial-gradient(circle at 24% 14%, #242b36 0%, #191e27 54%, #121720 100%);
	color: #d7d8da;
	padding: clamp(118px, 10.8vw, 176px) clamp(24px, 3.2vw, 48px) clamp(34px, 3.8vw, 54px);
	margin-top: calc(-1 * clamp(90px, 9vw, 120px));
}

.blog-single-breadcrumb {
	margin: 0 0 clamp(20px, 2.4vw, 34px);
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.72rem, 0.78vw, 0.92rem);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(215, 216, 218, 0.78);
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}

.blog-single-breadcrumb a {
	color: #d7d8da;
}

.blog-single-hero h1 {
	margin: 0;
	max-width: 14ch;
	font-size: clamp(3.2rem, 7.8vw, 8.8rem);
	line-height: 0.9;
	letter-spacing: -0.045em;
	font-weight: 500;
}

.blog-single-date {
	margin: clamp(22px, 2.4vw, 34px) 0 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.74rem, 0.8vw, 0.94rem);
	line-height: 1.3;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: rgba(215, 216, 218, 0.8);
}

.blog-single-content-wrap {
	background: #d7d8da;
}

.blog-single-subtitle {
	padding: clamp(26px, 2.8vw, 42px) clamp(24px, 3.2vw, 48px) clamp(20px, 2.2vw, 34px);
	border-bottom: 1px solid rgba(23, 26, 31, 0.16);
}

.blog-single-subtitle h2 {
	margin: 0;
	max-width: 22ch;
	font-size: clamp(2rem, 4.1vw, 5rem);
	line-height: 0.95;
	letter-spacing: -0.03em;
	font-weight: 500;
	color: #171a1f;
}

.blog-single-content {
	padding: clamp(24px, 2.8vw, 42px) clamp(24px, 3.2vw, 48px) clamp(44px, 4vw, 68px);
}

.blog-single-content-inner {
	max-width: min(72ch, 100%);
	margin-inline: auto;
}

.blog-single-content-inner > *:first-child {
	margin-top: 0;
}

.blog-single-content-inner > *:last-child {
	margin-bottom: 0;
}

.blog-single-content-inner h1,
.blog-single-content-inner h2,
.blog-single-content-inner h3,
.blog-single-content-inner h4,
.blog-single-content-inner h5,
.blog-single-content-inner h6 {
	margin: clamp(34px, 3.2vw, 48px) 0 clamp(16px, 1.8vw, 24px);
	line-height: 0.95;
	letter-spacing: -0.03em;
	font-weight: 500;
	color: #171a1f;
}

.blog-single-content-inner h1 {
	font-size: clamp(2.8rem, 4.4vw, 4.9rem);
}

.blog-single-content-inner h2 {
	font-size: clamp(2.2rem, 3.3vw, 3.9rem);
}

.blog-single-content-inner h3 {
	font-size: clamp(1.8rem, 2.5vw, 2.9rem);
}

.blog-single-content-inner h4 {
	font-size: clamp(1.5rem, 2.05vw, 2.3rem);
}

.blog-single-content-inner p,
.blog-single-content-inner li,
.blog-single-content-inner blockquote {
	margin: 0 0 clamp(20px, 2.1vw, 28px);
	font-size: clamp(1.02rem, 1.22vw, 1.46rem);
	line-height: 1.32;
	letter-spacing: -0.018em;
	color: #1a1d24;
}

.blog-single-content-inner ul,
.blog-single-content-inner ol {
	margin: 0 0 clamp(24px, 2.4vw, 34px);
	padding-left: 1.4em;
}

.blog-single-content-inner blockquote {
	padding-left: 0.8em;
	border-left: 3px solid rgba(23, 26, 31, 0.28);
}

.blog-single-content-inner strong {
	font-weight: 600;
}

.blog-single-content-inner a {
	color: #171a1f;
	text-decoration: underline;
	text-underline-offset: 0.14em;
}

.blog-single-related {
	background: #d7d8da;
	border-top: 1px solid rgba(23, 26, 31, 0.2);
	padding-top: clamp(26px, 2.8vw, 42px);
}

.blog-single-related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 clamp(24px, 3.2vw, 48px) clamp(20px, 2.2vw, 34px);
}

.blog-single-related-header h2 {
	margin: 0;
	font-size: clamp(2.4rem, 3.8vw, 5.4rem);
	line-height: 0.92;
	letter-spacing: -0.03em;
	font-weight: 500;
}

.blog-single-related-controls {
	display: inline-flex;
	gap: 10px;
}

.blog-single-related-arrow {
	width: 58px;
	height: 58px;
	border-radius: 999px;
	border: 0;
	background: #171a1f;
	color: #d7d8da;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.9rem;
	line-height: 1;
	cursor: pointer;
	transition: opacity 220ms ease, transform 180ms ease;
}

.blog-single-related-arrow[disabled] {
	opacity: 0.34;
	cursor: default;
}

.blog-single-related-arrow:not([disabled]):hover {
	transform: translateY(-1px);
}

.blog-single-related-viewport {
	overflow: hidden;
}

.blog-single-related-track {
	display: flex;
	transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.blog-single-related-card {
	flex: 0 0 calc(100% / 3);
	border-top: 1px solid rgba(23, 26, 31, 0.2);
	border-right: 1px solid rgba(23, 26, 31, 0.2);
	border-bottom: 1px solid rgba(23, 26, 31, 0.2);
	min-height: clamp(300px, 28vw, 440px);
}

.blog-single-related-card:first-child {
	border-left: 1px solid rgba(23, 26, 31, 0.2);
}

.blog-single-related-card a {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: clamp(18px, 1.8vw, 28px);
	padding: clamp(24px, 2.2vw, 36px);
	text-decoration: none;
	color: #171a1f;
	transition: background-color 220ms ease, color 220ms ease;
}

.blog-single-related-label {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.76rem, 0.82vw, 0.92rem);
	line-height: 1.24;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(23, 26, 31, 0.7);
	transition: color 220ms ease;
}

.blog-single-related-card h3 {
	margin: 0;
	max-width: 13ch;
	font-size: clamp(2rem, 2.6vw, 4.3rem);
	line-height: 0.94;
	letter-spacing: -0.03em;
	font-weight: 500;
	transition: color 220ms ease;
}

.blog-single-related-excerpt {
	margin: auto 0 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.84rem, 0.9vw, 1.04rem);
	line-height: 1.36;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(23, 26, 31, 0.68);
	transition: color 220ms ease;
}

.blog-single-related-card a:hover,
.blog-single-related-card a:focus-visible {
	background: radial-gradient(circle at 30% 20%, #1f2737 0%, #151922 52%, #10141c 100%);
	color: #d7d8da;
	outline: 0;
}

.blog-single-related-card a:hover .blog-single-related-label,
.blog-single-related-card a:focus-visible .blog-single-related-label {
	color: rgba(215, 216, 218, 0.72);
}

.blog-single-related-card a:hover h3,
.blog-single-related-card a:focus-visible h3 {
	color: #d7d8da;
}

.blog-single-related-card a:hover .blog-single-related-excerpt,
.blog-single-related-card a:focus-visible .blog-single-related-excerpt {
	color: rgba(215, 216, 218, 0.74);
}

@media (max-width: 980px) {
	.blog-single-related-card {
		flex-basis: 50%;
	}
}

@media (max-width: 780px) {
	.blog-single-breadcrumb {
		gap: 8px;
	}

	.blog-single-hero h1 {
		font-size: clamp(2.6rem, 12vw, 4.5rem);
	}

	.blog-single-subtitle h2 {
		font-size: clamp(1.6rem, 8.6vw, 2.8rem);
		line-height: 1;
	}

	.blog-single-content-inner p,
	.blog-single-content-inner li,
	.blog-single-content-inner blockquote {
		font-size: clamp(0.98rem, 4.6vw, 1.18rem);
		line-height: 1.42;
	}

	.blog-single-related-header {
		flex-wrap: wrap;
	}

	.blog-single-related-header h2 {
		font-size: clamp(1.9rem, 10vw, 3rem);
	}

	.blog-single-related-arrow {
		width: 52px;
		height: 52px;
	}

	.blog-single-related-card {
		flex-basis: 100%;
	}

	.blog-single-related-card h3 {
		max-width: none;
		font-size: clamp(1.65rem, 8.8vw, 2.8rem);
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	color: var(--sp-color-text);
	background: #f4f6f8;
	line-height: 1.6;
	overflow-x: clip;
}

html {
	overflow-x: clip;
}

.container {
	width: min(100% - 2rem, 1120px);
	margin-inline: auto;
}

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 90;
	padding: clamp(20px, 2.6vw, 34px) clamp(18px, 3vw, 44px);
	pointer-events: none;
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	pointer-events: auto;
}

.site-title {
	color: #111823;
	font-weight: 700;
	font-size: clamp(1.6rem, 2.2vw, 2.25rem);
	letter-spacing: -0.02em;
	text-decoration: none;
}

.site-logo {
	display: inline-flex;
	align-items: center;
}

.site-logo-image {
	display: block;
	width: clamp(135px, 12vw, 210px);
	height: auto;
}

.menu-toggle,
.menu-close {
	border: 0;
	background: #d7d8da;
	color: #171a1f;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.6rem 1.2rem;
	border-radius: 999px;
	font-size: 0.86rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity 240ms ease, transform 180ms ease, color 220ms ease;
}

.menu-toggle-icon {
	position: relative;
	width: 34px;
	height: 20px;
	display: inline-block;
	flex: 0 0 auto;
}

.menu-toggle-line {
	position: absolute;
	display: block;
	right: 0;
	height: 3px;
	background: currentColor;
	transition:
		width 260ms cubic-bezier(0.22, 1, 0.36, 1),
		left 260ms cubic-bezier(0.22, 1, 0.36, 1),
		right 260ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle-line--top {
	top: 3px;
	left: 13px;
	width: 17px;
}

.menu-toggle-line--bottom {
	top: 11px;
	left: 0;
	width: 26px;
}

.menu-toggle:hover .menu-toggle-line,
.menu-toggle:focus-visible .menu-toggle-line,
.menu-toggle[aria-expanded="true"] .menu-toggle-line {
	left: 0;
	right: auto;
	width: 19px;
}

.menu-toggle:hover,
.menu-close:hover {
	opacity: 1;
}

.menu-toggle:active,
.menu-close:active {
	transform: translateY(1px);
}

.menu-toggle:focus-visible,
.menu-close:focus-visible {
	outline: none;
}

.menu-panel-list a:focus-visible {
	outline: none;
	text-decoration: underline;
	text-decoration: none;
}

.menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 120;
	padding: clamp(12px, 2vw, 24px);
	display: grid;
	justify-items: end;
	align-items: start;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 320ms ease, visibility 0ms linear 320ms;
}

.menu-overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 320ms ease, visibility 0ms linear 0ms;
}

.menu-overlay-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 14, 20, 0.6);
	opacity: 0;
	transition: opacity 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay.is-open .menu-overlay-backdrop {
	opacity: 1;
}

.menu-panel {
	position: relative;
	width: min(42rem, calc(100vw - clamp(24px, 4vw, 64px)));
	min-height: min(82vh, 820px);
	padding: clamp(22px, 2.8vw, 44px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: #d0d0d0;
	color: #111823;
	border-radius: 10px;
	transform: translateY(-14px) scale(0.992);
	opacity: 0;
	transition:
		transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 440ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: 28ms;
	will-change: transform, opacity;
}

.menu-overlay.is-open .menu-panel {
	transform: translateY(0) scale(1);
	opacity: 1;
	transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
	.menu-overlay,
	.menu-overlay-backdrop,
	.menu-panel,
	.menu-panel-list .has-submenu > ul,
	.menu-panel-list .has-submenu > a::after,
	.projects-grid-item,
	.projects-grid-icon svg,
	.projects-grid-item h3,
	.projects-grid-item p {
		transition: none;
	}
}

.menu-close {
	position: absolute;
	top: clamp(16px, 2vw, 26px);
	right: clamp(16px, 2vw, 26px);
	background: transparent;
	padding: 0.35rem 0.3rem;
	border-radius: 0;
}

.menu-close-icon {
	font-size: 1.8rem;
	line-height: 0.9;
}

.menu-panel-list {
	list-style: none;
	margin: auto 0 0 !important;
	padding: 0;
	padding-bottom: clamp(10px, 1.6vw, 18px);
}

.menu-panel-list > li {
	margin: 0;
}

.menu-panel ul,
.menu-panel li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-panel-list a {
	color: inherit;
	text-decoration: none;
	display: inline-block;
	font-size: clamp(1.9rem, 4.7vw, 4.2rem);
	line-height: 0.92;
	letter-spacing: -0.04em;
	padding: 0.05em 0.02em;
	transition: opacity 240ms ease, transform 200ms ease;
}

.menu-link-word {
	display: inline-block;
	will-change: transform, opacity, filter;
}

.js .menu-panel.is-menu-revealing .menu-link-word {
	opacity: 0;
	filter: blur(6px);
	transform: translateY(0.62em) rotateX(16deg);
	transform-origin: 50% 100%;
	animation: menu-link-word-reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: calc(var(--menu-link-index, 0) * 90ms + var(--menu-word-index, 0) * 90ms + 180ms);
}

@keyframes menu-link-word-reveal {
	from {
		opacity: 0;
		filter: blur(6px);
		transform: translateY(0.62em) rotateX(16deg);
	}
	to {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0) rotateX(0deg);
	}
}

.menu-panel-list a:hover {
	opacity: 0.58;
}

.menu-panel-list a:active {
	transform: translateY(1px);
}

.menu-panel-list .current-menu-item > a,
.menu-panel-list .current-menu-ancestor > a,
.menu-panel-list .current_page_item > a,
.menu-panel-list .current_page_ancestor > a {
	color: transparent;
	-webkit-text-stroke: 1.6px #111823;
	opacity: 1;
}

.menu-panel-list .current-menu-item > a .menu-child-count,
.menu-panel-list .current-menu-ancestor > a .menu-child-count,
.menu-panel-list .current_page_item > a .menu-child-count,
.menu-panel-list .current_page_ancestor > a .menu-child-count {
	color: #111823;
	-webkit-text-stroke: 0;
}

.menu-child-count {
	font-size: 0.48em;
	line-height: 1;
	margin-left: 0.14em;
	vertical-align: super;
	font-weight: 500;
}

.menu-panel-list li > ul {
	list-style: none;
	margin: 0.4rem 0 1.25rem;
	padding: 0 0 0 clamp(12px, 1.6vw, 24px);
}

.menu-panel-list li > ul a {
	font-size: clamp(1rem, 2.3vw, 1.7rem);
	line-height: 1.15;
	letter-spacing: -0.01em;
	opacity: 0.84;
}

.menu-panel-list li > ul li > ul a {
	font-size: clamp(0.9rem, 1.9vw, 1.25rem);
	opacity: 0.74;
}

.menu-panel-list .has-submenu > a {
	position: relative;
	padding-right: 0.45em;
}

.menu-panel-list .has-submenu > a::after {
	content: "+";
	display: inline-block;
	margin-left: 0.18em;
	font-size: 0.55em;
	line-height: 1;
	vertical-align: super;
	transform: translateY(-0.02em) rotate(0deg);
	transition: transform 240ms ease, opacity 220ms ease;
	opacity: 0.82;
}

.menu-panel-list .has-submenu.is-submenu-open > a::after {
	transform: translateY(-0.02em) rotate(45deg);
}

.js .menu-panel-list .has-submenu > ul {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(-4px);
	transition:
		max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 260ms ease,
		transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
		margin 320ms ease;
}

.js .menu-panel-list .has-submenu.is-submenu-open > ul {
	margin-top: 0.4rem;
	margin-bottom: 1.25rem;
	opacity: 1;
	transform: translateY(0);
}

body.menu-open {
	overflow: hidden;
}

.site-main {
	padding: clamp(90px, 9vw, 120px) 0 3rem;
	padding-bottom: 0;
}

.home .site-main {
	padding: 0;
}

.page-nosotros .site-main {
	padding: 0;
}

.site-main:has(.about-page-hero) {
	padding: 0;
}

.site-main:has(.projects-page-hero) {
	padding: 0;
}

.site-main:has(.portfolio-single-hero) {
	padding: 0;
}

.site-main:has(.hero-tech-block) {
	padding: 0;
}

.site-main:has(.projects-hero-block) {
	padding: 0;
}

.site-footer {
	background: transparent;
	padding: 0;
	border-top: 0;
}

.site-footer .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.hero-tech {
	--hero-bottom-row-height: clamp(320px, 27vw, 420px);
	--sp-home-hero-left-bg: #ff5f52;
	--sp-home-hero-left-text: #111823;
	--sp-home-hero-media-bg: #0f1218;
	--sp-home-hero-news-bg: #d5d6d8;
	--sp-home-hero-news-heading: #23272f;
	--sp-home-hero-news-text: #2f343d;
	--sp-home-hero-intro-bg: #dce0e5;
	--sp-home-hero-intro-text: #111823;
	--sp-home-hero-panel-bg: #171a1f;
	--sp-home-hero-panel-heading: #d8dce2;
	--sp-home-hero-panel-text: #c8cdd4;
	--sp-home-hero-panel-accent: #00c2a8;
	--sp-home-hero-panel-muted: #9aa2ad;
	--sp-home-hero-cta-bg: #ff5f52;
	--sp-home-hero-cta-text: #111823;
}

.content-area .hero-tech-block,
.content-area article .hero-tech-block,
.wp-block-group .hero-tech-block {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 68fr) minmax(0, 32fr);
	gap: 0;
	align-items: start;
	min-height: auto;
	width: 100%;
}

.hero-left {
	display: grid;
	grid-template-rows: auto minmax(320px, 1fr);
	min-width: 0;
}

.hero-left-coral {
	background: var(--sp-home-hero-left-bg);
	color: var(--sp-home-hero-left-text);
	padding: clamp(28px, 3vw, 44px);
}

.hero-left-top {
	display: grid;
	grid-template-columns: minmax(140px, 280px) minmax(200px, 420px);
	gap: clamp(20px, 3vw, 52px);
	align-items: start;
}

.hero-brand {
	margin: 0;
	font-size: 0.95rem;
	letter-spacing: 0.06em;
	font-weight: 700;
}

.home .hero-brand {
	visibility: hidden;
}

.hero-kicker {
	margin: 0;
	font-size: clamp(1.45rem, 2.2vw, 3rem);
	line-height: 1.05;
	max-width: 16ch;
}

.word-reveal-word {
	display: inline-block;
	will-change: transform, opacity, filter;
}

.js .js-word-reveal.is-animated .word-reveal-word {
	opacity: 0;
	filter: blur(6px);
	transform: translateY(0.62em) rotateX(16deg);
	transform-origin: 50% 100%;
	animation: hero-kicker-word-reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: calc(var(--word-index) * 120ms + 220ms);
}

@keyframes hero-kicker-word-reveal {
	from {
		opacity: 0;
		filter: blur(6px);
		transform: translateY(0.62em) rotateX(16deg);
	}
	to {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0) rotateX(0deg);
	}
}

.hero-left h1 {
	margin: clamp(8vh, 10vw, 14vh) 0 0;
	font-size: clamp(5rem, 12.5vw, 16rem);
	line-height: 0.88;
	letter-spacing: -0.05em;
	font-weight: 600;
	max-width: 9ch;
}

.hero-title-line {
	display: inline-block;
	min-height: 0.95em;
}

.hero-title-line::after {
	content: "";
	display: inline-block;
	width: 0.065em;
	height: 0.82em;
	margin-left: 0.04em;
	vertical-align: -0.08em;
	background: currentColor;
	opacity: 0;
}

.hero-title-line.is-active::after {
	opacity: 1;
	animation: hero-title-caret-blink 780ms steps(1, end) infinite;
}

@keyframes hero-title-caret-blink {
	0%,
	49% {
		opacity: 1;
	}
	50%,
	100% {
		opacity: 0;
	}
}

.hero-video {
	background: var(--sp-home-hero-media-bg);
	min-height: clamp(280px, 40vw, 620px);
}

.hero-video video,
.hero-video img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video video {
	filter: grayscale(1) contrast(1.05);
}

.hero-news {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	min-height: var(--hero-bottom-row-height);
}

.hero-news-card {
	background: var(--sp-home-hero-news-bg);
	border-top: 1px solid rgba(17, 24, 35, 0.42);
	border-bottom: 1px solid rgba(17, 24, 35, 0.42);
	padding: clamp(20px, 2.1vw, 38px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
}

.hero-news-card + .hero-news-card {
	border-left: 1px solid rgba(17, 24, 35, 0.42);
}

.hero-news-card h3 {
	margin: 0;
	font-size: clamp(1.9rem, 2.3vw, 3rem);
	line-height: 0.98;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--sp-home-hero-news-heading);
	max-width: 18ch;
}

.hero-news-card p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.84rem, 0.82vw, 1.08rem);
	line-height: 1.42;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sp-home-hero-news-text);
	max-width: 36ch;
}

.js .js-news-typewriter h3,
.js .js-news-typewriter p {
	opacity: 0;
}

.js .js-news-typewriter.is-typed h3,
.js .js-news-typewriter.is-typed p,
.js .js-news-typewriter .typewriter-active,
.js .js-news-typewriter .typewriter-done {
	opacity: 1;
}

.typewriter-active {
	border-right: 0.08em solid currentColor;
	animation: typewriter-caret-blink 760ms steps(1, end) infinite;
}

@keyframes typewriter-caret-blink {
	0%,
	49% {
		border-right-color: currentColor;
	}
	50%,
	100% {
		border-right-color: transparent;
	}
}

.hero-right {
	position: sticky;
	top: 120px;
	display: grid;
	grid-template-rows: auto auto auto;
	align-self: start;
	min-width: 0;
}

.js .right-intro {
	opacity: 0;
	transform: translateY(26px) scale(0.985);
	animation: hero-right-reveal 4000ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
	will-change: transform, opacity;
}

@keyframes hero-right-reveal {
	from {
		opacity: 0;
		transform: translateY(26px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.right-intro {
	background: var(--sp-home-hero-intro-bg);
	color: var(--sp-home-hero-intro-text);
	padding: clamp(26px, 3vw, 48px) clamp(22px, 2.4vw, 42px);
	display: grid;
	grid-template-rows: auto 1fr;
	align-content: space-between;
}

.right-intro p {
	margin: 0;
	font-size: clamp(1.15rem, 2vw, 2.95rem);
	line-height: 1.05;
	max-width: 14ch;
}

.js .right-intro-reveal {
	opacity: 0;
	filter: blur(7px);
	transform: translateX(18px);
	clip-path: inset(0 100% 0 0);
	animation: right-intro-curtain-reveal 1600ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
	will-change: opacity, filter, transform, clip-path;
}

@keyframes right-intro-curtain-reveal {
	from {
		opacity: 0;
		filter: blur(7px);
		transform: translateX(18px);
		clip-path: inset(0 100% 0 0);
	}
	to {
		opacity: 1;
		filter: blur(0);
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
	}
}

.status-panel {
	background: var(--sp-home-hero-panel-bg);
	border: 0;
	border-radius: 0;
	padding: clamp(24px, 2.5vw, 42px);
	box-shadow: none;
}

.panel-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--sp-home-hero-panel-accent);
	box-shadow: 0 0 0 6px rgba(0, 194, 168, 0.14);
	box-shadow: 0 0 0 6px color-mix(in srgb, var(--sp-home-hero-panel-accent) 14%, transparent);
}

.panel-header h2 {
	margin: 0;
	font-size: clamp(2rem, 2.2vw, 2.8rem);
	letter-spacing: -0.02em;
	text-transform: none;
	color: var(--sp-home-hero-panel-heading);
	font-weight: 500;
}

.status-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 0;
}

.status-list li {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	padding: 2px 0;
	font-size: clamp(1.08rem, 1.16vw, 1.34rem);
	opacity: 0;
	transform: translateY(8px);
	animation: status-item-reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
	align-items: start;
	min-width: 0;
}

.status-list span {
	color: var(--sp-home-hero-panel-text);
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.status-list strong {
	color: var(--sp-home-hero-panel-muted);
	letter-spacing: 0;
	font-size: 2rem;
	line-height: 0.35;
	font-weight: 700;
	width: 0.7em;
	text-align: center;
}

.status-list li:nth-child(1) { animation-delay: 0ms; }
.status-list li:nth-child(2) { animation-delay: 366ms; }
.status-list li:nth-child(3) { animation-delay: 733ms; }
.status-list li:nth-child(4) { animation-delay: 1099ms; }
.status-list li:nth-child(5) { animation-delay: 1466ms; }
.status-list li:nth-child(6) { animation-delay: 1833ms; }
.status-list li:nth-child(7) { animation-delay: 2199ms; }
.status-list li:nth-child(8) { animation-delay: 2566ms; }
.status-list li:nth-child(9) { animation-delay: 2933ms; }
.status-list li:nth-child(10) { animation-delay: 3300ms; }

@keyframes status-item-reveal {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.data-block {
	margin: 24px 0 0;
	padding: 0 0 0 14px;
	border-left: 5px solid #6d727a;
	border-radius: 0;
	background: transparent;
}

.data-block p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.8rem;
	line-height: 1.55;
	color: var(--sp-home-hero-panel-muted);
	letter-spacing: 0.06em;
}

.data-icons {
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	color: var(--sp-home-hero-panel-muted);
	max-width: 100%;
}

.data-icon-item {
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(8px) scale(0.94);
	animation: data-icon-reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.data-icon {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.data-icon-item:nth-child(1) { animation-delay: 0ms; }
.data-icon-item:nth-child(2) { animation-delay: 366ms; }
.data-icon-item:nth-child(3) { animation-delay: 733ms; }
.data-icon-item:nth-child(4) { animation-delay: 1099ms; }
.data-icon-item:nth-child(5) { animation-delay: 1466ms; }
.data-icon-item:nth-child(6) { animation-delay: 1833ms; }
.data-icon-item:nth-child(7) { animation-delay: 2199ms; }
.data-icon-item:nth-child(8) { animation-delay: 2566ms; }
.data-icon-item:nth-child(9) { animation-delay: 2933ms; }
.data-icon-item:nth-child(10) { animation-delay: 3300ms; }

@keyframes data-icon-reveal {
	from {
		opacity: 0;
		transform: translateY(8px) scale(0.94);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.dark-card {
	margin-top: 28px;
	border-radius: 4px;
	color: var(--sp-home-hero-panel-heading);
}

.dark-label {
	margin: 0 0 8px;
	font-size: 0.73rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.8;
}

.dark-value {
	margin: 0;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
}

.dark-line {
	height: 1px;
	margin: 12px 0 10px;
	background: linear-gradient(to right, rgba(230, 237, 245, 0.3), transparent);
}

.dark-meta {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.66rem;
	letter-spacing: 0.08em;
	opacity: 0.82;
}

.status-square-cta {
	background: var(--sp-home-hero-cta-bg);
	color: var(--sp-home-hero-cta-text);
	text-decoration: none;
	padding: clamp(22px, 2.4vw, 40px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--hero-bottom-row-height);
	cursor: pointer;
	overflow: hidden;
	transition: background-color 220ms ease, box-shadow 220ms ease;
}

.status-square-icon {
	position: relative;
	display: block;
	width: clamp(62px, 8vw, 120px);
	height: clamp(62px, 8vw, 120px);
	align-self: flex-end;
	--status-arrow-stroke: clamp(9px, 1vw, 14px);
	transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.status-square-icon-line {
	position: absolute;
	left: 8%;
	right: 8%;
	top: 50%;
	height: var(--status-arrow-stroke);
	background: #111823;
	background: var(--sp-home-hero-cta-text);
	transform: translateY(-50%) rotate(-45deg);
	transform-origin: center;
}

.status-square-icon::before,
.status-square-icon::after {
	content: "";
	position: absolute;
	background: var(--sp-home-hero-cta-text);
}

.status-square-icon::before {
	top: 8%;
	right: 8%;
	width: 56%;
	height: var(--status-arrow-stroke);
}

.status-square-icon::after {
	top: 8%;
	right: 8%;
	width: var(--status-arrow-stroke);
	height: 56%;
}

.status-square-text {
	font-size: clamp(1.2rem, 2.1vw, 2.8rem);
	line-height: 1.06;
	font-weight: 500;
	transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
	will-change: transform;
	overflow-wrap: anywhere;
	word-break: break-word;
}



.status-square-cta:hover .status-square-icon,
.status-square-cta:focus-visible .status-square-icon {
	transform: translate(6px, -6px);
}

.status-square-cta:hover .status-square-text,
.status-square-cta:focus-visible .status-square-text {
	transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
	.status-square-cta,
	.status-square-icon,
	.status-square-text,
	.data-icon-item,
	.status-list li,
	.about-card-step,
	.hero-title-line::after,
	.right-intro,
	.word-reveal-word,
	.right-intro-reveal,
	.typewriter-active,
	.projects-manifesto p {
		transition: none;
		animation: none;
		opacity: 1;
		filter: none;
		transform: none;
		clip-path: inset(0 0 0 0);
		border-right: 0;
	}

	.js-news-typewriter h3,
	.js-news-typewriter p,
	.projects-manifesto p {
		opacity: 1;
	}
}

.home-content {
	margin-top: 0;
}

.about-page-hero {
	background: var(--sp-about-hero-bg, #ff5f52);
	color: var(--sp-about-hero-text, #111823);
	min-height: 100svh;
	margin-top: calc(-1 * clamp(90px, 9vw, 120px));
	padding: clamp(110px, 9vw, 150px) clamp(26px, 3.3vw, 48px) clamp(38px, 4vw, 56px);
}

.about-page-hero-inner {
	min-height: calc(100svh - clamp(148px, 14vw, 206px));
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
	grid-template-rows: 1fr auto;
	gap: clamp(24px, 2.7vw, 44px);
	align-items: start;
}

.about-page-center-copy {
	grid-column: 1;
	grid-row: 1;
	align-self: center;
	justify-self: center;
	max-width: 18ch;
}

.about-page-center-copy p {
	margin: 0;
	font-size: clamp(2.05rem, 2.45vw, 3.45rem);
	line-height: 0.98;
	letter-spacing: -0.02em;
}

.about-page-card {
	grid-column: 2;
	grid-row: 1;
	align-self: start;
	justify-self: end;
	margin-top: 15px;
	width: min(100%, 440px);
	background: var(--sp-about-card-bg, #171a1f);
	color: var(--sp-about-card-text, #ff5f52);
	padding: clamp(30px, 2.8vw, 40px);
	display: grid;
	gap: clamp(18px, 1.8vw, 24px);
}

.about-page-card-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	color: var(--sp-about-card-icon, #ff5f52);
}

.about-page-card-icon svg {
	width: 100%;
	height: 100%;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
	stroke-linejoin: round;
}

.about-page-card h2 {
	margin: 0;
	font-size: clamp(2.1rem, 2.45vw, 3.25rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
	font-weight: 500;
	max-width: 12ch;
}

.about-page-card p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.84rem, 0.9vw, 1.08rem);
	line-height: 1.38;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	max-width: 33ch;
}

.about-card-step {
	opacity: 0;
	transform: translateY(8px);
	animation: status-item-reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-page-card .about-card-step:nth-child(1),
.contact-page-card .about-card-step:nth-child(1),
.projects-page-card .about-card-step:nth-child(1),
.portfolio-single-card .about-card-step:nth-child(1) { animation-delay: 700ms; }
.about-page-card .about-card-step:nth-child(2),
.contact-page-card .about-card-step:nth-child(2),
.projects-page-card .about-card-step:nth-child(2),
.portfolio-single-card .about-card-step:nth-child(2) { animation-delay: 1060ms; }
.about-page-card .about-card-step:nth-child(3),
.contact-page-card .about-card-step:nth-child(3),
.projects-page-card .about-card-step:nth-child(3),
.portfolio-single-card .about-card-step:nth-child(3) { animation-delay: 1320ms; }

.about-page-title {
	grid-column: 1 / -1;
	grid-row: 2;
	margin: 0;
	font-size: clamp(4.5rem, 16.4vw, 21rem);
	line-height: 0.82;
	letter-spacing: -0.06em;
	font-weight: 600;
	color: var(--sp-about-hero-title, #111823);
}

.about-page-full-image {
	width: 100%;
	background: var(--sp-about-media-bg, #ff5f52);
}

.about-page-full-image img,
.about-page-full-image video {
	display: block;
	width: 100%;
	height: auto;
}

.about-features-slider {
	background: var(--sp-about-slider-bg, #171a1f);
	color: var(--sp-about-slider-heading, #d7d8da);
	border-top: 1px solid var(--sp-about-slider-line, rgba(215, 216, 218, 0.35));
	border-bottom: 1px solid var(--sp-about-slider-line, rgba(215, 216, 218, 0.35));
}

.about-features-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: clamp(28px, 3vw, 48px) clamp(20px, 2.8vw, 42px);
	border-bottom: 1px solid var(--sp-about-slider-line, rgba(215, 216, 218, 0.35));
}

.about-features-header h2 {
	margin: 0;
	font-size: clamp(2.2rem, 3.1vw, 4rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
	font-weight: 500;
	max-width: 14ch;
	color: var(--sp-about-slider-heading, #d7d8da);
}

.about-features-controls {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.about-features-arrow {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	border: 0;
	background: var(--sp-about-slider-arrow-bg, #d7d8da);
	color: var(--sp-about-slider-arrow-text, #171a1f);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.85rem;
	line-height: 1;
	transition: transform 180ms ease, opacity 220ms ease;
}

.about-features-arrow[disabled] {
	opacity: 0.4;
	cursor: default;
}

.about-features-arrow:not([disabled]):hover {
	transform: translateY(-1px);
}

.about-features-viewport {
	overflow: hidden;
	touch-action: pan-y;
	overscroll-behavior-x: contain;
}

.about-features-track {
	display: flex;
	transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.about-feature-slide {
	flex: 0 0 33.3333%;
	min-height: clamp(440px, 38vw, 620px);
	padding: clamp(26px, 2.8vw, 44px) clamp(22px, 2.4vw, 36px) clamp(28px, 2.8vw, 44px);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0;
	border-right: 1px solid var(--sp-about-slider-line, rgba(215, 216, 218, 0.35));
}

.about-feature-icon {
	display: inline-flex;
	width: clamp(210px, 18vw, 320px);
	height: clamp(210px, 18vw, 320px);
	align-self: center;
	margin-top: clamp(10px, 2vw, 36px);
	margin-bottom: 0;
}

.about-feature-icon svg {
	width: 100%;
	height: 100%;
	display: block;
	fill: none;
	stroke: var(--sp-about-slider-icon, rgba(215, 216, 218, 0.86));
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.slider-nosotros-block .about-feature-icon {
	display: grid;
	place-items: center;
	align-self: center;
}

.slider-nosotros-block .about-feature-icon .about-feature-icon-svg {
	width: 78%;
	height: 78%;
	stroke-width: 0.95;
	overflow: visible;
}

.slider-nosotros-block .about-feature-icon .about-feature-icon-svg path,
.slider-nosotros-block .about-feature-icon .about-feature-icon-svg circle,
.slider-nosotros-block .about-feature-icon .about-feature-icon-svg rect,
.slider-nosotros-block .about-feature-icon .about-feature-icon-svg ellipse,
.slider-nosotros-block .about-feature-icon .about-feature-icon-svg line,
.slider-nosotros-block .about-feature-icon .about-feature-icon-svg polyline,
.slider-nosotros-block .about-feature-icon .about-feature-icon-svg polygon,
.slider-nosotros-block .about-feature-icon .about-feature-icon-svg g {
	transform-box: fill-box;
	transform-origin: center;
	transform: scale(1.9);
}

.about-feature-slide h3 {
	margin: auto 0 12px;
	font-size: clamp(2rem, 2.1vw, 3.1rem);
	line-height: 0.98;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--sp-about-slider-card-title, #ff5f52);
}

.about-feature-slide p {
	margin: 0;
	width: 100%;
	max-width: none;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.74rem, 0.78vw, 0.95rem);
	line-height: 1.42;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sp-about-slider-card-text, rgba(215, 216, 218, 0.88));
}

.about-showcase-block {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(120px, 0.12fr) minmax(280px, 0.3fr);
	background: var(--sp-about-showcase-bg, #171a1f);
	color: var(--sp-about-showcase-meta-text, #d7d8da);
	border-top: 1px solid var(--sp-about-showcase-border, rgba(215, 216, 218, 0.35));
	border-bottom: 1px solid var(--sp-about-showcase-border, rgba(215, 216, 218, 0.35));
}

.about-showcase-main {
	padding: clamp(28px, 3vw, 48px);
	border-right: 1px solid var(--sp-about-showcase-border, rgba(215, 216, 218, 0.35));
	display: grid;
	grid-template-columns: minmax(170px, 0.24fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(16px, 2.2vw, 28px);
}

.about-showcase-meta p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.82rem, 0.9vw, 1.04rem);
	line-height: 1.35;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sp-about-showcase-meta-text, rgba(215, 216, 218, 0.88));
}

.about-showcase-meta p + p {
	margin-top: 8px;
}

.about-showcase-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--sp-about-showcase-dot, #ff5f52);
	margin-right: 8px;
	transform: translateY(-1px);
}

.about-showcase-media {
	position: relative;
	min-height: clamp(300px, 34vw, 520px);
	display: grid;
	place-items: center;
}

.about-showcase-media-bg {
	position: absolute;
	inset: 8% 10%;
	background: var(--sp-about-showcase-media-bg, #ff5f52);
}

.about-showcase-media img {
	position: relative;
	z-index: 2;
	width: min(100%, 720px);
	height: auto;
	display: block;
	object-fit: contain;
	filter: contrast(1.03);
}

.about-showcase-media-image {
	width: min(86%, 560px);
	max-height: clamp(260px, 30vw, 430px);
	transform: scale(1.24);
	transform-origin: center;
}

.about-showcase-vertical {
	border-right: 1px solid var(--sp-about-showcase-border, rgba(215, 216, 218, 0.35));
	display: grid;
	place-items: center;
	font-size: clamp(5rem, 7.6vw, 9.5rem);
	line-height: 0.86;
	letter-spacing: -0.03em;
	color: var(--sp-about-showcase-vertical, rgba(215, 216, 218, 0.9));
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.about-showcase-side {
	display: grid;
	grid-template-rows: 1fr auto;
}

.about-showcase-copy {
	background: var(--sp-about-showcase-side-bg, #d7d8da);
	color: var(--sp-about-showcase-side-text, #171a1f);
	padding: clamp(24px, 2.5vw, 38px);
	display: flex;
	align-items: center;
}

.about-showcase-copy p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.78rem, 0.84vw, 1rem);
	line-height: 1.35;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.about-showcase-cta {
	background: var(--sp-about-showcase-cta-bg, #ff5f52);
	color: var(--sp-about-showcase-cta-text, #171a1f);
	text-decoration: none;
	padding: clamp(22px, 2.2vw, 34px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	min-height: clamp(220px, 19vw, 320px);
	transition: box-shadow 220ms ease, transform 220ms ease;
	cursor: pointer;
}

.about-showcase-cta-icon {
	position: relative;
	display: block;
	width: clamp(64px, 6.8vw, 108px);
	height: clamp(64px, 6.8vw, 108px);
	align-self: flex-end;
	--about-cta-arrow-stroke: clamp(8px, 0.7vw, 12px);
	transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.about-showcase-cta-icon-line {
	position: absolute;
	left: 8%;
	right: 8%;
	top: 50%;
	height: var(--about-cta-arrow-stroke);
	background: var(--sp-about-showcase-cta-text, #171a1f);
	transform: translateY(-50%) rotate(-45deg);
	transform-origin: center;
}

.about-showcase-cta-icon::before,
.about-showcase-cta-icon::after {
	content: "";
	position: absolute;
	background: var(--sp-about-showcase-cta-text, #171a1f);
	top: 8%;
	right: 8%;
}

.about-showcase-cta-icon::before {
	width: 56%;
	height: var(--about-cta-arrow-stroke);
}

.about-showcase-cta-icon::after {
	width: var(--about-cta-arrow-stroke);
	height: 56%;
}

.about-showcase-cta-text {
	font-size: clamp(1.45rem, 1.9vw, 2.5rem);
	line-height: 0.95;
	font-weight: 500;
	letter-spacing: -0.02em;
	transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
	will-change: transform;
}

.about-showcase-cta:hover,
.about-showcase-cta:focus-visible {
	box-shadow: none;
}

.about-showcase-cta:hover .about-showcase-cta-icon,
.about-showcase-cta:focus-visible .about-showcase-cta-icon {
	transform: translate(6px, -6px);
}

.about-showcase-cta:hover .about-showcase-cta-text,
.about-showcase-cta:focus-visible .about-showcase-cta-text {
	transform: translateY(-4px);
}

.about-resources-block {
	background: var(--sp-about-resources-bg, #ff5f52);
	color: var(--sp-about-resources-text, #171a1f);
	border-top: 1px solid var(--sp-about-resources-border, rgba(23, 26, 31, 0.24));
}

.about-resources-inner {
	padding: clamp(30px, 3vw, 48px) clamp(20px, 2.8vw, 42px) clamp(34px, 3.2vw, 54px);
	display: grid;
	grid-template-columns: minmax(150px, 0.24fr) minmax(260px, 0.34fr) minmax(0, 0.52fr);
	gap: clamp(24px, 2.6vw, 42px);
	align-items: start;
}

.about-resources-label {
	margin: 0;
	font-size: clamp(1.5rem, 1.9vw, 2.8rem);
	line-height: 0.96;
	letter-spacing: -0.01em;
	font-weight: 500;
	color: var(--sp-about-resources-label, #171a1f);
}

.about-resources-col-main h2 {
	margin: 0 0 clamp(18px, 1.8vw, 30px);
	font-size: clamp(2.2rem, 3vw, 4.2rem);
	line-height: 0.92;
	letter-spacing: -0.03em;
	font-weight: 500;
	color: var(--sp-about-resources-title, #171a1f);
}

.about-resources-text {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.74rem, 0.8vw, 0.95rem);
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	max-width: 42ch;
	color: var(--sp-about-resources-text, #171a1f);
}

.about-resources-image-wrap {
	overflow: hidden;
	align-self: start;
}

.about-resources-image-wrap img,
.about-resources-image-wrap video {
	display: block;
	width: 100%;
	height: auto;
}

.home-contact-footer {
	background: #171a1f;
	color: #ff5f52;
	padding: clamp(20px, 2.6vw, 36px) clamp(22px, 2.2vw, 40px) clamp(28px, 3vw, 48px);
}

.home-contact-footer-inner {
	display: grid;
	gap: clamp(28px, 3.2vw, 54px);
}

.home-contact-topline {
	height: 1px;
	background: rgba(255, 95, 82, 0.85);
}

.home-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) auto;
	gap: clamp(20px, 2.2vw, 34px);
}

.home-contact-col {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.home-contact-col-contact {
	gap: 29px;
}

.home-contact-label {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(1rem, 0.9vw, 1.15rem);
	line-height: 1.1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.home-contact-logo {
	display: block;
	width: clamp(170px, 14vw, 260px);
	height: auto;
	margin-bottom: 14px;
}

.home-contact-link {
	color: #d7d8da;
	text-decoration: none;
	font-size: clamp(1.55rem, 1.9vw, 2.7rem);
	line-height: 1.02;
	font-weight: 500;
	letter-spacing: -0.02em;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.home-contact-col-social {
	align-self: flex-start;
}

.home-footer-nav-list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.home-footer-nav-list a {
	color: #d7d8da;
	text-decoration: none;
	font-size: clamp(1.55rem, 1.9vw, 2.7rem);
	line-height: 1.02;
	font-weight: 500;
	letter-spacing: -0.02em;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.home-footer-nav-list a:hover {
	text-decoration: underline;
	text-underline-offset: 0.14em;
}

.home-social-links {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 2px;
}

.home-social-link {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ff5f52;
	text-decoration: none;
	background: transparent;
	transition: transform 180ms ease, opacity 220ms ease;
}

.home-social-link svg {
	display: block;
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-social-link:hover {
	opacity: 0.82;
	transform: translateY(-1px);
}

.home-social-link:focus-visible {
	outline: 2px solid #ff5f52;
	outline-offset: 3px;
}

.home-contact-subscribe {
	padding-top: clamp(20px, 2.4vw, 34px);
	border-top: 1px solid rgba(255, 95, 82, 0.2);
}

.home-contact-subscribe .wpcf7,
.home-contact-subscribe .wpcf7 form {
	display: grid;
	gap: 0;
}

.home-contact-subscribe .wpcf7 form > p {
	margin: 0;
}

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

.home-contact-subscribe-label {
	display: block;
	margin-bottom: clamp(12px, 1.3vw, 20px);
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(1rem, 0.9vw, 1.1rem);
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.home-contact-subscribe .wpcf7 form > p > label {
	display: block;
	margin-bottom: clamp(12px, 1.3vw, 20px);
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(1rem, 0.9vw, 1.1rem);
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.home-contact-subscribe-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: clamp(16px, 2vw, 24px);
	align-items: center;
}

.home-contact-subscribe .wpcf7-form-control-wrap {
	display: block;
}

.home-contact-subscribe .wpcf7 form > p:has(> label > .wpcf7-form-control-wrap),
.home-contact-subscribe .wpcf7 form > p:has(> .wpcf7-form-control-wrap) {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: clamp(16px, 2vw, 24px);
	align-items: center;
}

.home-contact-subscribe .wpcf7 form > p:has(> label > .wpcf7-form-control-wrap) > label {
	margin-bottom: 0;
	grid-column: 1 / -1;
}

.home-contact-subscribe .wpcf7 form > p:has(> label > .wpcf7-form-control-wrap) > label .wpcf7-form-control-wrap {
	margin-top: clamp(12px, 1.3vw, 20px);
}

.home-contact-subscribe .home-contact-subscribe-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(16px, 2vw, 24px);
	align-items: center;
}

.home-contact-subscribe .home-contact-subscribe-row > p {
	margin: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(16px, 2vw, 24px);
	align-items: center;
}

.home-contact-subscribe .home-contact-subscribe-row > p > .wpcf7-form-control-wrap {
	min-width: 0;
}

.home-contact-subscribe-row input {
	border: 0;
	border-bottom: 1px solid rgba(255, 95, 82, 0.35);
	background: transparent;
	color: #ff5f52;
	padding: 0 0 10px;
	font-size: clamp(3rem, 4vw, 6.2rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
}

.home-contact-subscribe .wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.home-contact-subscribe .wpcf7 input[type="email"],
.home-contact-subscribe .wpcf7 input[type="text"] {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(255, 95, 82, 0.35);
	background: transparent;
	color: #ff5f52;
	padding: 0 0 10px;
	font-size: clamp(3rem, 4vw, 6.2rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	border-radius: 0;
	box-shadow: none;
}

.home-contact-subscribe-row input::placeholder {
	color: rgba(255, 95, 82, 0.92);
}

.home-contact-subscribe .wpcf7 input::placeholder {
	color: rgba(255, 95, 82, 0.92);
}

.home-contact-subscribe-row input:focus-visible {
	outline: none;
	border-color: #ff5f52;
}

.home-contact-subscribe .wpcf7 input:focus-visible {
	outline: none;
	border-color: #ff5f52;
}

.home-contact-subscribe-row button {
	border: 0;
	border-radius: 999px;
	background: #ff5f52;
	color: #171a1f;
	padding: 18px 28px;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: transform 160ms ease, opacity 200ms ease;
}

.home-contact-subscribe .wpcf7 input[type="submit"],
.home-contact-subscribe .wpcf7 .wpcf7-submit {
	border: 0;
	border-radius: 999px;
	background: #ff5f52;
	color: #171a1f;
	padding: 18px 28px;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: transform 160ms ease, opacity 200ms ease;
}

.home-contact-subscribe-row button:hover {
	opacity: 0.88;
}

.home-contact-subscribe .wpcf7 input[type="submit"]:hover,
.home-contact-subscribe .wpcf7 .wpcf7-submit:hover {
	opacity: 0.88;
}

.home-contact-subscribe-row button:active {
	transform: translateY(1px);
}

.home-contact-subscribe .wpcf7 input[type="submit"]:active,
.home-contact-subscribe .wpcf7 .wpcf7-submit:active {
	transform: translateY(1px);
}

.home-contact-subscribe .wpcf7-spinner {
	margin: 10px 0 0;
	background: rgba(255, 95, 82, 0.2);
}

.home-contact-subscribe .wpcf7-response-output,
.home-contact-subscribe .wpcf7-not-valid-tip {
	margin: 12px 0 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.74rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-contact-legal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 95, 82, 0.2);
}

.home-contact-legal p {
	margin: 0;
	font-size: 0.74rem;
	letter-spacing: 0.06em;
	line-height: 1.2;
	color: rgba(255, 95, 82, 0.9);
}

.home-contact-legal a {
	color: inherit;
	text-decoration: none;
}

.home-contact-legal a:hover {
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.projects-page-hero {
	background: var(--sp-projects-hero-bg, #171a1f);
	background-image: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.04), transparent 44%);
	color: var(--sp-projects-hero-title, #d7d8da);
	min-height: clamp(560px, 76svh, 900px);
	margin-top: calc(-1 * clamp(90px, 9vw, 120px));
	padding: clamp(110px, 9vw, 150px) clamp(26px, 3.3vw, 48px) clamp(34px, 3.8vw, 52px);
}

.projects-page-hero-inner {
	min-height: calc(100svh - clamp(150px, 14vw, 210px));
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 440px);
	gap: clamp(24px, 3vw, 44px);
	align-items: start;
}

.projects-page-title {
	grid-column: 1;
	grid-row: 1;
	align-self: end;
	margin: 0;
	max-width: 8ch;
	font-size: clamp(4.7rem, 15.2vw, 18.2rem);
	line-height: 0.86;
	letter-spacing: -0.06em;
	font-weight: 600;
}

.projects-page-card {
	grid-column: 2;
	grid-row: 1;
	align-self: start;
	justify-self: end;
	margin-top: 140px;
	width: min(100%, 440px);
	background: var(--sp-projects-hero-card-bg, #ff5f52);
	color: var(--sp-projects-hero-card-title, #111823);
	padding: clamp(26px, 2.5vw, 38px);
	display: grid;
	gap: clamp(16px, 1.7vw, 22px);
}

.projects-page-card-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	color: var(--sp-projects-hero-card-icon, #111823);
}

.projects-page-card-icon svg,
.projects-page-card-icon-svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.35;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.projects-page-card h2 {
	margin: 0;
	font-size: clamp(2rem, 2.25vw, 3.05rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
	font-weight: 500;
	max-width: 11ch;
	color: var(--sp-projects-hero-card-title, #111823);
}

.projects-page-card p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.82rem, 0.88vw, 1.03rem);
	line-height: 1.4;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	max-width: 33ch;
	color: var(--sp-projects-hero-card-text, #111823);
}

.projects-hero-block {
	width: 100%;
}

.projects-page-content {
	padding-top: clamp(16px, 1.5vw, 24px);
}

.projects-grid-section {
	background: #171a1f;
	background-image: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.03), transparent 45%);
	color: #d7d8da;
}

.projects-manifesto {
	background: var(--sp-projects-manifesto-bg, #171a1f);
	background-image: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.03), transparent 45%);
	color: var(--sp-projects-manifesto-text, #d7d8da);
	padding: clamp(18px, 2.2vw, 34px) clamp(20px, 2.8vw, 40px) clamp(270px, 16vw, 330px);
}

.projects-manifesto-inner {
	border-top: 1px solid var(--sp-projects-manifesto-line, rgba(215, 216, 218, 0.4));
	padding-top: clamp(18px, 2.2vw, 32px);
}

.projects-manifesto p {
	margin: 0;
	max-width: 26ch;
	font-size: clamp(2.3rem, 6.1vw, 8.5rem);
	line-height: 0.95;
	letter-spacing: -0.03em;
	font-weight: 500;
	color: var(--sp-projects-manifesto-text, #d7d8da);
}

.js .projects-manifesto p {
	opacity: 0;
	transform: translate3d(0, 58px, 0);
	transition:
		opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform, opacity;
}

.js .projects-manifesto p.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.projects-trust-block {
	background: var(--sp-logos-bg, #ff5f52);
	color: var(--sp-logos-title, #171a1f);
	padding: clamp(120px, 12vw, 220px) clamp(16px, 2.4vw, 36px) clamp(120px, 12vw, 220px);
}

.projects-trust-inner {
	width: 100%;
}

.projects-trust-inner h2 {
	margin: 0 0 clamp(26px, 3vw, 44px);
	text-align: center;
	font-size: clamp(2.7rem, 7.4vw, 9rem);
	line-height: 0.9;
	letter-spacing: -0.04em;
	font-weight: 600;
	color: var(--sp-logos-title, #171a1f);
}

.projects-logos-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	max-width: none;
	gap: 18px;
}

.projects-logo-card {
	position: relative;
	isolation: isolate;
	display: grid;
	place-items: center;
	overflow: hidden;
	transform:
		perspective(1200px)
		translate3d(0, var(--logo-card-offset, 54px), 0)
		rotateX(var(--logo-card-tilt-x, 10deg))
		rotateY(var(--logo-card-tilt-y, 0deg))
		scale(var(--logo-card-scale, 0.94));
	transform-origin: 50% 50%;
	opacity: var(--logo-card-opacity, 0);
	will-change: transform, opacity, filter;
}

.projects-logo-card::before,
.projects-logo-card::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}


.projects-logo-card--light::before {
	border-color: rgba(23, 26, 31, 0.14);
}

.projects-logo-card.is-visible {
	--logo-card-offset: 0px;
	--logo-card-tilt-x: 0deg;
	--logo-card-scale: 1;
	--logo-card-opacity: 1;
	--logo-card-blur: 0px;
}

.projects-logo-mark {
	position: relative;
	z-index: 1;
	width: 100%;
	display: grid;
	place-items: center;
	min-height: 100%;
}

.projects-logo-mark img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	transform: translate3d(0, var(--logo-mark-shift, 0px), 0) scale(var(--logo-mark-scale, 1));
	transition: transform 140ms linear, filter 320ms ease;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
	will-change: transform;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	border-right: 1px solid rgba(215, 216, 218, 0.45);
	border-bottom: 1px solid rgba(215, 216, 218, 0.45);
}

.projects-grid-item {
	grid-column: span 2;
	min-height: clamp(460px, 40vw, 620px);
	padding: clamp(30px, 2.5vw, 42px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: clamp(22px, 2.2vw, 34px);
	border-top: 1px solid rgba(215, 216, 218, 0.45);
	border-left: 1px solid rgba(215, 216, 218, 0.45);
	transition: background-color 240ms ease;
}

.projects-grid-link {
	text-decoration: none;
	color: inherit;
}

.projects-grid-link:focus-visible {
	outline: 1px solid rgba(215, 216, 218, 0.72);
	outline-offset: -1px;
}

.projects-grid-empty {
	grid-column: 1 / -1;
	border-top: 1px solid rgba(215, 216, 218, 0.45);
	border-left: 1px solid rgba(215, 216, 218, 0.45);
	min-height: 220px;
	display: grid;
	place-items: center;
	padding: 24px;
	text-align: center;
}

.projects-grid-empty p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.84rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #d7d8da;
}

.projects-grid-row-line {
	display: none;
}

@media (min-width: 1201px) {
	.projects-grid--remainder-1 .projects-grid-item:last-child {
		grid-column: 1 / -1;
	}

	.projects-grid--remainder-2 .projects-grid-item:nth-last-child(2),
	.projects-grid--remainder-2 .projects-grid-item:last-child {
		grid-column: span 3;
	}
}

.projects-grid-icon {
	flex: 1;
	display: grid;
	place-items: center;
	padding-top: clamp(10px, 1.1vw, 18px);
}

.projects-grid-icon svg {
	width: min(100%, 210px);
	height: auto;
	fill: none;
	stroke: rgba(215, 216, 218, 0.92);
	stroke-width: 1.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
	transform-origin: center;
}

.projects-grid-item h3 {
	margin: 0;
	font-size: clamp(1.9rem, 2.35vw, 3.15rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
	font-weight: 500;
	color: #ff5f52;
}

.projects-grid-item p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.78rem, 0.84vw, 0.95rem);
	line-height: 1.35;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	width: 100%;
	max-width: none;
}

.projects-grid-item h3,
.projects-grid-item p {
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.projects-grid-item:hover .projects-grid-icon svg,
.projects-grid-item:focus-within .projects-grid-icon svg {
	transform: scale(1.08);
}

.projects-grid-item:hover h3,
.projects-grid-item:focus-within h3 {
	transform: translateY(-6px);
}

.projects-grid-item:hover p,
.projects-grid-item:focus-within p {
	transform: translateY(-3px);
}

.portfolio-single-hero {
	background-color: #171a1f;
	background-image:
		radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.05), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
		repeating-linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.025) 0,
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px,
			transparent 20px
		);
	color: #d7d8da;
	margin-top: calc(-1 * clamp(90px, 9vw, 120px));
	padding: clamp(118px, 9.8vw, 164px) clamp(22px, 3vw, 46px) clamp(54px, 5vw, 86px);
	overflow: clip;
}

.portfolio-single-hero-inner {
	display: grid;
	gap: clamp(28px, 2.6vw, 40px);
	max-width: 1480px;
	margin: 0 auto;
}

.portfolio-single-hero-grid {
	min-height: calc(100svh - clamp(174px, 15vw, 234px));
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
	grid-template-rows: auto 1fr;
	column-gap: clamp(24px, 3.4vw, 72px);
	row-gap: clamp(36px, 4vw, 68px);
	align-items: start;
}

.portfolio-single-kicker a {
	display: none;
	align-items: center;
	gap: 8px;
	color: #d7d8da;
	text-decoration: none;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.portfolio-single-kicker a:hover {
	opacity: 0.78;
}

.portfolio-single-icon {
	width: clamp(82px, 9vw, 132px);
	height: clamp(82px, 9vw, 132px);
}

.portfolio-single-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: rgba(215, 216, 218, 0.92);
	stroke-width: 1.25;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.portfolio-single-title {
	grid-column: 1 / -1;
	grid-row: 2;
	margin: 0;
	max-width: min(10ch, 100%);
	align-self: end;
	font-size: clamp(4.6rem, 15.8vw, 18rem);
	line-height: 0.8;
	letter-spacing: -0.05em;
	font-weight: 500;
	text-wrap: balance;
}

.portfolio-single-card {
	grid-column: 2;
	grid-row: 1;
	align-self: start;
	justify-self: end;
	width: min(100%, 560px);
	min-height: clamp(360px, 33vw, 628px);
	background: #ff5f52;
	color: #111823;
	padding: clamp(28px, 2.9vw, 54px);
	display: grid;
	grid-template-rows: auto 1fr;
	gap: clamp(36px, 4.2vw, 88px);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}

.portfolio-single-card .portfolio-single-icon {
	width: clamp(48px, 5vw, 72px);
	height: clamp(48px, 5vw, 72px);
}

.portfolio-single-card .portfolio-single-icon svg {
	stroke: currentColor;
}

.portfolio-single-card-content {
	display: grid;
	align-content: start;
	gap: clamp(28px, 3vw, 54px);
}

.portfolio-single-subtitle {
	margin: 0;
	font-size: clamp(2rem, 2.9vw, 4.05rem);
	line-height: 0.92;
	letter-spacing: -0.02em;
	font-weight: 500;
	max-width: 11ch;
	text-wrap: balance;
}

.portfolio-single-intro {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.84rem, 0.9vw, 1.12rem);
	line-height: 1.42;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	max-width: 33ch;
}

.portfolio-single-showcase {
	background: #171a1f;
	color: #d7d8da;
	padding: 0 0 clamp(28px, 3.2vw, 44px);
}

.portfolio-single-showcase-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.32fr);
	grid-template-areas:
		"image meta"
		"image next";
	align-items: stretch;
	gap: 0;
	overflow: hidden;
}

.portfolio-single-showcase-image {
	grid-area: image;
	min-height: clamp(420px, 52vw, 980px);
	background: rgba(255, 255, 255, 0.06);
}

.portfolio-single-showcase-image img,
.portfolio-single-showcase-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio-single-showcase-placeholder {
	background:
		radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 20%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		#2a3038;
}

.portfolio-single-meta-card {
	grid-area: meta;
	background: #d7d8da;
	color: #171a1f;
	padding: clamp(28px, 3vw, 44px);
	display: grid;
	align-content: end;
	gap: clamp(18px, 2.3vw, 28px);
	min-height: clamp(220px, 18vw, 320px);
	border-left: 1px solid rgba(23, 26, 31, 0.08);
}

.portfolio-single-meta-label {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.84rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.portfolio-single-meta-value {
	margin: 0;
	font-size: clamp(2rem, 2.8vw, 3.5rem);
	line-height: 0.94;
	letter-spacing: -0.03em;
	font-weight: 500;
	text-wrap: balance;
}

.portfolio-single-project-nav {
	grid-area: next;
	display: grid;
	grid-template-rows: 1fr 1fr;
	min-height: clamp(320px, 28vw, 520px);
}

.portfolio-single-project-link {
	background:
		repeating-linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.02) 0,
			rgba(255, 255, 255, 0.02) 1px,
			transparent 1px,
			transparent 20px
		),
		#20262e;
	color: #d7d8da;
	padding: clamp(28px, 3vw, 42px);
	text-decoration: none;
	display: grid;
	grid-template-rows: auto 1fr;
	gap: clamp(40px, 5vw, 86px);
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	transition: none;
}

.portfolio-single-project-link + .portfolio-single-project-link {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-single-project-icon {
	justify-self: end;
	width: 72px;
	height: 72px;
	transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.portfolio-single-project-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: square;
	stroke-linejoin: miter;
}

.portfolio-single-project-copy {
	display: grid;
	align-content: end;
	gap: 12px;
	transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
	will-change: transform;
}

.portfolio-single-project-label {
	font-size: 0.92rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
}

.portfolio-single-project-title {
	font-size: clamp(2rem, 2.9vw, 4rem);
	line-height: 0.95;
	letter-spacing: -0.03em;
	font-weight: 500;
	text-wrap: balance;
}

.portfolio-single-project-link:hover .portfolio-single-project-icon,
.portfolio-single-project-link:focus-visible .portfolio-single-project-icon {
	transform: translate(6px, -6px);
}

.portfolio-single-project-link:hover .portfolio-single-project-copy,
.portfolio-single-project-link:focus-visible .portfolio-single-project-copy {
	transform: translateY(-4px);
}

.portfolio-single-project-link.is-disabled {
	opacity: 0.42;
	cursor: default;
	pointer-events: none;
}

.portfolio-single-project-link.is-disabled .portfolio-single-project-icon,
.portfolio-single-project-link.is-disabled .portfolio-single-project-copy {
	transform: none;
}

.portfolio-single-content {
	background: #171a1f;
	color: #d7d8da;
	padding: clamp(12px, 1.8vw, 24px) clamp(22px, 3vw, 40px) clamp(70px, 7vw, 120px);
}

.portfolio-single-content-inner {
	max-width: 1060px;
	margin: 0 auto;
	border-top: 1px solid rgba(215, 216, 218, 0.35);
	padding-top: clamp(22px, 2.8vw, 38px);
}

.portfolio-single-article {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	display: grid;
	gap: clamp(18px, 2vw, 28px);
}

.portfolio-single-article > *:first-child {
	margin-top: 0;
}

.portfolio-single-article > *:last-child {
	margin-bottom: 0;
}

.portfolio-single-article h1,
.portfolio-single-article h2,
.portfolio-single-article h3,
.portfolio-single-article h4,
.portfolio-single-article h5,
.portfolio-single-article h6 {
	margin: 1.25em 0 0.18em;
	font-weight: 500;
	color: #d7d8da;
	letter-spacing: -0.035em;
	line-height: 0.96;
	text-wrap: balance;
	max-width: 16ch;
}

.portfolio-single-article h1 {
	font-size: clamp(2.9rem, 4.6vw, 5.6rem);
}

.portfolio-single-article h2 {
	font-size: clamp(2.45rem, 3.8vw, 4.6rem);
}

.portfolio-single-article h3 {
	font-size: clamp(2rem, 3vw, 3.6rem);
}

.portfolio-single-article h4 {
	font-size: clamp(1.65rem, 2.4vw, 2.8rem);
}

.portfolio-single-article h5 {
	font-size: clamp(1.3rem, 1.8vw, 2.1rem);
}

.portfolio-single-article h6 {
	font-size: clamp(1.05rem, 1.3vw, 1.45rem);
	letter-spacing: 0.12em;
	line-height: 1.28;
	text-transform: uppercase;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
}

.portfolio-single-article p,
.portfolio-single-article li,
.portfolio-single-article blockquote {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(1rem, 1.06vw, 1.26rem);
	line-height: 1.46;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #d7d8da;
	max-width: 44ch;
}

.portfolio-single-article ul,
.portfolio-single-article ol {
	padding-left: 1.2em;
	margin: 0;
	display: grid;
	gap: 0.5em;
}

.portfolio-single-article blockquote {
	padding-left: 1.2em;
	border-left: 1px solid rgba(255, 95, 82, 0.4);
}

.portfolio-single-article strong {
	color: #f1f2f4;
}

.portfolio-single-article a {
	color: #ff5f52;
	text-decoration-color: currentColor;
	text-underline-offset: 0.18em;
}

@media (max-width: 1200px) {
	.projects-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.projects-grid-item {
		grid-column: span 2;
	}

	.portfolio-single-title {
		font-size: clamp(4rem, 14vw, 10.6rem);
	}

	.portfolio-single-hero-grid {
		min-height: auto;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}

	.portfolio-single-card {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
		width: min(100%, 520px);
	}

	.portfolio-single-title {
		grid-column: 1;
		grid-row: 2;
	}

	.portfolio-single-showcase-grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			"image"
			"meta"
			"next";
	}

	.portfolio-single-showcase-image {
		min-height: 420px;
	}

	.portfolio-single-meta-card,
	.portfolio-single-project-link {
		border-left: 0;
	}
}

.contact-page-hero {
	background: var(--sp-contact-hero-bg, #d0d0d0);
	color: var(--sp-contact-title, #111823);
	min-height: clamp(560px, 74svh, 840px);
	margin-top: calc(-1 * clamp(90px, 9vw, 120px));
	padding: clamp(110px, 9vw, 150px) clamp(26px, 3.3vw, 48px) clamp(38px, 4vw, 56px);
}

.contact-page-hero-inner {
	min-height: clamp(410px, 56svh, 660px);
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
	grid-template-rows: 1fr auto;
	gap: clamp(24px, 2.7vw, 44px);
	align-items: start;
}

.contact-page-title {
	grid-column: 1 / -1;
	grid-row: 2;
	margin: 0;
	font-size: clamp(4.5rem, 16.4vw, 21rem);
	line-height: 0.82;
	letter-spacing: -0.06em;
	font-weight: 600;
	display: grid;
	gap: 0;
	color: var(--sp-contact-title, #111823);
}

.contact-page-title span {
	display: block;
}

.contact-page-card {
	grid-column: 2;
	grid-row: 1;
	align-self: start;
	justify-self: end;
	margin-top: 15px;
	width: min(100%, 440px);
	background: var(--sp-contact-card-bg, #ff5f52);
	color: var(--sp-contact-card-text, #111823);
	padding: clamp(30px, 2.8vw, 40px);
	display: grid;
	gap: clamp(18px, 1.8vw, 24px);
}

.contact-page-card-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	color: var(--sp-contact-card-icon, #111823);
}

.contact-page-card-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.35;
	stroke-linejoin: round;
}

.contact-page-card h2 {
	margin: 0;
	font-size: clamp(2rem, 2.45vw, 3.2rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
	font-weight: 500;
	max-width: 11ch;
	color: var(--sp-contact-card-title, #111823);
}

.contact-page-card p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.84rem, 0.9vw, 1.08rem);
	line-height: 1.38;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	max-width: 32ch;
	color: var(--sp-contact-card-text, #111823);
}

.contact-page-content {
	background: #d0d0d0;
	padding: clamp(10px, 1.2vw, 18px) 0 clamp(46px, 4vw, 74px);
}

.contact-page-message {
	background: #171a1f;
	color: #d7d8da;
	padding: clamp(24px, 2.8vw, 38px) clamp(22px, 3vw, 40px) clamp(190px, 20vw, 320px);
}

.contact-page-message-inner {
	border-top: 1px solid rgba(215, 216, 218, 0.35);
	padding-top: clamp(22px, 2.7vw, 36px);
}

.contact-page-message p {
	margin: 0;
	max-width: 21ch;
	font-size: clamp(2.2rem, 5.2vw, 7.4rem);
	line-height: 0.95;
	letter-spacing: -0.03em;
	font-weight: 500;
}

.contact-form-block {
	background: #171a1f;
	background-image: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.035), transparent 42%);
	color: #d7d8da;
	padding: 0 clamp(22px, 3vw, 40px) clamp(86px, 8vw, 132px);
}

.contact-form-block-inner {
	border-top: 1px solid rgba(215, 216, 218, 0.35);
	padding-top: clamp(26px, 2.8vw, 40px);
	display: grid;
	grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1.34fr);
	gap: clamp(42px, 4.8vw, 86px);
	align-items: start;
}

.contact-form-intro {
	padding-top: 4px;
}

.contact-form-intro h2 {
	margin: 0;
	font-size: clamp(2.3rem, 2.85vw, 3.9rem);
	line-height: 1;
	letter-spacing: -0.035em;
	font-weight: 450;
	color: #f1f3f6;
}

.contact-form-ui {
	display: grid;
	gap: clamp(16px, 1.7vw, 26px);
}

.contact-form-shortcode-empty {
	margin: 0;
	padding: 18px 20px;
	border: 1px dashed rgba(215, 216, 218, 0.45);
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: clamp(0.78rem, 0.86vw, 1rem);
	line-height: 1.45;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(215, 216, 218, 0.82);
}

.contact-form-ui .wpcf7,
.contact-form-ui .wpcf7 form {
	display: grid;
	gap: clamp(16px, 1.7vw, 26px);
}

.contact-form-ui .wpcf7 form > p {
	margin: 0;
	display: grid;
	gap: 10px;
}

.contact-form-ui .wpcf7 form > p > label,
.contact-form-ui .wpcf7 form > p .wpcf7-list-item-label {
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #d7d8da;
}

.contact-form-ui .wpcf7 form > p > label {
	display: grid;
	gap: 10px;
}

.contact-form-ui .wpcf7 form > p > label .wpcf7-form-control-wrap,
.contact-form-ui .wpcf7 form > p > .wpcf7-form-control-wrap {
	display: block;
}

.contact-form-ui .wpcf7 form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.contact-form-ui .wpcf7 form select,
.contact-form-ui .wpcf7 form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(215, 216, 218, 0.35);
	background: transparent;
	color: #d7d8da;
	padding: 0 0 14px;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	font-size: clamp(2.2rem, 2.7vw, 3.3rem);
	line-height: 0.96;
	letter-spacing: -0.03em;
	border-radius: 0;
	box-shadow: none;
}

.contact-form-ui .wpcf7 form textarea {
	resize: vertical;
	min-height: 140px;
	max-height: 280px;
	line-height: 1.02;
	padding-top: 6px;
}

.contact-form-ui .wpcf7 form input::placeholder,
.contact-form-ui .wpcf7 form select:invalid,
.contact-form-ui .wpcf7 form textarea::placeholder {
	color: rgba(215, 216, 218, 0.24);
}

.contact-form-ui .wpcf7 form select {
	appearance: none;
	padding-right: 42px;
	cursor: pointer;
}

.contact-form-ui .wpcf7 form input:focus-visible,
.contact-form-ui .wpcf7 form select:focus-visible,
.contact-form-ui .wpcf7 form textarea:focus-visible {
	outline: none;
	border-color: rgba(255, 95, 82, 0.72);
}

.contact-form-ui .wpcf7 form input[type="checkbox"],
.contact-form-ui .wpcf7 form input[type="radio"] {
	appearance: none;
	width: 26px;
	height: 26px;
	border: 1px solid rgba(215, 216, 218, 0.55);
	background: transparent;
	display: inline-grid;
	place-items: center;
	margin: 0;
	border-radius: 0;
	box-shadow: none;
}

.contact-form-ui .wpcf7 form input[type="checkbox"]::before,
.contact-form-ui .wpcf7 form input[type="radio"]::before {
	content: "";
	width: 12px;
	height: 12px;
	background: #ff5f52;
	transform: scale(0);
	transition: transform 140ms ease;
}

.contact-form-ui .wpcf7 form input[type="checkbox"]:checked::before,
.contact-form-ui .wpcf7 form input[type="radio"]:checked::before {
	transform: scale(1);
}

.contact-form-ui .wpcf7 form .wpcf7-acceptance .wpcf7-list-item,
.contact-form-ui .wpcf7 form .wpcf7-checkbox .wpcf7-list-item {
	margin: 0;
}

.contact-form-ui .wpcf7 form .wpcf7-acceptance .wpcf7-list-item label,
.contact-form-ui .wpcf7 form .wpcf7-checkbox .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.contact-form-ui .wpcf7 form input[type="submit"],
.contact-form-ui .wpcf7 form .wpcf7-submit {
	margin-top: 18px;
	width: fit-content;
	min-width: 270px;
	border: 0;
	border-radius: 999px;
	background: #f1f3f6;
	color: #171a1f;
	padding: 19px 42px;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	font-size: 1.14rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity 180ms ease, transform 160ms ease;
}

.contact-form-ui .wpcf7 form input[type="submit"]:hover,
.contact-form-ui .wpcf7 form .wpcf7-submit:hover {
	opacity: 0.88;
}

.contact-form-ui .wpcf7 form input[type="submit"]:active,
.contact-form-ui .wpcf7 form .wpcf7-submit:active {
	transform: translateY(1px);
}

.contact-form-field {
	display: grid;
	gap: 10px;
}

.contact-form-field label {
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #d7d8da;
}

.contact-form-field label span {
	color: #ff5f52;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(215, 216, 218, 0.35);
	background: transparent;
	color: #d7d8da;
	padding: 0 0 14px;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	font-size: clamp(2.2rem, 2.7vw, 3.3rem);
	line-height: 0.96;
	letter-spacing: -0.03em;
}

.contact-form-field .wpcf7-form-control-wrap {
	display: block;
}

.contact-form-field textarea {
	resize: vertical;
	min-height: 140px;
	max-height: 280px;
	line-height: 1.02;
	padding-top: 6px;
}

.contact-form-field input::placeholder,
.contact-form-field select:invalid,
.contact-form-field textarea::placeholder {
	color: rgba(215, 216, 218, 0.24);
}

.contact-form-field select {
	appearance: none;
	padding-right: 42px;
	cursor: pointer;
}

.contact-form-field-select {
	position: relative;
}

.contact-form-field-select.is-enhanced::after {
	display: none;
}

.contact-form-field-select::after {
	content: "⌄";
	position: absolute;
	right: 2px;
	bottom: 14px;
	font-size: 1.75rem;
	line-height: 1;
	color: rgba(215, 216, 218, 0.72);
	pointer-events: none;
}

.contact-form-field-select.is-enhanced select {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.contact-select {
	position: relative;
}

.contact-select-trigger {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(215, 216, 218, 0.35);
	background: transparent;
	color: rgba(215, 216, 218, 0.24);
	padding: 0 42px 14px 0;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	font-size: clamp(2.2rem, 2.7vw, 3.3rem);
	line-height: 0.96;
	letter-spacing: -0.03em;
	text-align: left;
	cursor: pointer;
	transition: border-color 200ms ease, color 200ms ease;
}

.contact-select.has-value .contact-select-trigger,
.contact-select.is-open .contact-select-trigger {
	color: #d7d8da;
}

.contact-select-trigger:focus-visible {
	outline: none;
	border-color: rgba(255, 95, 82, 0.72);
}

.contact-select-trigger::after {
	content: "⌄";
	position: absolute;
	right: 2px;
	bottom: 14px;
	font-size: 1.75rem;
	line-height: 1;
	color: rgba(215, 216, 218, 0.72);
	transition: transform 180ms ease;
	pointer-events: none;
}

.contact-select.is-open .contact-select-trigger::after {
	transform: rotate(180deg);
}

.contact-select-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: 0;
	right: 0;
	z-index: 20;
	display: grid;
	gap: 6px;
	padding: 10px;
	border: 1px solid rgba(215, 216, 218, 0.18);
	background: rgba(12, 16, 24, 0.98);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
	opacity: 0;
	transform: translateY(-8px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
}

.contact-select.is-open .contact-select-menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.contact-select-option {
	border: 0;
	background: transparent;
	color: rgba(215, 216, 218, 0.76);
	padding: 12px 14px;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	font-size: clamp(1.1rem, 1.2vw, 1.45rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	text-align: left;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease;
}

.contact-select-option:hover,
.contact-select-option:focus-visible {
	background: rgba(255, 255, 255, 0.06);
	color: #f1f3f6;
	outline: none;
}

.contact-select-option.is-selected {
	background: rgba(255, 95, 82, 0.12);
	color: #ff8d84;
}

.contact-form-field input:focus-visible,
.contact-form-field select:focus-visible,
.contact-form-field textarea:focus-visible {
	outline: none;
	border-color: rgba(255, 95, 82, 0.72);
}

.contact-form-field .wpcf7-not-valid {
	border-color: rgba(255, 95, 82, 0.88);
}

.contact-form-field .wpcf7-not-valid-tip {
	margin-top: 10px;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ff8d84;
}

.contact-form-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 10px;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.92rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c8cdd4;
}

.contact-form-checkbox input {
	appearance: none;
	width: 26px;
	height: 26px;
	border: 1px solid rgba(215, 216, 218, 0.55);
	background: transparent;
	display: inline-grid;
	place-items: center;
	margin: 0;
}

.contact-form-checkbox input::before {
	content: "";
	width: 12px;
	height: 12px;
	background: #ff5f52;
	transform: scale(0);
	transition: transform 140ms ease;
}

.contact-form-checkbox input:checked::before {
	transform: scale(1);
}

.contact-form-checkbox .wpcf7-list-item {
	margin: 0;
}

.contact-form-checkbox .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.contact-form-checkbox .wpcf7-list-item-label {
	display: inline-block;
}

.contact-form-submit {
	margin-top: 18px;
	width: fit-content;
	min-width: 270px;
	border: 0;
	border-radius: 999px;
	background: #f1f3f6;
	color: #171a1f;
	padding: 19px 42px;
	font-family: "PP Neue Montreal", "Sora", "Manrope", "Space Grotesk", "Avenir Next", sans-serif;
	font-size: 1.14rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity 180ms ease, transform 160ms ease;
}

.contact-form-submit:hover {
	opacity: 0.88;
}

.contact-form-submit:active {
	transform: translateY(1px);
}

.contact-form-ui .wpcf7-spinner {
	margin: 0;
	align-self: center;
	background: rgba(255, 95, 82, 0.2);
}

.contact-form-ui .wpcf7 form .wpcf7-response-output {
	margin: 6px 0 0;
	padding: 14px 16px;
	border: 1px solid rgba(215, 216, 218, 0.22);
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d7d8da;
}

.contact-form-ui .wpcf7 form.invalid .wpcf7-response-output,
.contact-form-ui .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form-ui .wpcf7 form.failed .wpcf7-response-output {
	border-color: rgba(255, 95, 82, 0.42);
	color: #ffb0aa;
}

.contact-form-ui .wpcf7 form.sent .wpcf7-response-output {
	border-color: rgba(0, 194, 168, 0.44);
	color: #9ce8dc;
}

.contact-form-placeholder {
	padding: 22px 0;
	border-top: 1px solid rgba(215, 216, 218, 0.22);
}

.contact-form-placeholder p {
	margin: 0;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.82rem;
	line-height: 1.5;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #c8cdd4;
	max-width: 42ch;
}

.contact-page-content .content-area {
	padding-top: 0;
}

.contact-page-content .content-area article {
	background: #d0d0d0;
	border: 0;
	border-radius: 0;
	padding: 0;
	margin: 0;
}

.content-area article,
.post-card {
	background: var(--sp-color-surface);
	border: 1px solid #ece4dc;
	padding: 1.25rem;
	border-radius: 14px;
	margin-bottom: 1rem;
}

.post-title {
	margin-top: 0;
}

.post-title a {
	text-decoration: none;
	color: var(--sp-color-accent);
}

@media (max-width: 900px) {
	.menu-overlay {
		padding: 0;
		justify-items: stretch;
		align-items: stretch;
	}

	.menu-overlay-backdrop {
		display: none;
	}

	.menu-panel {
		width: 100%;
		min-height: 100%;
		border-radius: 0;
		background: #ff5f52;
		box-shadow: none;
		padding: clamp(26px, 6vw, 44px);
	}

	.menu-close-label {
		display: none;
	}

	.menu-panel-list {
		margin-top: auto;
	}

	.menu-panel-list a {
		font-size: clamp(2.6rem, 9.2vw, 5.5rem);
	}
}

@media (max-width: 980px) {
	html,
	body {
		overflow-x: hidden;
	}

	.hero-tech,
	.hero-grid,
	.hero-left,
	.hero-right,
	.hero-left-top,
	.hero-news,
	.hero-news-card,
	.right-intro,
	.status-panel,
	.status-square-cta,
	.home-contact-footer,
	.home-contact-footer-inner,
	.home-contact-grid,
	.home-contact-col,
	.home-contact-subscribe,
	.home-contact-subscribe-row,
	.home-contact-subscribe-row input {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.status-square-cta {
		padding: 40px;
	}

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

	.hero-right {
		position: static;
		height: auto;
		grid-template-rows: auto;
	}

	.right-intro {
		min-height: 280px;
	}

	.hero-left {
		grid-template-rows: auto;
	}

	.hero-news {
		grid-template-columns: 1fr;
	}

	.hero-news-card + .hero-news-card {
		border-left: 0;
	}

	.home-contact-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.home-contact-link {
		font-size: clamp(1.35rem, 6.2vw, 2.4rem);
	}

	.home-social-links {
		gap: 8px;
	}

	.home-social-link {
		width: 28px;
		height: 28px;
	}

	.home-social-link svg {
		width: 25px;
		height: 25px;
	}

	.home-contact-subscribe-row {
		grid-template-columns: 1fr;
	}

	.home-contact-subscribe-row input {
		font-size: clamp(2.4rem, 8vw, 4rem);
	}

	.home-contact-subscribe-row button {
		justify-self: start;
	}

	.home-contact-legal {
		padding-top: 12px;
	}

	.hero-left-top {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.hero-left h1 {
		font-size: clamp(4rem, 19vw, 7.6rem);
		max-width: 12ch;
		margin-top: 6vh;
	}

	.data-icons {
		gap: 10px;
	}

	.data-icon-item {
		width: 28px;
		height: 28px;
	}

	.about-page-hero-inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
	}

	.about-page-center-copy {
		justify-self: start;
	}

	.about-page-card {
		grid-column: 1;
		grid-row: 2;
		justify-self: start;
		width: min(100%, 520px);
	}

	.about-page-title {
		grid-column: 1;
		grid-row: 3;
		font-size: clamp(4.4rem, 18vw, 11rem);
	}

	.projects-page-hero-inner {
		min-height: auto;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}

	.projects-page-card {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
		width: min(100%, 520px);
	}

	.projects-page-title {
		grid-column: 1;
		grid-row: 2;
		max-width: 100%;
		font-size: clamp(4.4rem, 18vw, 11rem);
	}

	.projects-grid-item {
		min-height: 470px;
	}

	.projects-manifesto p {
		max-width: 22ch;
		font-size: clamp(2rem, 7.2vw, 4.9rem);
	}

	.projects-logos-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 14px;
	}

	.about-features-arrow {
		width: 50px;
		height: 50px;
		font-size: 1.6rem;
	}

	.about-feature-slide {
		flex-basis: 50%;
		min-height: 460px;
	}

	.about-showcase-block {
		grid-template-columns: 1fr;
	}

	.about-showcase-main,
	.about-showcase-vertical {
		border-right: 0;
	}

	.about-showcase-main {
		grid-template-columns: 1fr;
	}

	.about-showcase-vertical {
		padding: 0 24px 18px;
		place-items: start;
		writing-mode: horizontal-tb;
		font-size: clamp(3.4rem, 11vw, 6.6rem);
	}

	.about-resources-inner {
		grid-template-columns: 1fr;
	}

	.about-resources-col-main {
		max-width: 100%;
	}

	.contact-page-hero-inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		gap: 20px;
	}

	.contact-page-card {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
		width: min(100%, 520px);
	}

	.contact-page-title {
		grid-column: 1;
		grid-row: 2;
		font-size: clamp(4.4rem, 18vw, 11rem);
	}

	.contact-page-message p {
		max-width: 24ch;
		font-size: clamp(2rem, 8vw, 4.8rem);
	}

	.contact-form-block-inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.contact-form-intro h2 {
		font-size: clamp(1.8rem, 7vw, 2.6rem);
	}
}

@media (max-width: 768px) {
	.about-page-hero {
		padding: 186px 18px 30px;
	}

	.about-page-hero-inner {
		min-height: auto;
		gap: 20px;
	}

	.about-page-center-copy {
		max-width: 100%;
	}

	.about-page-center-copy p {
		font-size: clamp(1.55rem, 8.2vw, 2.3rem);
	}

	.about-page-card {
		padding: 20px;
		gap: 14px;
		width: 100%;
	}

	.about-page-card-icon {
		width: 42px;
		height: 42px;
	}

	.about-page-card h2 {
		font-size: clamp(1.55rem, 9vw, 2.2rem);
	}

	.about-page-card p {
		font-size: 0.73rem;
		line-height: 1.42;
	}

	.about-page-title {
		font-size: clamp(3.25rem, 17.5vw, 6rem);
		line-height: 0.84;
	}

	.projects-page-hero {
		padding: 186px 18px 30px;
	}

	.projects-page-hero-inner {
		gap: 18px;
	}

	.projects-page-title {
		font-size: clamp(3.15rem, 17vw, 5.7rem);
		line-height: 0.84;
	}

	.projects-page-card {
		padding: 20px;
		gap: 14px;
		width: 100%;
	}

	.projects-page-card-icon {
		width: 42px;
		height: 42px;
	}

	.projects-page-card h2 {
		font-size: clamp(1.48rem, 8.8vw, 2.15rem);
	}

	.projects-page-card p {
		font-size: 0.72rem;
		line-height: 1.42;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}

	.projects-grid-item {
		grid-column: span 1;
		min-height: auto;
		padding: 24px 16px 22px;
		gap: 20px;
	}

	.projects-grid-icon {
		min-height: 230px;
	}

	.projects-grid-icon svg {
		width: min(100%, 170px);
	}

	.projects-grid-item h3 {
		font-size: clamp(1.55rem, 8.6vw, 2.05rem);
	}

	.projects-grid-item p {
		font-size: 0.72rem;
		line-height: 1.42;
		max-width: 100%;
	}

	.portfolio-single-hero {
		padding: 186px 18px 34px;
	}

	.portfolio-single-hero-grid {
		gap: 18px;
	}

	.portfolio-single-title {
		max-width: 100%;
		font-size: clamp(2.55rem, 14vw, 4.75rem);
		line-height: 0.88;
	}

	.portfolio-single-card {
		padding: 20px;
		gap: 22px;
		width: 100%;
		min-height: auto;
	}

	.portfolio-single-card .portfolio-single-icon {
		width: 42px;
		height: 42px;
	}

	.portfolio-single-subtitle {
		font-size: clamp(1.5rem, 9vw, 2.2rem);
	}

	.portfolio-single-card-content {
		gap: 18px;
	}

	.portfolio-single-intro {
		font-size: 0.74rem;
		line-height: 1.42;
	}

	.portfolio-single-content {
		padding: 24px 16px 46px;
	}

	.portfolio-single-content-inner {
		padding-top: 18px;
	}

	.portfolio-single-showcase {
		padding: 0 0 20px;
	}

	.portfolio-single-showcase-image {
		min-height: 260px;
	}

	.portfolio-single-meta-card,
	.portfolio-single-project-link {
		padding: 20px;
		min-height: auto;
	}

	.portfolio-single-meta-value {
		font-size: clamp(1.7rem, 10vw, 2.35rem);
	}

	.portfolio-single-project-nav {
		min-height: auto;
	}

	.portfolio-single-project-link {
		gap: 28px;
	}

	.portfolio-single-project-icon {
		width: 52px;
		height: 52px;
	}

	.portfolio-single-project-title {
		font-size: clamp(1.65rem, 10vw, 2.5rem);
	}

	.portfolio-single-article h1 {
		font-size: clamp(2.1rem, 12vw, 3rem);
	}

	.portfolio-single-article h2 {
		font-size: clamp(1.9rem, 10vw, 2.7rem);
	}

	.portfolio-single-article h3 {
		font-size: clamp(1.65rem, 9vw, 2.3rem);
	}

	.portfolio-single-article h4 {
		font-size: clamp(1.35rem, 7vw, 1.9rem);
	}

	.portfolio-single-article h5 {
		font-size: clamp(1.1rem, 5.8vw, 1.45rem);
	}

	.portfolio-single-article h6 {
		font-size: 0.92rem;
	}

	.portfolio-single-article p,
	.portfolio-single-article li,
	.portfolio-single-article blockquote {
		font-size: 1rem;
		line-height: 1.58;
		letter-spacing: 0.09em;
	}

	.projects-manifesto {
		padding: 18px 16px 240px;
	}

	.projects-manifesto-inner {
		padding-top: 16px;
	}

	.projects-manifesto p {
		max-width: 100%;
		font-size: clamp(1.65rem, 9.2vw, 3rem);
		line-height: 0.98;
	}

	.projects-trust-block {
		padding: 90px 12px 100px;
	}

	.projects-trust-inner h2 {
		font-size: clamp(2rem, 11vw, 3.35rem);
		margin-bottom: 18px;
	}

	.projects-logos-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.projects-logo-card {
		min-height: 160px;
		padding: 18px;
	}

	.projects-logo-card::before {
		inset: 10px;
	}

	.projects-logo-mark img {
		width: 100%;
		max-width: 100%;
	}

	.about-features-header {
		padding: 22px 16px;
		gap: 14px;
	}

	.about-features-header h2 {
		font-size: clamp(1.6rem, 9vw, 2.35rem);
	}

	.about-features-controls {
		gap: 8px;
	}

	.about-features-arrow {
		width: 44px;
		height: 44px;
		font-size: 1.3rem;
	}

	.about-feature-slide {
		flex-basis: 100%;
		min-height: 430px;
		padding: 24px 16px 22px;
	}

	.about-feature-icon {
		width: 182px;
		height: 182px;
		margin-top: 4px;
	}

	.about-feature-slide h3 {
		font-size: clamp(1.55rem, 8.8vw, 2rem);
	}

	.about-feature-slide p {
		font-size: 0.72rem;
	}

	.about-showcase-main {
		padding: 30px 24px;
		gap: 20px;
	}

	.about-showcase-meta p {
		font-size: 0.72rem;
		line-height: 1.45;
	}

	.about-showcase-media {
		min-height: 300px;
	}

	.about-showcase-media-bg {
		inset: 9% 7%;
	}

	.about-showcase-media-image {
		width: min(90%, 380px);
		max-height: 320px;
		transform: scale(1.14);
	}

	.about-showcase-vertical {
		padding: 0 24px 18px;
		font-size: clamp(2.5rem, 14vw, 4.3rem);
	}

	.about-showcase-copy {
		padding: 24px;
	}

	.about-showcase-copy p {
		font-size: 0.73rem;
		line-height: 1.42;
	}

	.about-showcase-cta {
		padding: 22px 24px;
		min-height: 210px;
	}

	.about-showcase-cta-icon {
		width: 74px;
		height: 74px;
	}

	.about-showcase-cta-text {
		font-size: clamp(1.2rem, 8vw, 1.7rem);
	}

	.about-resources-inner {
		padding: 28px 16px 30px;
		gap: 16px;
	}

	.about-resources-label {
		margin-bottom: 14px;
		font-size: clamp(1.3rem, 8vw, 1.9rem);
	}

	.about-resources-col-main h2 {
		font-size: clamp(1.7rem, 9vw, 2.5rem);
		margin-bottom: 14px;
	}

	.about-resources-text {
		font-size: 0.68rem;
	}

	.contact-page-hero {
		padding: 186px 18px 30px;
	}

	.contact-page-hero-inner {
		min-height: auto;
		gap: 18px;
	}

	.contact-page-title {
		font-size: clamp(3.3rem, 17.5vw, 6rem);
		line-height: 0.84;
	}

	.contact-page-card {
		padding: 20px;
		gap: 14px;
		width: 100%;
	}

	.contact-page-card-icon {
		width: 42px;
		height: 42px;
	}

	.contact-page-card h2 {
		font-size: clamp(1.5rem, 9vw, 2.2rem);
	}

	.contact-page-card p {
		font-size: 0.73rem;
		line-height: 1.42;
	}

	.contact-page-content {
		padding: 0 0 36px;
	}

	.contact-page-message {
		padding: 18px 16px 136px;
	}

	.contact-page-message-inner {
		padding-top: 18px;
	}

	.contact-page-message p {
		max-width: 100%;
		font-size: clamp(1.85rem, 10.8vw, 3rem);
		line-height: 0.96;
	}

	.contact-form-block {
		padding: 0 16px 42px;
	}

	.contact-form-block-inner {
		padding-top: 18px;
	}

	.contact-form-ui {
		gap: 14px;
	}

	.contact-form-field label {
		font-size: 0.73rem;
	}

	.contact-form-field input,
	.contact-form-field select,
	.contact-form-field textarea {
		font-size: clamp(1.75rem, 9.6vw, 2.35rem);
		padding-bottom: 9px;
	}

	.contact-form-checkbox {
		font-size: 0.78rem;
		letter-spacing: 0.08em;
	}

	.contact-form-submit {
		min-width: 170px;
		padding: 14px 24px;
		font-size: 0.96rem;
	}

	.right-intro p {
		font-size: clamp(1.4rem, 8vw, 2.05rem);
		line-height: 1.08;
	}

	.data-icons {
		gap: 8px;
	}

	.data-icon-item {
		width: 24px;
		height: 24px;
	}

	.hero-news-card {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.home-contact-footer {
		padding: 34px 24px 40px;
	}

	.home-contact-footer-inner {
		gap: 34px;
	}

	.home-contact-grid {
		gap: 24px;
	}

	.home-contact-col {
		gap: 10px;
	}

	.home-contact-label,
	.home-contact-subscribe-label {
		font-size: 0.78rem;
		line-height: 1.25;
		letter-spacing: 0.12em;
	}

	.home-contact-logo {
		width: 160px;
		margin-bottom: 14px;
	}

	.home-contact-link {
		font-size: clamp(1.15rem, 6.8vw, 1.7rem);
		line-height: 1.12;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.home-social-links {
		gap: 7px;
	}

	.home-social-link {
		width: 26px;
		height: 26px;
	}

	.home-social-link svg {
		width: 23px;
		height: 23px;
	}

	.home-contact-subscribe {
		padding-top: 26px;
	}

	.home-contact-subscribe-row {
		gap: 18px;
	}

	.home-contact-subscribe .home-contact-subscribe-row {
		grid-template-columns: 1fr;
	}

	.home-contact-subscribe .home-contact-subscribe-row > p {
		grid-template-columns: 1fr;
	}

	.home-contact-subscribe-row input {
		font-size: clamp(1.6rem, 9vw, 2.1rem);
		line-height: 1.06;
		padding-bottom: 12px;
	}

	.home-contact-subscribe-row button {
		font-size: 0.95rem;
		padding: 16px 26px;
		min-width: 180px;
	}

	.home-contact-legal {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding-top: 16px;
	}

	.home-contact-legal p {
		font-size: 0.72rem;
		line-height: 1.35;
	}

	.site-footer .container {
		flex-direction: column;
		align-items: flex-start;
	}
}
