/* WebStudiy — dark neon theme (original palette) */

:root {
	--bg: #16111c;
	--surface: #16111c;
	--surface-low: #1f1925;
	--surface-container: #231d29;
	--surface-high: #2d2834;
	--surface-highest: #38323f;
	--surface-lowest: #110c17;
	--ink: #e9dfef;
	--muted: rgba(233, 223, 239, 0.6);
	--muted-soft: rgba(233, 223, 239, 0.5);
	--line: rgba(255, 255, 255, 0.1);
	--line-soft: rgba(255, 255, 255, 0.05);
	--primary: #ffb1c5;
	--primary-container: #ff4a8f;
	--primary-glow: rgba(255, 45, 135, 0.4);
	--secondary: #4de082;
	--secondary-fixed: #6dfe9c;
	--secondary-container: #00b55d;
	--on-secondary: #003919;
	--tertiary: #d9b9ff;
	--tertiary-container: #a97ae5;
	--radius: 24px;
	--radius-sm: 12px;
	--radius-xl: 40px;
	--container: 1440px;
	--header-h: 80px;
	--font-display: "Montserrat", sans-serif;
	--font-body: "Montserrat", sans-serif;
	--font-metric: "Montserrat", sans-serif;
	--ease: cubic-bezier(0.23, 1, 0.32, 1);
	--section-pad: clamp(4rem, 10vw, 7.5rem);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: clip;
	max-width: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--ink);
	background: var(--bg);
	overflow-x: clip;
	max-width: 100%;
}

@media (hover: hover) and (pointer: fine) {
	body.has-cursor {
		cursor: none;
	}

	body.has-cursor a,
	body.has-cursor button,
	body.has-cursor [role="button"],
	body.has-cursor input,
	body.has-cursor textarea,
	body.has-cursor select,
	body.has-cursor label,
	body.has-cursor .btn,
	body.has-cursor summary {
		cursor: none;
	}
}

.ws-cursor {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10000;
	display: none;
}

body.has-cursor .ws-cursor {
	display: block;
}

.ws-cursor__dot,
.ws-cursor__ring {
	position: fixed;
	top: 0;
	left: 0;
	border-radius: 50%;
	transform: translate3d(-50%, -50%, 0);
	will-change: transform, width, height, opacity;
}

.ws-cursor__dot {
	width: 8px;
	height: 8px;
	background: #ff4a8f;
	box-shadow: 0 0 12px rgba(255, 74, 143, 0.85);
	z-index: 2;
	transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.ws-cursor__ring {
	width: 36px;
	height: 36px;
	border: 1.5px solid rgba(255, 177, 197, 0.55);
	box-shadow: 0 0 18px rgba(255, 74, 143, 0.25);
	z-index: 1;
	opacity: 0.9;
	transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.ws-cursor.is-hover .ws-cursor__dot {
	width: 6px;
	height: 6px;
	background: #4de082;
	box-shadow: 0 0 14px rgba(77, 224, 130, 0.9);
}

.ws-cursor.is-hover .ws-cursor__ring {
	width: 56px;
	height: 56px;
	border-color: rgba(77, 224, 130, 0.55);
	background: rgba(255, 74, 143, 0.08);
	box-shadow: 0 0 28px rgba(255, 74, 143, 0.28);
}

.ws-cursor.is-down .ws-cursor__dot {
	width: 5px;
	height: 5px;
}

.ws-cursor.is-down .ws-cursor__ring {
	width: 28px;
	height: 28px;
	opacity: 0.65;
}

.ws-cursor.is-hidden .ws-cursor__dot,
.ws-cursor.is-hidden .ws-cursor__ring {
	opacity: 0;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4, h5 {
	font-family: var(--font-display);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 0.5em;
	color: #fff;
	font-weight: 700;
}

p {
	margin: 0 0 1em;
	color: var(--muted);
}

.container {
	width: min(100% - 5rem, var(--container));
	margin-inline: auto;
	max-width: 100%;
	min-width: 0;
}

.section {
	padding: var(--section-pad) 0;
}

.has-aurora > .container {
	position: relative;
	z-index: 1;
}

.section-head {
	margin-bottom: 4rem;
	max-width: 42rem;
}

.section-head--split {
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	align-items: end;
	max-width: none;
}

.section-head h2,
.faq-block h2,
.hero__title,
.lead-magnet__panel h2 {
	font-size: clamp(2rem, 5vw, 5rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.05;
	color: #fff;
}

.faq-block h2 {
	font-size: clamp(1.45rem, 2.6vw, 2rem);
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin-bottom: 0;
}

.lead {
	font-size: 1.125rem;
	line-height: 1.55;
	color: var(--muted);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 1rem;
	border-radius: 999px;
	background: rgba(0, 181, 93, 0.2);
	border: 1px solid rgba(77, 224, 130, 0.3);
	color: var(--secondary-fixed);
	font-family: var(--font-metric);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.text-accent {
	color: var(--primary-container);
}

.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.85rem;
}

.tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: max-content;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 177, 197, 0.3);
	background: rgba(255, 177, 197, 0.2);
	color: var(--primary);
	font-family: var(--font-metric);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
	white-space: nowrap;
	line-height: 1.2;
}

.tag--accent {
	background: rgba(77, 224, 130, 0.2);
	border-color: rgba(77, 224, 130, 0.3);
	color: var(--secondary);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1.1rem 2.25rem;
	border-radius: 14px;
	border: 1px solid transparent;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1.05rem;
	cursor: pointer;
	color: #fff;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
	position: relative;
	overflow: hidden;
}

.btn--sm {
	padding: 0.75rem 2rem;
	font-size: 1rem;
	border-radius: 999px;
}

.btn--lg {
	padding: 1.35rem 3.5rem;
	font-size: clamp(1.15rem, 2vw, 1.6rem);
	border-radius: 16px;
}

.btn--block {
	width: 100%;
}

.btn--primary {
	background: var(--primary-container);
	box-shadow: 0 0 20px var(--primary-glow);
}

.btn--primary:hover {
	box-shadow: 0 0 35px rgba(255, 45, 135, 0.6);
	transform: translateY(-2px);
}

.btn--primary:active {
	transform: scale(0.95);
}

.btn--ghost {
	background: rgba(255, 255, 255, 0.05);
	border-color: var(--line);
	backdrop-filter: blur(12px);
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
}

.btn.light-sweep::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
	transform: rotate(45deg);
	transition: 0.8s;
	pointer-events: none;
}

.btn.light-sweep:hover::after {
	left: 100%;
	top: 100%;
}

.text-link {
	color: var(--primary-container);
	font-weight: 700;
}

.text-link:hover {
	text-decoration: underline;
}

.glass,
.glass-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 45, 135, 0.2);
	border-radius: var(--radius);
	transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.glass:hover,
.glass-card:hover {
	border-color: rgba(255, 45, 135, 0.5);
	box-shadow: 0 0 30px rgba(255, 45, 135, 0.15);
	transform: translateY(-4px);
}

