:root {
	--ink: #121417;
	--ink-soft: #2a2f37;
	--muted: #6b7280;
	--paper: #fff;
	--cream: #faf7f7;
	--line: #ece6e6;
	--red: #d8121f;
	--red-dk: #a60d18;
	--red-lt: #fdebec;
	--blue: #1557ff;
	--blue-dk: #0c2f8f;
	--blue-lt: #eaf0ff;
	--shadow: 0 18px 50px -22px rgba(20, 20, 23, 0.34);
	--shadow-sm: 0 8px 26px -16px rgba(20, 20, 23, 0.4);
	--r: 20px;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
h1,
h2,
h3 {
	font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
	letter-spacing: -0.02em;
	line-height: 1.08;
}
a {
	color: inherit;
	text-decoration: none;
}
a:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 4px;
}
.wrap {
	width: min(1180px, 92%);
	margin-inline: auto;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--red-dk);
}
.eyebrow:before {
	content: "";
	width: 22px;
	height: 2px;
	background: var(--blue-dk);
	border-radius: 2px;
}
section {
	padding: clamp(64px, 9vw, 120px) 0;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 700;
	font-size: 0.97rem;
	padding: 14px 26px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition:
		0.25s transform,
		0.25s box-shadow,
		0.25s background;
}
.btn:hover {
	transform: translateY(-2px);
}
.btn-primary {
	background: var(--red);
	color: #fff;
	box-shadow: 0 14px 30px -12px rgba(216, 18, 31, 0.55);
}
.nav-cta .btn-primary,
.cta .btn-primary {
	background: var(--blue);
}
.btn-ghost {
	background: #fff;
	color: var(--ink);
	border-color: var(--line);
}
.btn-ghost:hover {
	border-color: var(--red);
}
.nav {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: saturate(160%) blur(12px);
	background: rgba(255, 255, 255, 0.78);
	border-bottom: 1px solid transparent;
}
.nav-in {
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	font-size: 1.55rem;
	line-height: 1;
	color: var(--ink);
}
.brand img {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	object-fit: contain;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 30px;
}
.nav-links a {
	font-weight: 700;
	font-size: 0.94rem;
	color: var(--ink-soft);
	position: relative;
}
.nav-links a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 2px;
	background: var(--red);
	transition: 0.25s;
	border-radius: 2px;
}
.nav-links a:hover:after {
	width: 100%;
}
.nav-cta {
	display: flex;
	align-items: center;
	gap: 14px;
}
.hero {
	position: relative;
	padding-top: clamp(56px, 7vw, 90px);
	overflow: hidden;
}
.hero:before,
.hero:after {
	content: "";
	position: absolute;
	z-index: -1;
}
.hero:before {
	width: 360px;
	height: 360px;
	background: var(--red-lt);
	border-radius: 50%;
	top: -130px;
	right: -120px;
}
.hero:after {
	width: 240px;
	height: 240px;
	background: var(--blue-lt);
	border-radius: 34px;
	bottom: -90px;
	left: -80px;
	transform: rotate(12deg);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	grid-template-areas:
		"copy visual"
		"trust visual";
	column-gap: 54px;
	row-gap: 0;
	align-items: center;
}
.hero-copy {
	grid-area: copy;
}
.hero h1 {
	font-size: clamp(2.4rem, 5.2vw, 4rem);
	font-weight: 700;
	max-width: 13ch;
}
.hero p.lead {
	margin-top: 22px;
	font-size: 1.12rem;
	color: var(--muted);
	max-width: 48ch;
}
.hero-cta {
	margin-top: 34px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.hero-trust {
	grid-area: trust;
	margin-top: 38px;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	align-items: center;
}
.hero-trust .t {
	display: flex;
	flex-direction: column;
}
.hero-trust .t b {
	font-family: "Space Grotesk";
	font-size: 1.5rem;
	color: var(--ink);
}
.hero-trust .t span {
	font-size: 0.82rem;
	color: var(--muted);
}
.hero-trust i {
	width: 1px;
	height: 38px;
	background: var(--line);
}
.hero-visual {
	grid-area: visual;
	position: relative;
	min-height: 455px;
	display: flex;
	align-items: center;
}
.hero-image {
	display: block;
	width: 116%;
	max-width: none;
	height: auto;
	margin-left: -7%;
	border-radius: 24px;
}
.mock {
	border-radius: var(--r);
	overflow: hidden;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: var(--shadow);
}
.mock-main {
	padding: 18px;
	min-height: 380px;
	transform: rotate(-2deg);
	animation: floaty 7s ease-in-out infinite;
}
.mock-float {
	position: absolute;
	width: 48%;
	right: -20px;
	bottom: 8px;
	padding: 18px;
	transform: rotate(3deg);
	box-shadow: var(--shadow);
	animation: floaty2 6s ease-in-out infinite;
}
.mock-float small {
	color: var(--muted);
	font-weight: 700;
}
.mock-float strong {
	display: block;
	margin: 4px 0;
	color: var(--ink);
	font-size: 1.08rem;
}
.mock-float p {
	color: var(--muted);
	font-size: 0.9rem;
}
.chip {
	position: absolute;
	top: -16px;
	left: -14px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	border-radius: 14px;
	padding: 10px 14px;
	display: flex;
	gap: 9px;
	align-items: center;
	font-weight: 700;
	font-size: 0.85rem;
	z-index: 3;
	animation: floaty2 5s ease-in-out infinite;
}
.chip span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--blue);
	box-shadow: 0 0 0 4px var(--blue-lt);
}
@keyframes floaty {
	0%,
	100% {
		transform: translateY(0) rotate(-2deg);
	}
	50% {
		transform: translateY(-14px) rotate(-2deg);
	}
}
@keyframes floaty2 {
	0%,
	100% {
		transform: translateY(0) rotate(3deg);
	}
	50% {
		transform: translateY(-10px) rotate(3deg);
	}
}
.mock-bar {
	display: flex;
	gap: 7px;
	margin-bottom: 24px;
}
.mock-bar em {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #e5e7eb;
}
.mock-bar em:first-child {
	background: var(--red);
}
.mock-bar em:nth-child(2) {
	background: #f59e0b;
}
.mock-bar em:nth-child(3) {
	background: #22c55e;
}
.mock-head {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}
.mock-head small,
.mock-stats small {
	display: block;
	color: var(--muted);
	font-weight: 700;
	font-size: 0.76rem;
}
.mock-head strong {
	display: block;
	font-family: "Space Grotesk";
	font-size: 1.55rem;
	line-height: 1.1;
}
.mock-head label {
	height: max-content;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--blue-lt);
	color: var(--blue-dk);
	font-size: 0.72rem;
	font-weight: 700;
}
.mock-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.mock-stats div {
	padding: 14px;
	border-radius: 16px;
	background: var(--cream);
	border: 1px solid var(--line);
}
.mock-stats b {
	font-family: "Space Grotesk";
	font-size: 1.6rem;
}
.mock-chart {
	height: 150px;
	margin-top: 18px;
	border-radius: 18px;
	background: #111827;
	display: flex;
	align-items: end;
	gap: 10px;
	padding: 18px;
}
.mock-chart span {
	flex: 1;
	border-radius: 999px 999px 6px 6px;
	background: var(--red);
}
.mock-chart span:nth-child(even) {
	background: var(--blue);
}
.mock-chart span:nth-child(1) {
	height: 44%;
}
.mock-chart span:nth-child(2) {
	height: 78%;
}
.mock-chart span:nth-child(3) {
	height: 58%;
}
.mock-chart span:nth-child(4) {
	height: 92%;
}
.mock-chart span:nth-child(5) {
	height: 68%;
}
.statement {
	background: var(--cream);
	border-block: 1px solid var(--line);
}
.statement-in {
	max-width: 920px;
}
.statement h2 {
	font-size: clamp(2rem, 4.5vw, 3.6rem);
	margin-top: 18px;
}
.statement p {
	max-width: 72ch;
	margin-top: 18px;
	color: var(--muted);
	font-size: 1.08rem;
}
.section-head {
	display: grid;
	grid-template-columns: 0.36fr 1fr;
	gap: 36px;
	align-items: start;
	margin-bottom: 34px;
}
.section-head h2 {
	font-size: clamp(2rem, 4.2vw, 3.5rem);
	max-width: 760px;
}
.section-head.compact {
	display: block;
}
.section-head.compact h2 {
	margin-top: 16px;
}
.section-head.compact p {
	max-width: 62ch;
	color: var(--muted);
	font-size: 1.06rem;
	margin-top: 12px;
}
.work-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.work-grid article {
	border: 1px solid var(--line);
	background: #fff;
	border-radius: var(--r);
	padding: 34px;
	box-shadow: var(--shadow-sm);
}
.work-grid article:first-child {
	background: var(--blue-dk);
	color: #fff;
	border-color: var(--blue-dk);
}
.work-grid h3 {
	font-size: 1.55rem;
	margin-bottom: 14px;
}
.work-grid p {
	color: var(--muted);
	font-size: 1.04rem;
}
.work-grid article:first-child p {
	color: rgba(255, 255, 255, 0.75);
}
.work-grid ul {
	margin-top: 22px;
	display: grid;
	gap: 10px;
	list-style: none;
}
.work-grid li {
	font-weight: 700;
	color: inherit;
}
.work-grid li:before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-right: 10px;
	border-radius: 50%;
	background: var(--red);
}
.projects {
	background: var(--cream);
}
.live-project-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 34px;
}
.live-project-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: #fff;
	box-shadow: var(--shadow-sm);
}
.live-project-image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f3f4f6;
}
.live-project-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.live-project-card:hover .live-project-image img {
	transform: scale(1.02);
}
.live-project-body {
	padding: 26px;
}
.live-project-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 10px;
}
.live-project-meta span {
	color: var(--red-dk);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.live-project-meta small {
	color: var(--muted);
	font-weight: 700;
}
.live-project-card h3 {
	font-size: 1.55rem;
	margin-bottom: 8px;
}
.live-project-card p {
	color: var(--muted);
}
.portfolio-subhead {
	display: grid;
	grid-template-columns: 1fr 0.75fr;
	align-items: end;
	gap: 32px;
	margin-top: clamp(64px, 8vw, 96px);
}
.portfolio-subhead h3 {
	font-size: clamp(1.8rem, 3.4vw, 2.8rem);
	margin-top: 14px;
}
.portfolio-subhead p {
	color: var(--muted);
}
.project-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr 0.9fr;
	gap: 18px;
	margin-top: 34px;
}
.project-card {
	border: 1px solid var(--line);
	background: #fff;
	border-radius: var(--r);
	padding: 18px;
	box-shadow: var(--shadow-sm);
}
.project-card.big {
	grid-row: span 2;
}
.project-shot {
	height: 190px;
	border-radius: 16px;
	margin-bottom: 18px;
	background: var(--red-lt);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.project-card:nth-child(even) .project-shot {
	background: var(--blue-lt);
}
.project-card.big .project-shot {
	height: 360px;
}
.project-shot img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.project-card:hover .project-shot img {
	transform: scale(1.02);
}
.project-shot:before {
	display: none;
}
.project-shot:after {
	display: none;
}
.project-card span {
	color: var(--red-dk);
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.project-card h3 {
	font-size: 1.35rem;
	margin: 8px 0 8px;
}
.project-card p {
	color: var(--muted);
}
.project-card div:last-child {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}
.project-card small {
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--cream);
	border: 1px solid var(--line);
	font-weight: 700;
	color: var(--ink-soft);
}
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 30px;
}
.steps > div {
	border-top: 2px solid var(--line);
	padding-top: 20px;
}
.steps b {
	font-family: "Space Grotesk";
	font-size: 1.45rem;
	color: var(--red);
}
.steps h3 {
	margin: 26px 0 10px;
}
.steps p {
	color: var(--muted);
}
.about {
	background: var(--ink);
	color: #fff;
}
.about .eyebrow {
	color: #fff;
}
.about .eyebrow:before {
	background: var(--red);
}
.about-in {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 42px;
	align-items: center;
}
.about h2 {
	font-size: clamp(2rem, 4.2vw, 3.5rem);
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.tags span {
	padding: 12px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	font-weight: 700;
}
.faq {
	background: #fff;
}
.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 30px;
}
.faq-grid article {
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 24px;
	background: var(--cream);
}
.faq-grid h3 {
	font-size: 1.12rem;
	margin-bottom: 10px;
}
.faq-grid p {
	color: var(--muted);
}
.cta {
	text-align: center;
}
.cta-in {
	border-radius: 28px;
	background: var(--red);
	color: #fff;
	padding: clamp(36px, 7vw, 82px);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}