/* Animated “loading” border for bento cards */
@property --bento-angle {
	syntax: "<angle>";
	inherits: false;
	initial-value: 0deg;
}

.bento__item {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-color: rgba(255, 45, 135, 0.18);
}

.bento__item::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1.5px;
	background: conic-gradient(
		from var(--bento-angle),
		transparent 0%,
		transparent 55%,
		rgba(255, 74, 143, 0.15) 62%,
		#ff4a8f 72%,
		#ffb1c5 78%,
		#4de082 86%,
		transparent 94%,
		transparent 100%
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0;
	pointer-events: none;
	z-index: 3;
	transition: opacity 0.35s var(--ease);
}

.bento__item::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 45, 135, 0.08);
	pointer-events: none;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.bento__item > * {
	position: relative;
	z-index: 4;
}

.bento__item:hover {
	border-color: transparent;
	box-shadow: 0 0 34px rgba(255, 45, 135, 0.22);
	transform: translateY(-4px);
}

.bento__item:hover::before {
	opacity: 1;
	animation: bento-border-load 1.8s linear infinite;
}

.bento__item:hover::after {
	opacity: 1;
	box-shadow:
		inset 0 0 0 1px rgba(255, 74, 143, 0.2),
		0 0 24px rgba(255, 45, 135, 0.12);
}

@keyframes bento-border-load {
	to {
		--bento-angle: 360deg;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bento__item:hover::before {
		animation: none;
		background: linear-gradient(135deg, #ff4a8f, #4de082);
		opacity: 0.85;
	}
}

/* Header */
.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--header-h);
	background: rgba(22, 17, 28, 0.8);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--line);
	transition: height 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-scrolled {
	height: 64px;
	background: rgba(22, 17, 28, 0.95);
}

.site-header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-logo__text,
.site-logo .custom-logo-link {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.5rem, 2.5vw, 2.5rem);
	letter-spacing: -0.01em;
	color: var(--ink);
}

.site-logo img {
	max-height: 40px;
	width: auto;
}

.site-nav__list,
.footer-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list {
	display: flex;
	gap: 2.5rem;
}

.site-nav__list a {
	color: var(--muted);
	font-weight: 400;
	transition: color 0.2s;
}

.site-nav__list a:hover {
	color: var(--primary);
}

.site-nav__list > .has-cases {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.nav-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	cursor: pointer;
	color: var(--muted);
}

.nav-dropdown-toggle span,
.nav-dropdown-toggle span::before {
	display: block;
	width: 0.45rem;
	height: 0.45rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translate(-1px, -1px);
	transition: transform 0.2s ease;
}

.has-cases.is-open > .nav-dropdown-toggle span,
.has-cases:hover > .nav-dropdown-toggle span {
	transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown {
	position: absolute;
	top: calc(100% + 0.85rem);
	left: 50%;
	transform: translateX(-35%);
	width: min(34rem, calc(100vw - 2rem));
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	z-index: 120;
}

.has-cases:hover > .nav-dropdown,
.has-cases:focus-within > .nav-dropdown,
.has-cases.is-open > .nav-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-35%) translateY(0);
}

.nav-dropdown__inner {
	padding: 1rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 74, 143, 0.25);
	background: rgba(18, 13, 24, 0.98);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(18px);
}

.nav-dropdown__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.75rem;
	padding: 0 0.25rem;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
}

.nav-dropdown__head a {
	color: #ffb1c5;
	font-weight: 600;
}

.nav-dropdown__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.35rem;
	max-height: 22rem;
	overflow: auto;
}

.nav-dropdown__list a {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 0.65rem;
	align-items: center;
	padding: 0.45rem;
	border-radius: 12px;
	color: var(--ink);
	transition: background 0.2s ease;
}

.nav-dropdown__list a:hover {
	background: rgba(255, 74, 143, 0.12);
	color: #fff;
}

.nav-dropdown__thumb {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
}

.nav-dropdown__thumb img,
.nav-dropdown__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nav-dropdown__placeholder {
	background: linear-gradient(135deg, rgba(255, 74, 143, 0.35), rgba(120, 80, 200, 0.25));
}

.nav-dropdown__meta {
	min-width: 0;
	display: grid;
	gap: 0.15rem;
}

.nav-dropdown__meta strong {
	font-size: 0.86rem;
	font-weight: 600;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nav-dropdown__meta em {
	font-style: normal;
	font-size: 0.75rem;
	color: var(--muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nav-dropdown__cta {
	display: flex;
	margin-top: 0.75rem;
	padding: 0.7rem 0.9rem;
	border-radius: 12px;
	background: rgba(255, 74, 143, 0.14);
	border: 1px solid rgba(255, 74, 143, 0.3);
	color: #ffb1c5;
	font-weight: 600;
	font-size: 0.9rem;
	justify-content: center;
}

.nav-dropdown__cta:hover {
	background: rgba(255, 74, 143, 0.22);
	color: #fff;
}

.btn--tg {
	background: linear-gradient(135deg, #2aabee, #229ed9);
	border-color: transparent;
	box-shadow: 0 0 18px rgba(42, 171, 238, 0.35);
	color: #fff;
}

.btn--tg:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 28px rgba(42, 171, 238, 0.5);
	color: #fff;
}

.btn--tg .ws-icon {
	width: 1rem;
	height: 1rem;
}

.tg-float {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.85rem 1.15rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #2aabee, #1b8fc4);
	color: #fff;
	font-weight: 700;
	font-size: 0.92rem;
	box-shadow: 0 12px 30px rgba(34, 158, 217, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tg-float:hover {
	transform: translateY(-3px);
	color: #fff;
	box-shadow: 0 16px 36px rgba(34, 158, 217, 0.55);
}

.tg-float .ws-icon {
	width: 1.15rem;
	height: 1.15rem;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	padding: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
}

/* Hero */
.hero {
	position: relative;
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: calc(var(--header-h) + 2rem) 2.5rem 4rem;
	overflow: hidden;
}

/* Ambient aurora (hero + accent sections) */
.has-aurora,
.hero {
	position: relative;
	overflow: hidden;
}

.ws-aurora {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.ws-aurora__mesh {
	position: absolute;
	inset: -20%;
	filter: blur(72px);
	opacity: 0.9;
	contain: strict;
}

.ws-aurora__blob {
	position: absolute;
	display: block;
	border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
	mix-blend-mode: screen;
	will-change: transform, border-radius;
	animation: ws-aurora-drift var(--blob-dur, 18s) ease-in-out infinite;
	animation-delay: var(--blob-delay, 0s);
}

.ws-aurora__blob--a {
	--blob-dur: 16s;
	--blob-delay: -2s;
	width: 52vw;
	height: 52vw;
	max-width: 720px;
	max-height: 720px;
	top: 2%;
	left: -6%;
	background: radial-gradient(circle at 35% 35%, rgba(255, 74, 143, 0.85) 0%, rgba(255, 74, 143, 0) 68%);
}

.ws-aurora__blob--b {
	--blob-dur: 22s;
	--blob-delay: -7s;
	width: 44vw;
	height: 44vw;
	max-width: 620px;
	max-height: 620px;
	top: 8%;
	right: -8%;
	background: radial-gradient(circle at 40% 40%, rgba(77, 224, 130, 0.42) 0%, rgba(77, 224, 130, 0) 70%);
	animation-name: ws-aurora-drift-alt;
}

.ws-aurora__blob--c {
	--blob-dur: 19s;
	--blob-delay: -11s;
	width: 48vw;
	height: 40vw;
	max-width: 680px;
	max-height: 560px;
	bottom: -4%;
	left: 28%;
	background: radial-gradient(circle at 50% 40%, rgba(255, 177, 197, 0.55) 0%, rgba(255, 74, 143, 0.2) 42%, transparent 72%);
}

.ws-aurora__blob--d {
	--blob-dur: 24s;
	--blob-delay: -4s;
	width: 36vw;
	height: 36vw;
	max-width: 480px;
	max-height: 480px;
	top: 38%;
	left: 48%;
	background: radial-gradient(circle at 50% 50%, rgba(180, 90, 255, 0.28) 0%, transparent 70%);
	animation-name: ws-aurora-drift-alt;
}

.ws-aurora__beam {
	position: absolute;
	inset: -10%;
	background:
		conic-gradient(
			from 210deg at 50% 40%,
			transparent 0deg,
			rgba(255, 74, 143, 0.08) 48deg,
			transparent 110deg,
			rgba(77, 224, 130, 0.05) 180deg,
			transparent 250deg,
			rgba(255, 177, 197, 0.07) 310deg,
			transparent 360deg
		);
	filter: blur(40px);
	opacity: 0.7;
	animation: ws-aurora-beam 48s linear infinite;
	mix-blend-mode: screen;
}

.ws-aurora__noise {
	position: absolute;
	inset: 0;
	opacity: 0.18;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 180px 180px;
	z-index: 2;
}

.ws-aurora__vignette {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 50% 36%, transparent 0%, rgba(22, 17, 28, 0.25) 52%, rgba(22, 17, 28, 0.92) 100%),
		linear-gradient(to bottom, rgba(22, 17, 28, 0.18) 0%, transparent 36%, rgba(22, 17, 28, 0.7) 100%);
	z-index: 3;
}

/* Softer ambient for mid-page sections */
.ws-aurora--soft .ws-aurora__mesh {
	opacity: 0.45;
	filter: blur(80px);
}

.ws-aurora--soft .ws-aurora__beam {
	opacity: 0.35;
}

.ws-aurora--soft .ws-aurora__noise {
	opacity: 0.1;
}

.ws-aurora--soft .ws-aurora__blob--a {
	background: radial-gradient(circle at 35% 35%, rgba(255, 74, 143, 0.55) 0%, transparent 68%);
}

.ws-aurora--soft .ws-aurora__blob--b {
	background: radial-gradient(circle at 40% 40%, rgba(77, 224, 130, 0.28) 0%, transparent 70%);
}

/* CTA: denser pink glow */
.ws-aurora--cta .ws-aurora__mesh {
	opacity: 0.85;
}

.ws-aurora--cta .ws-aurora__blob--a,
.ws-aurora--cta .ws-aurora__blob--c {
	background: radial-gradient(circle at 40% 40%, rgba(255, 74, 143, 0.95) 0%, rgba(255, 74, 143, 0) 70%);
}

.ws-aurora--cta .ws-aurora__blob--b {
	background: radial-gradient(circle at 40% 40%, rgba(255, 177, 197, 0.5) 0%, transparent 70%);
}

.ws-aurora--cta .ws-aurora__noise {
	opacity: 0.14;
}

/* Inside glass panels */
.ws-aurora--panel {
	border-radius: inherit;
}

.ws-aurora--panel .ws-aurora__mesh {
	opacity: 0.55;
	filter: blur(56px);
	inset: -30%;
}

.ws-aurora--panel .ws-aurora__beam {
	opacity: 0.4;
	animation-duration: 36s;
}

.ws-aurora--panel .ws-aurora__noise {
	opacity: 0.12;
}

.ws-aurora--panel .ws-aurora__blob--a {
	width: 70%;
	height: 70%;
	max-width: none;
	max-height: none;
	top: -20%;
	left: -15%;
}

.ws-aurora--panel .ws-aurora__blob--b {
	width: 55%;
	height: 55%;
	max-width: none;
	max-height: none;
	top: auto;
	bottom: -25%;
	right: -10%;
}

.ws-aurora--panel .ws-aurora__blob--c {
	width: 50%;
	height: 45%;
	max-width: none;
	max-height: none;
	left: 35%;
	bottom: 10%;
}

.ws-aurora--panel .ws-aurora__blob--d {
	display: none;
}

@keyframes ws-aurora-drift {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
		border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
	}
	33% {
		transform: translate3d(6%, -5%, 0) scale(1.08) rotate(8deg);
		border-radius: 58% 42% 40% 60% / 55% 48% 52% 45%;
	}
	66% {
		transform: translate3d(-4%, 4%, 0) scale(0.94) rotate(-6deg);
		border-radius: 48% 52% 62% 38% / 40% 58% 42% 60%;
	}
}

@keyframes ws-aurora-drift-alt {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
		border-radius: 55% 45% 48% 52% / 42% 58% 42% 58%;
	}
	40% {
		transform: translate3d(-7%, 3%, 0) scale(1.1) rotate(-10deg);
		border-radius: 40% 60% 55% 45% / 60% 40% 55% 45%;
	}
	70% {
		transform: translate3d(5%, -6%, 0) scale(0.92) rotate(7deg);
		border-radius: 62% 38% 45% 55% / 48% 52% 38% 62%;
	}
}

@keyframes ws-aurora-beam {
	from {
		transform: rotate(0deg) scale(1.05);
	}
	to {
		transform: rotate(360deg) scale(1.05);
	}
}

.hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 56rem;
}

.hero__title {
	margin: 1.25rem 0;
	font-size: clamp(2.75rem, 7vw, 5rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.05;
	color: #fff;
}

.hero__text {
	font-size: 1.125rem;
	line-height: 1.55;
	max-width: 42rem;
	margin: 0 auto 1.75rem;
	color: rgba(233, 223, 239, 0.8);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	justify-content: center;
	margin-bottom: 2.5rem;
	padding-top: 0.5rem;
}

.hero__badges {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 3rem;
	margin: 0;
	padding: 2.5rem 0 0;
	border-top: 1px solid var(--line-soft);
	font-family: var(--font-metric);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted-soft);
}

/* Benefits bento */
.bento {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
}

.bento__item {
	grid-column: span var(--span, 4);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: space-between;
}

.bento__item > div:first-child:not(.metric-ring) {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.bento__item--metric {
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: visible;
}

.bento__icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: rgba(169, 122, 229, 0.2);
	color: var(--tertiary);
	margin-bottom: 0.5rem;
	align-self: flex-start;
	margin-left: 0;
}

.bento__icon--pink {
	background: transparent;
	color: var(--primary-container);
	width: auto;
	height: auto;
	min-width: 0;
	padding: 0;
	margin: 0 0 1rem 0;
	justify-self: start;
	place-items: start;
	line-height: 1;
	text-align: left;
}

.bento__icon .ws-icon,
.bento__icon svg {
	width: 1.55rem;
	height: 1.55rem;
	display: block;
}

.bento__icon--pink .ws-icon,
.bento__icon--pink svg {
	width: 2.6rem;
	height: 2.6rem;
}

.bento__copy h3 {
	font-size: clamp(1.6rem, 2.5vw, 2.5rem);
	margin-bottom: 0.75rem;
}

.bento__item .text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--primary);
	margin-top: 1.5rem;
}