.cta-in:after {
	content: "";
	position: absolute;
	right: -70px;
	top: -70px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: var(--blue);
	opacity: 0.95;
}
.cta .eyebrow {
	color: #fff;
}
.cta .eyebrow:before {
	background: #fff;
}
.cta h2 {
	font-size: clamp(2.2rem, 5vw, 4rem);
	max-width: 760px;
	margin: 16px auto;
}
.cta p {
	max-width: 650px;
	margin: 0 auto 28px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.08rem;
}
.cta .btn-primary {
	background: #fff;
	color: var(--blue-dk);
	box-shadow: none;
	position: relative;
	z-index: 1;
}
.cta .eyebrow,
.cta h2,
.cta p {
	position: relative;
	z-index: 1;
}
footer {
	padding: 30px 0 46px;
	border-top: 1px solid var(--line);
}
.footer-in {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	color: var(--muted);
}
.footer-in strong {
	font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
	font-size: 1.3rem;
	color: var(--ink);
}
@media (max-width: 900px) {
	.nav-links {
		display: none;
	}
	.nav-cta .btn-ghost {
		display: none;
	}
	.hero-grid,
	.section-head,
	.about-in {
		grid-template-columns: 1fr;
	}
	.hero-grid {
		grid-template-areas:
			"copy"
			"visual"
			"trust";
		row-gap: 20px;
	}
	.project-grid,
	.live-project-grid,
	.faq-grid {
		grid-template-columns: 1fr 1fr;
	}
	.steps {
		grid-template-columns: 1fr 1fr;
	}
	.hero h1 {
		max-width: none;
	}
	.hero-visual {
		margin-top: 0;
	}
}
@media (max-width: 640px) {
	.wrap {
		width: min(100% - 28px, 1180px);
	}
	.nav-in {
		height: 66px;
	}
	.brand {
		font-size: 1.35rem;
	}
	.nav-cta .btn-primary {
		padding: 11px 16px;
		font-size: 0.88rem;
	}
	.hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.2rem);
	}
	.hero-cta .btn {
		width: 100%;
		justify-content: center;
	}
	.hero-trust i {
		display: none;
	}
	.mock-float {
		position: relative;
		width: auto;
		right: auto;
		bottom: auto;
		margin-top: 14px;
	}
	.hero-visual {
		min-height: auto;
	}
	.hero-image {
		width: 100%;
		margin-left: 0;
		border-radius: 18px;
	}
	.work-grid,
	.project-grid,
	.live-project-grid,
	.faq-grid,
	.steps {
		grid-template-columns: 1fr;
	}
	.portfolio-subhead {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.live-project-body {
		padding: 22px;
	}
	.live-project-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}
	.project-card.big .project-shot,
	.project-shot {
		height: 220px;
	}
	.footer-in {
		flex-direction: column;
	}
	.section-head {
		gap: 16px;
	}
}

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