.metric-ring {
	width: 128px;
	height: 128px;
	aspect-ratio: 1 / 1;
	flex: 0 0 128px;
	max-width: 128px;
	margin: 0 auto 0.5rem;
	border-radius: 50%;
	border: 4px solid var(--secondary);
	display: grid;
	place-items: center;
	position: relative;
	box-sizing: border-box;
	background: rgba(77, 224, 130, 0.06);
}

.metric-ring::before {
	content: "";
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 2px solid rgba(77, 224, 130, 0.25);
	pointer-events: none;
}

.metric-ring::after {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 3px solid var(--secondary);
	opacity: 0.25;
	animation: ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
	pointer-events: none;
}

.metric-ring span {
	font-family: var(--font-metric);
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--secondary);
	line-height: 1;
	position: relative;
	z-index: 1;
}

.bento__item .metric-title {
	color: var(--secondary);
	text-align: center;
}

.bento__item--metric .bento__copy {
	width: 100%;
	text-align: center;
	align-items: center;
}

.bento__item--metric .bento__copy p {
	max-width: 16rem;
	margin-inline: auto;
}

.code-chip {
	margin: 0;
	padding: 1.25rem 1.5rem;
	border-radius: 16px;
	background: var(--surface-highest);
	border: 1px solid var(--line-soft);
	color: rgba(233, 223, 239, 0.4);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.875rem;
	line-height: 1.6;
	overflow: auto;
	flex-shrink: 0;
}

.code-chip .c-secondary { color: var(--secondary); }
.code-chip .c-primary { color: var(--primary); }
.code-chip .c-blue { color: #60a5fa; }

.code-dots {
	display: flex;
	gap: 0.4rem;
	margin-bottom: 0.5rem;
}

.code-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #f87171; }
.code-dots span:nth-child(2) { background: #facc15; }
.code-dots span:nth-child(3) { background: #4ade80; }

/* Services */
.services-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1.25rem;
}

.service-card {
	grid-column: span 2;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
	padding: 1.5rem 1.4rem 1.55rem;
	border-radius: var(--radius);
	overflow: hidden;
	background:
		linear-gradient(160deg, rgba(255, 74, 143, 0.07), transparent 48%),
		rgba(255, 255, 255, 0.03);
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
	grid-column: span 3;
}

.service-card.is-accent {
	background:
		linear-gradient(145deg, rgba(77, 224, 130, 0.12), rgba(255, 74, 143, 0.08) 45%, transparent 70%),
		rgba(255, 255, 255, 0.03);
	border-color: rgba(77, 224, 130, 0.28);
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 74, 143, 0.4);
	box-shadow: 0 0 28px rgba(255, 74, 143, 0.12);
}

.service-card.is-accent:hover {
	border-color: rgba(77, 224, 130, 0.45);
	box-shadow: 0 0 28px rgba(77, 224, 130, 0.12);
}

.service-card__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 14px;
	display: grid;
	place-items: center;
	color: #ffb1c5;
	background: rgba(255, 74, 143, 0.12);
	border: 1px solid rgba(255, 74, 143, 0.25);
	box-shadow: 0 0 18px rgba(255, 74, 143, 0.12);
	flex-shrink: 0;
}

.service-card.is-accent .service-card__icon {
	color: #4de082;
	background: rgba(77, 224, 130, 0.12);
	border-color: rgba(77, 224, 130, 0.3);
	box-shadow: 0 0 18px rgba(77, 224, 130, 0.14);
}

.service-card__icon svg,
.service-card__icon .ws-icon {
	width: 1.35rem;
	height: 1.35rem;
	display: block;
}

.service-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.7rem;
	padding: 0;
}

.service-card__tag {
	align-self: flex-start;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #4de082;
	background: rgba(77, 224, 130, 0.12);
}

.service-card__body h3 {
	font-size: clamp(1.25rem, 1.8vw, 1.55rem);
	margin: 0;
	line-height: 1.2;
}

.service-card__body > p {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.service-card__points {
	list-style: none;
	margin: 0.35rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.service-card__points li {
	position: relative;
	padding-left: 1rem;
	font-size: 0.88rem;
	color: rgba(233, 223, 239, 0.82);
}

.service-card__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ff4a8f;
	box-shadow: 0 0 8px rgba(255, 74, 143, 0.55);
}

.service-card.is-accent .service-card__points li::before {
	background: #4de082;
	box-shadow: 0 0 8px rgba(77, 224, 130, 0.55);
}

.service-card .text-link {
	margin-top: auto;
	padding-top: 0.75rem;
}

.services-note {
	margin-top: 2rem;
	padding: 1.15rem 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	background: rgba(77, 224, 130, 0.05);
	border-color: rgba(77, 224, 130, 0.2);
}

.services-note:hover {
	transform: none;
}

.services-note p {
	margin: 0;
	font-size: 1.05rem;
	color: var(--ink);
}

.services-note strong {
	color: var(--secondary);
}

@media (max-width: 1100px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-card,
	.service-card:nth-child(4),
	.service-card:nth-child(5) {
		grid-column: auto;
	}
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--secondary);
	box-shadow: 0 0 0 6px rgba(77, 224, 130, 0.15);
	flex-shrink: 0;
	position: relative;
	animation: dot-pulse 2s ease-in-out infinite;
}

.dot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--secondary);
	animation: dot-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes dot-pulse {
	0%, 100% {
		box-shadow: 0 0 0 4px rgba(77, 224, 130, 0.18);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(77, 224, 130, 0.08);
		transform: scale(1.08);
	}
}

@keyframes dot-ping {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	75%, 100% {
		transform: scale(2.6);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dot,
	.dot::after {
		animation: none;
	}
}

/* Pricing */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.pricing-card {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	overflow: hidden;
}

.pricing-card__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.35;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 45, 135, 0.22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 45, 135, 0.22) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: radial-gradient(ellipse at 50% 0%, black 15%, transparent 75%);
}

.pricing-card__content {
	position: relative;
	z-index: 1;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
}

.pricing-card.is-featured {
	border-color: rgba(255, 74, 143, 0.45);
	background: linear-gradient(180deg, rgba(255, 74, 143, 0.12), rgba(255, 255, 255, 0.03));
}

.pricing-card .tag {
	align-self: flex-start;
	margin-bottom: 0.15rem;
}

.pricing-card__price-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin: 0.25rem 0 0.35rem;
}

.pricing-card__old {
	display: inline-block;
	width: fit-content;
	font-size: 1rem;
	font-weight: 600;
	color: rgba(233, 223, 239, 0.45);
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	text-decoration-color: rgba(255, 74, 143, 0.85);
	letter-spacing: -0.01em;
}

.pricing-card__price {
	font-family: var(--font-metric);
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
	color: #fff;
	background: linear-gradient(90deg, #ffb1c5 0%, #ff4a8f 45%, #6dfe9c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 18px rgba(255, 74, 143, 0.28));
}

.pricing-card.is-featured .pricing-card__price {
	background: linear-gradient(90deg, #6dfe9c 0%, #ffb1c5 50%, #ff4a8f 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.feature-list li {
	position: relative;
	padding-left: 1.25rem;
	color: var(--muted);
}

.feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--secondary);
}

/* Portfolio */
.portfolio-bento {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
}

.portfolio-block .section-head {
	text-align: center;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
}

.portfolio-card {
	grid-column: span 4;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 45, 135, 0.2);
	border-radius: var(--radius);
	transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.portfolio-card:hover {
	border-color: rgba(255, 45, 135, 0.5);
	box-shadow: 0 0 30px rgba(255, 45, 135, 0.15);
	transform: translateY(-4px);
}

.portfolio-card--regular {
	grid-column: span 4;
}

.portfolio-card--wide {
	grid-column: span 8;
}

.portfolio-card--tall {
	grid-column: span 4;
	grid-row: span 2;
}

.portfolio-card--tall .portfolio-card__media {
	aspect-ratio: 4 / 5;
	flex: 1 1 auto;
	min-height: 16rem;
}

.portfolio-card--hero,
.portfolio-card--featured {
	grid-column: span 8;
	grid-row: span 2;
}

.portfolio-card__media {
	display: block;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 10;
	flex: 0 0 auto;
	background: linear-gradient(145deg, #2d1830, #16111c);
}

.portfolio-card--hero .portfolio-card__media,
.portfolio-card--featured .portfolio-card__media,
.portfolio-card--wide .portfolio-card__media {
	position: relative;
	inset: auto;
	aspect-ratio: 16 / 10;
	min-height: 0;
}

.portfolio-card--wide .portfolio-card__media {
	aspect-ratio: 21 / 9;
}

.portfolio-card__media img,
.portfolio-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 1s var(--ease);
}

.portfolio-card:hover .portfolio-card__media img {
	transform: scale(1.03);
}

.portfolio-card__body {
	padding: 1.35rem 1.5rem 1.5rem;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1;
}

.portfolio-card--hero .portfolio-card__body,
.portfolio-card--featured .portfolio-card__body {
	position: relative;
	inset: auto;
	padding: 1.5rem 1.75rem 1.75rem;
	background: transparent;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	gap: 0.5rem;
}

.portfolio-card__body h3 {
	font-size: clamp(1.2rem, 1.8vw, 1.85rem);
	margin-bottom: 0.4rem;
	color: #fff;
}

.portfolio-card--hero .portfolio-card__body h3,
.portfolio-card--featured .portfolio-card__body h3 {
	font-size: clamp(1.35rem, 2vw, 2.5rem);
}

.portfolio-card__body h3 a:hover {
	color: var(--primary);
}

.portfolio-card__body p {
	color: var(--muted);
	font-size: 0.95rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.portfolio-card__metrics {
	display: flex;
	gap: 1.5rem;
	margin-top: 0.35rem;
}

.portfolio-card__metrics strong {
	display: block;
	font-family: var(--font-metric);
	font-size: clamp(1.4rem, 2.4vw, 2.6rem);
	font-weight: 700;
	color: var(--primary-container);
	line-height: 1;
}

.portfolio-card--hero .portfolio-card__metrics strong,
.portfolio-card--featured .portfolio-card__metrics strong {
	font-size: clamp(1.8rem, 3vw, 3.5rem);
}

.portfolio-card__metrics div:nth-child(2) strong {
	color: var(--secondary);
}

.portfolio-card__metrics span {
	font-family: var(--font-metric);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted-soft);
}

.portfolio-grid--archive {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.portfolio-grid--archive .portfolio-card {
	grid-column: auto;
}

.portfolio-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: -1.5rem 0 2.5rem;
}

.portfolio-filters__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 600;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.portfolio-filters__chip:hover {
	color: #fff;
	border-color: rgba(255, 74, 143, 0.4);
}

.portfolio-filters__chip.is-active {
	color: #fff;
	background: rgba(255, 74, 143, 0.18);
	border-color: rgba(255, 74, 143, 0.5);
	box-shadow: 0 0 16px rgba(255, 74, 143, 0.2);
}

.empty-state {
	padding: 3rem;
	text-align: center;
}

.section-cta {
	margin-top: 2rem;
	text-align: center;
}

/* Lead magnet */
.lead-magnet__panel {
	padding: clamp(3rem, 8vw, 6rem);
	text-align: center;
	border-radius: var(--radius-xl);
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 20% 0%, rgba(255, 177, 197, 0.08), transparent 50%),
		radial-gradient(ellipse at 100% 100%, rgba(77, 224, 130, 0.08), transparent 45%),
		rgba(255, 255, 255, 0.03);
}

.lead-magnet__content {
	position: relative;
	z-index: 1;
}

.lead-magnet__panel:hover {
	transform: none;
}

.lead-magnet__points {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem 3rem;
	margin: 2.5rem 0 3.5rem;
	padding: 0;
	font-weight: 700;
	font-size: 1.125rem;
	color: #fff;
}

.lead-magnet__points li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.lead-magnet__points li::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--primary-container);
	flex-shrink: 0;
}

/* Process */
.process-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0 1.85rem;
	align-items: stretch;
}

.process-step {
	position: relative;
	display: grid;
	grid-template-rows: auto;
	padding: 0;
}

.process-step__card {
	position: relative;
	height: 100%;
	padding: 1.35rem 1.15rem 1.5rem;
	border-radius: 22px;
	background:
		linear-gradient(160deg, rgba(255, 74, 143, 0.08), transparent 55%),
		rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step.is-visible .process-step__card,
.process-step:hover .process-step__card {
	border-color: rgba(255, 74, 143, 0.35);
	box-shadow: 0 0 28px rgba(255, 74, 143, 0.12);
}

.process-step:hover .process-step__card {
	transform: translateY(-4px);
}

.process-step__node {
	position: relative;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1.1rem;
	display: grid;
	place-items: center;
}

.process-step__ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 74, 143, 0.35);
	box-shadow: 0 0 0 6px rgba(255, 74, 143, 0.06);
	animation: process-ring-pulse 2.8s ease-in-out infinite;
	animation-delay: calc(var(--step-i, 0) * 0.25s);
}

.process-step__num {
	position: relative;
	z-index: 1;
	display: block;
	font-family: var(--font-metric);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
	margin: 0;
	color: #ffb1c5;
	text-shadow: 0 0 18px rgba(255, 74, 143, 0.45);
}

.process-step:nth-child(1) .process-step__num { color: rgba(255, 177, 197, 0.55); }
.process-step:nth-child(2) .process-step__num { color: rgba(255, 177, 197, 0.7); }
.process-step:nth-child(3) .process-step__num { color: rgba(255, 177, 197, 0.85); }
.process-step:nth-child(4) .process-step__num { color: #ffb1c5; }
.process-step:nth-child(5) .process-step__num { color: #ff4a8f; }

.process-step h3 {
	font-size: clamp(1.25rem, 1.8vw, 1.65rem);
	margin-bottom: 0.65rem;
}

.process-step p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--muted);
}

.process-step__connector {
	position: absolute;
	top: 50%;
	left: calc(100% + 0.15rem);
	width: 1.55rem;
	display: grid;
	place-items: center;
	transform: translateY(-50%);
	z-index: 2;
	pointer-events: none;
}

.process-step__arrow {
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
	color: #ff4a8f;
	filter: drop-shadow(0 0 8px rgba(255, 74, 143, 0.55));
	opacity: 0;
	transform: scale(0.55) translateX(-6px);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
	transition-delay: calc(0.2s + var(--step-i, 0) * 0.1s);
}

.process-step.is-visible .process-step__arrow {
	opacity: 1;
	transform: scale(1) translateX(0);
	animation: process-arrow-nudge 1.6s ease-in-out infinite;
	animation-delay: calc(0.7s + var(--step-i, 0) * 0.12s);
}

.process-step__arrow svg {
	width: 20px;
	height: 20px;
	display: block;
}

@keyframes process-ring-pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.85;
	}
	50% {
		transform: scale(1.08);
		opacity: 1;
	}
}

@keyframes process-arrow-nudge {
	0%,
	100% {
		transform: scale(1) translateX(0);
	}
	50% {
		transform: scale(1.08) translateX(4px);
	}
}

/* FAQ */
.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	min-width: 0;
}

.faq-grid > * {
	min-width: 0;
	max-width: 100%;
}

.faq-list {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.reviews-slider {
	margin-top: 2rem;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
}

.reviews-slider__viewport {
	overflow: hidden;
	border-radius: var(--radius);
	touch-action: pan-y;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.reviews-list {
	display: flex;
	width: 100%;
	max-width: 100%;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
	cursor: grab;
	user-select: none;
}

.reviews-list:active {
	cursor: grabbing;
}

.reviews-list .review-card {
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	box-sizing: border-box;
}

.reviews-slider__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1rem;
}

.reviews-slider__btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: #ffb1c5;
	display: inline-grid;
	place-items: center;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.reviews-slider__btn:hover {
	background: rgba(255, 74, 143, 0.16);
	border-color: rgba(255, 74, 143, 0.45);
	color: #fff;
}

.reviews-slider__btn:active {
	transform: scale(0.94);
}

.reviews-slider__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	flex: 1;
}

.reviews-slider__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.22);
	transition: width 0.25s ease, background 0.25s ease;
}

.reviews-slider__dot.is-active {
	width: 22px;
	background: #ff4a8f;
	box-shadow: 0 0 12px rgba(255, 74, 143, 0.55);
}

.reviews-slider--single .reviews-slider__controls {
	display: none;
}

.faq-item {
	padding: 1.5rem;
	border-radius: 16px;
	cursor: pointer;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	font-weight: 700;
	font-size: 1.125rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	color: #fff;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "";
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--primary);
	border-bottom: 2px solid var(--primary);
	transform: rotate(45deg);
	transition: transform 0.25s;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.faq-item[open] summary::after {
	transform: rotate(225deg);
	margin-top: 0.45rem;
}

.faq-item p {
	margin: 1rem 0 0;
}

.review-card {
	padding: 2rem;
	border-radius: var(--radius);
	position: relative;
}

.reviews-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.reviews-head h2 {
	margin: 0;
}

.kwork-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	max-width: 100%;
	width: fit-content;
	padding: 0.7rem 0.9rem 0.7rem 0.7rem;
	border-radius: 16px;
	border: 1px solid rgba(255, 184, 0, 0.35);
	background:
		linear-gradient(135deg, rgba(255, 184, 0, 0.16), rgba(255, 74, 143, 0.08) 55%, rgba(255, 255, 255, 0.03));
	color: #fff;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	box-sizing: border-box;
}

.kwork-badge:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 184, 0, 0.55);
	box-shadow: 0 12px 28px rgba(255, 184, 0, 0.15);
	color: #fff;
}

.kwork-badge__mark {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 12px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.15rem;
	color: #1a1205;
	background: linear-gradient(145deg, #ffd45a, #f5a623);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.kwork-badge__body {
	display: grid;
	gap: 0.1rem;
	min-width: 0;
}

.kwork-badge__body strong {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
}

.kwork-badge__body em {
	font-style: normal;
	font-size: 0.78rem;
	color: rgba(233, 223, 239, 0.72);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.kwork-badge__stars {
	color: #ffd45a;
	letter-spacing: 0.05em;
	font-size: 0.82rem;
	flex-shrink: 0;
}

.kwork-badge__arrow {
	color: rgba(255, 212, 90, 0.9);
	font-size: 1rem;
	flex-shrink: 0;
}

.kwork-badge--footer {
	margin-top: 1rem;
	width: 100%;
	max-width: 22rem;
}

.review-card__author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.review-card__author img,
.avatar-fallback {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	background: linear-gradient(145deg, rgba(255, 74, 143, 0.28), rgba(120, 80, 200, 0.22));
	border: 1px solid rgba(255, 74, 143, 0.35);
	flex-shrink: 0;
}

.avatar-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffb1c5;
}

.avatar-fallback__icon,
.avatar-fallback .ws-icon,
.avatar-fallback svg {
	width: 22px;
	height: 22px;
	stroke-width: 1.75;
}

.review-card__author strong {
	display: block;
	color: #fff;
}

.review-card__author span {
	color: var(--muted-soft);
	font-size: 0.875rem;
}

.review-card p {
	margin: 0;
	color: var(--ink);
	font-size: 1.125rem;
}

/* CTA band */
.cta-band {
	position: relative;
	padding: 4.5rem 0;
	overflow: hidden;
	border-block: 1px solid rgba(255, 177, 197, 0.18);
	background: rgba(255, 74, 143, 0.08);
}

.cta-band__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.cta-band h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin: 0;
	max-width: 32rem;
	color: #fff;
}

.cta-band .btn--primary {
	background: var(--primary);
	color: #65002f;
	box-shadow: 0 0 20px var(--primary-glow);
}

/* Contact */
.contact-block {
	position: relative;
}

.contact-block .container {
	position: relative;
	z-index: 1;
	width: min(100% - 2.5rem, 1280px);
}

.contact-panel {
	max-width: min(1240px, 100%);
	width: 100%;
	margin: 0 auto;
	padding: clamp(2rem, 4vw, 3.25rem);
	border-radius: var(--radius-xl);
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.contact-form--quiz {
	margin-top: 0.5rem;
}

.contact-panel:hover {
	transform: none;
}

.contact-panel h2 {
	margin-top: 0;
	text-align: center;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	margin-bottom: 2rem;
}

.contact-panel__tg {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
}

.contact-panel__tg p {
	margin: 0;
	color: var(--muted);
}

.contact-form {
	display: grid;
	gap: 1.5rem;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.contact-form label {
	display: grid;
	gap: 0.5rem;
}

.contact-form label span {
	font-family: var(--font-metric);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-left: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 1rem 1.5rem;
	background: var(--surface-lowest);
	font: inherit;
	color: #fff;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(255, 177, 197, 0.2);
}

.contact-form option {
	background: var(--surface-lowest);
	color: #fff;
}

.form-note {
	margin: 0;
	font-size: 0.85rem;
	text-align: center;
}

/* Footer */
.site-footer {
	padding: var(--section-pad) 0 2rem;
	border-top: 1px solid var(--line);
	background: var(--surface);
}

.site-footer__grid {
	display: flex;
	justify-content: space-between;
	gap: 3rem;
	flex-wrap: wrap;
}

.site-footer__brand {
	max-width: 320px;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1.5rem;
	align-items: center;
}

.site-footer__social .btn {
	width: auto;
}

.site-footer__cols {
	display: flex;
	gap: 4rem;
	flex-wrap: wrap;
}

.site-footer h6 {
	margin: 0 0 1rem;
	font-family: var(--font-metric);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(233, 223, 239, 0.4);
}

.footer-nav {
	display: grid;
	gap: 0.5rem;
}

.footer-nav a:hover {
	color: var(--primary);
}

.site-footer__bottom {
	margin-top: 5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line-soft);
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	color: rgba(233, 223, 239, 0.4);
	font-size: 0.875rem;
}

/* Singles */
.portfolio-single {
	padding-bottom: 4rem;
}

.portfolio-single__top {
	padding-top: calc(var(--header-h) + 1.5rem);
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 1.5rem;
	font-size: 0.88rem;
	color: var(--muted);
}

.breadcrumbs a {
	color: rgba(233, 223, 239, 0.72);
	transition: color 0.2s ease;
}

.breadcrumbs a:hover {
	color: #ffb1c5;
}

.breadcrumbs__sep {
	opacity: 0.45;
}

.breadcrumbs__current {
	color: #fff;
	max-width: 28rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.portfolio-single__hero {
	padding-top: 0;
	margin-bottom: 1.75rem;
	max-width: 52rem;
}

.portfolio-single__hero h1 {
	font-size: clamp(2rem, 4vw, 3.1rem);
	margin: 0.75rem 0 0.85rem;
}

.portfolio-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.portfolio-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 74, 143, 0.35);
	background: rgba(255, 74, 143, 0.12);
	color: #ffb1c5;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.2;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

a.portfolio-chip:hover {
	background: rgba(255, 74, 143, 0.22);
	border-color: rgba(255, 74, 143, 0.55);
	color: #fff;
}

.portfolio-chip--accent {
	border-color: rgba(77, 224, 130, 0.4);
	background: rgba(77, 224, 130, 0.14);
	color: #4de082;
}

.portfolio-single__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.35rem;
}

.portfolio-single__open {
	min-width: 11.5rem;
}

.portfolio-single__layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 1.75rem;
	align-items: start;
}

.portfolio-sidebar {
	position: sticky;
	top: calc(var(--header-h) + 1rem);
	display: grid;
	gap: 1rem;
}

.portfolio-sidebar__card {
	padding: 1.15rem 1.2rem 1.25rem;
	border-radius: 18px;
}

.portfolio-sidebar__title {
	margin: 0 0 0.9rem;
	font-size: 1rem;
	letter-spacing: 0.01em;
}

.portfolio-sidebar__facts {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.portfolio-sidebar__facts li {
	display: grid;
	gap: 0.15rem;
}

.portfolio-sidebar__facts span {
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted-soft);
}

.portfolio-sidebar__facts strong {
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.35;
}

.portfolio-sidebar__card .btn + .btn {
	margin-top: 0.55rem;
}

.portfolio-mini-list {
	display: grid;
	gap: 0.7rem;
}

.portfolio-mini {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 0.7rem;
	align-items: center;
	padding: 0.35rem;
	border-radius: 12px;
	transition: background 0.2s ease;
}

.portfolio-mini:hover {
	background: rgba(255, 255, 255, 0.04);
}

.portfolio-mini__media {
	display: block;
	width: 72px;
	aspect-ratio: 16 / 10;
	border-radius: 8px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
}

.portfolio-mini__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.portfolio-mini__title {
	display: block;
	font-size: 0.88rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}

.portfolio-mini__meta {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.75rem;
	color: var(--muted);
}

.portfolio-sidebar__more {
	display: inline-flex;
	margin-top: 0.85rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: #ffb1c5;
}

.portfolio-sidebar__card--cta h2 {
	margin: 0.2rem 0 0.55rem;
	font-size: 1.25rem;
}

.portfolio-sidebar__card--cta p {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.portfolio-sidebar__cta-label {
	margin: 0;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #4de082;
	font-weight: 700;
}

.portfolio-single__main {
	min-width: 0;
}

.portfolio-single__cover {
	margin-top: 0;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(255, 45, 135, 0.2);
	background: rgba(255, 255, 255, 0.03);
}

.portfolio-single__cover img,
.portfolio-single__cover-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	object-position: top center;
}

.portfolio-single__metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 1.25rem;
}

.portfolio-single__metrics > div {
	padding: 1.1rem 1.2rem;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.portfolio-single__metrics strong {
	display: block;
	font-family: var(--font-metric);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--primary-container);
	line-height: 1.1;
	margin-bottom: 0.35rem;
}

.portfolio-single__metrics span {
	color: var(--muted);
	font-size: 0.9rem;
}

.portfolio-single__content {
	max-width: none;
	margin-top: 1.5rem;
	padding: 0;
}

.portfolio-single__content h2 {
	margin-top: 1.5rem;
}

.portfolio-single__stages,
.portfolio-single__gallery-wrap,
.portfolio-single__cta {
	margin-top: 2.5rem;
	padding: 0;
}

.portfolio-single__main .section-head--compact {
	margin-bottom: 1.25rem;
}

.portfolio-stages {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.portfolio-stages__item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.1rem;
	padding: 1.25rem 1.35rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.portfolio-stages__num {
	font-family: var(--font-metric);
	font-size: 1.35rem;
	font-weight: 700;
	color: #ff4a8f;
	text-shadow: 0 0 14px rgba(255, 74, 143, 0.35);
}

.portfolio-stages__item h3 {
	margin: 0 0 0.4rem;
	font-size: 1.2rem;
}

.portfolio-stages__item p {
	margin: 0;
	color: var(--muted);
}

.portfolio-single__gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.portfolio-single__shot {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(255, 45, 135, 0.18);
	background: rgba(255, 255, 255, 0.03);
}

.portfolio-single__shot img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	object-position: top center;
}

.portfolio-single__shot figcaption {
	padding: 0.85rem 1.1rem 1.05rem;
	color: var(--muted);
	font-size: 0.92rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.portfolio-single__cta-panel {
	padding: clamp(2rem, 5vw, 3rem);
	text-align: center;
	border-radius: var(--radius-xl);
}

.portfolio-single__cta-panel h2 {
	margin-bottom: 0.75rem;
}

.portfolio-single__cta-panel p {
	max-width: 36rem;
	margin: 0 auto;
}

.portfolio-single__cta-panel .portfolio-single__actions {
	justify-content: center;
}

.service-single {
	padding-top: calc(var(--header-h) + 3rem);
}

.page-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1.5rem;
}

.page-content {
	padding-top: calc(var(--header-h) + 2rem);
}

/* Motion */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@keyframes ping {
	75%, 100% {
		transform: scale(1.35);
		opacity: 0;
	}
}

@keyframes pulse-soft {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

/* Responsive */
@media (max-width: 980px) {
	.container {
		width: min(100% - 2.5rem, var(--container));
	}

	.site-main,
	.section,
	.portfolio-bento,
	.services-grid,
	.pricing-grid,
	.lead-magnet,
	.contact-panel,
	.site-footer__grid {
		min-width: 0;
		max-width: 100%;
	}

	.nav-dropdown {
		width: 100%;
		left: 0;
		transform: none;
		max-width: 100%;
	}

	.has-cases:hover > .nav-dropdown,
	.has-cases:focus-within > .nav-dropdown,
	.has-cases.is-open > .nav-dropdown {
		transform: none;
	}

	.bento__item,
	.portfolio-card,
	.portfolio-card,
	.portfolio-card--regular,
	.portfolio-card--wide,
	.portfolio-card--tall,
	.portfolio-card--hero,
	.portfolio-card--featured {
		grid-column: span 12;
		grid-row: auto;
		max-width: 100%;
		min-width: 0;
	}

	.portfolio-card--tall .portfolio-card__media,
	.portfolio-card--wide .portfolio-card__media {
		aspect-ratio: 16 / 10;
		min-height: 0;
	}

	.services-grid,
	.pricing-grid,
	.process-grid,
	.faq-grid,
	.portfolio-grid--archive,
	.portfolio-single__gallery {
		grid-template-columns: 1fr;
	}

	.portfolio-single__metrics {
		grid-template-columns: 1fr 1fr;
	}

	.portfolio-single__layout {
		grid-template-columns: 1fr;
	}

	.portfolio-sidebar {
		position: static;
		order: 2;
	}

	.portfolio-single__main {
		order: 1;
	}

	.service-card,
	.service-card:nth-child(4),
	.service-card:nth-child(5) {
		grid-column: auto;
	}

	.process-grid {
		grid-template-columns: 1fr;
		gap: 0;
		padding-left: 0.25rem;
	}

	.process-step {
		padding: 0 0 1.75rem 0;
		display: block;
	}

	.process-step:last-child {
		padding-bottom: 0;
	}

	.process-step__card {
		padding: 1.25rem 1.15rem 1.35rem 1.25rem;
	}

	.process-step__connector {
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		margin: 0.65rem 0 0 1.55rem;
		height: auto;
		justify-items: start;
		transform: none;
	}

	.process-step__arrow {
		transform: scale(0.55) rotate(90deg) translateX(-6px);
	}

	.process-step.is-visible .process-step__arrow {
		transform: scale(1) rotate(90deg) translateX(0);
		animation-name: process-arrow-nudge-vertical;
	}

	@keyframes process-arrow-nudge-vertical {
		0%,
		100% {
			transform: scale(1) rotate(90deg) translateX(0);
		}
		50% {
			transform: scale(1.08) rotate(90deg) translateX(4px);
		}
	}

	.site-nav {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}

	body.nav-open .site-nav {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(22, 17, 28, 0.98);
		border-bottom: 1px solid var(--line);
		padding: 1rem 1.25rem 1.5rem;
	}

	body.nav-open .site-nav__list {
		flex-direction: column;
		gap: 0.85rem;
	}

	.site-nav__list > .has-cases {
		flex-wrap: wrap;
	}

	.nav-dropdown {
		position: static;
		width: 100%;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
		margin-top: 0.5rem;
	}

	.has-cases.is-open > .nav-dropdown {
		display: block;
		transform: none;
	}

	.nav-dropdown__list {
		grid-template-columns: 1fr;
		max-height: 16rem;
	}

	.cta-band__inner,
	.site-footer__grid {
		flex-direction: column;
		align-items: flex-start;
	}

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

@media (max-width: 640px) {
	.hero {
		padding-inline: 1.25rem;
	}

	.container {
		width: min(100% - 2rem, var(--container));
	}

	.hero__actions {
		flex-direction: column;
	}

	.btn:not(.btn--tg):not(.btn--sm) {
		width: 100%;
	}

	.hero__actions .btn {
		width: 100%;
	}

	.site-header__actions .btn--primary {
		display: none;
	}

	.site-header__actions .btn--tg {
		display: inline-flex;
		padding: 0.65rem 0.9rem;
	}

	.site-header__actions .btn--tg span {
		display: none;
	}

	.tg-float span {
		display: none;
	}

	.tg-float {
		width: 3.25rem;
		height: 3.25rem;
		padding: 0;
		justify-content: center;
		border-radius: 999px;
		right: 0.85rem;
		bottom: 0.85rem;
	}

	.kwork-badge {
		width: 100%;
		max-width: 100%;
	}

	.kwork-badge__stars {
		display: none;
	}

	.kwork-badge__body em {
		white-space: normal;
	}

	.contact-panel__tg {
		flex-direction: column;
		align-items: stretch;
	}

	.contact-panel__tg .btn {
		width: 100%;
	}

	.site-logo__text {
		font-size: clamp(1.25rem, 6vw, 1.75rem);
	}

	.portfolio-card__body h3,
	.portfolio-card--hero .portfolio-card__body h3,
	.portfolio-card--featured .portfolio-card__body h3 {
		font-size: clamp(1.15rem, 5.5vw, 1.6rem);
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.site-footer__social .btn {
		max-width: 100%;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}
