:root {
	--blue: #2563eb;
	--cyan: #06b6d4;
	--dark: #0f172a;
	--green: #22c55e;
	--ink: #172033;
	--light: #f7fbff;
	--muted: #64748b;
	--orange: #f97316;
	--pink: #ec4899;
	--purple: #7c3aed;
	--white: #ffffff;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background:
		radial-gradient(circle at 12% 16%, rgba(6, 182, 212, 0.28), transparent 28rem),
		radial-gradient(circle at 86% 18%, rgba(124, 58, 237, 0.22), transparent 26rem),
		radial-gradient(circle at 68% 88%, rgba(34, 197, 94, 0.18), transparent 28rem),
		linear-gradient(135deg, #f8fbff 0%, #eef6ff 48%, #fff7ed 100%);
	color: var(--ink);
	font-family: 'Manrope', Arial, Helvetica, sans-serif;
	margin: 0;
	min-height: 100vh;
	overflow-x: hidden;
}

body:before {
	animation: floatGlow 14s ease-in-out infinite alternate;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(236, 72, 153, 0.18), rgba(34, 197, 94, 0.16));
	border-radius: 999px;
	content: '';
	filter: blur(30px);
	height: 420px;
	position: fixed;
	right: -160px;
	top: 120px;
	width: 420px;
	z-index: -1;
}

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

.page {
	margin: 0 auto;
	max-width: 1500px;
	padding: 28px 42px 32px;
	position: relative;
}

.header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 18px;
}

.logo {
	display: flex;
}

.logo img {
	display: block;
	height: 100px;
	width: auto;
}

.header-badge {
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
	color: var(--dark);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	padding: 14px 18px;
	text-align: center;
	text-transform: uppercase;
}

.hero {
	align-items: start;
	display: grid;
	gap: 70px;
	grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
	margin-top: 38px;
}

.content {
	padding-top: 18px;
}

.intro-line {
	align-items: center;
	display: flex;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.intro-photo img {
	border-radius: 18px;
	display: block;
	height: 100px;
	object-fit: cover;
	width: 100px;
}

.name-line {
	color: var(--dark);
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.kicker {
	color: var(--blue);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.intro-socials {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-top: 10px;
}

.intro-socials a {
	color: rgba(15, 23, 42, 0.42);
	display: inline-flex;
	font-size: 15px;
	line-height: 1;
	transition: 0.2s ease;
}

.intro-socials a:hover {
	color: var(--blue);
	transform: translateY(-1px);
}

h1 {
	color: var(--dark);
	font-size: clamp(46px, 6.4vw, 78px);
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 1;
	margin: 0 0 30px;
	max-width: 900px;
}

.gradient-text {
	background: linear-gradient(120deg, var(--blue), var(--purple), var(--pink), var(--orange));
	-webkit-background-clip: text;
	color: transparent;
	display: block;
}

.lead {
	color: #516074;
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	max-width: 680px;
}

.visual {
	min-height: 650px;
	position: relative;
}

.orb {
	align-items: center;
	animation: logoFloat 9s ease-in-out infinite;
	background:
		radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.78), transparent 28%),
		linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(6, 182, 212, 0.82), rgba(124, 58, 237, 0.84));
	border-radius: 38% 62% 56% 44%;
	box-shadow:
		0 34px 90px rgba(37, 99, 235, 0.3),
		inset 0 0 40px rgba(255, 255, 255, 0.22);
	display: flex;
	height: 360px;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 24px;
	width: 360px;
}

.orb:before {
	animation: spinRing 16s linear infinite;
	border: 2px dashed rgba(255, 255, 255, 0.5);
	border-radius: inherit;
	content: '';
	inset: 22px;
	position: absolute;
}

.orb img {
	animation: logoPulse 5s ease-in-out infinite;
	filter: drop-shadow(0 18px 24px rgba(15, 23, 42, 0.22));
	max-width: 46%;
	position: relative;
	width: 170px;
	z-index: 2;
}

.service-stack {
	display: grid;
	gap: 18px;
	left: 0;
	position: absolute;
	top: 52px;
	width: min(390px, 100%);
	z-index: 2;
}

.service {
	align-items: center;
	animation: floatCard 5s ease-in-out infinite;
	backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 26px;
	box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
	display: flex;
	gap: 18px;
	padding: 20px;
}

.service:nth-child(2) {
	animation-delay: 0.35s;
	margin-left: 52px;
}

.service:nth-child(3) {
	animation-delay: 0.7s;
	margin-left: 16px;
}

.service:nth-child(4) {
	animation-delay: 1.05s;
	margin-left: 70px;
}

.icon {
	align-items: center;
	background: linear-gradient(135deg, var(--blue), var(--purple));
	border-radius: 18px;
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
	color: var(--white);
	display: flex;
	flex: 0 0 52px;
	font-size: 22px;
	font-weight: 900;
	height: 52px;
	justify-content: center;
	width: 52px;
}

.service:nth-child(2) .icon {
	background: linear-gradient(135deg, var(--purple), var(--pink));
}

.service:nth-child(3) .icon {
	background: linear-gradient(135deg, var(--green), var(--cyan));
}

.service:nth-child(4) .icon {
	background: linear-gradient(135deg, var(--orange), var(--pink));
}

.service-title {
	color: var(--dark);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
}

.service-copy {
	color: var(--muted);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	margin-top: 5px;
}

.contact-band {
	align-items: stretch;
	background:
		linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.96));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 38px;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
	color: var(--white);
	display: grid;
	gap: 18px;
	grid-template-columns: 1.2fr 0.9fr 0.9fr;
	margin-top: 0;
	overflow: hidden;
	padding: 32px;
	position: relative;
}

.contact-band:before {
	background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink), var(--orange));
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.contact-copy {
	align-content: center;
	display: grid;
}

.contact-kicker {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.contact-title {
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin-top: 10px;
	max-width: 500px;
}

.contact-card {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	display: flex;
	gap: 18px;
	padding: 22px;
	transition: 0.2s ease;
}

.contact-card:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-4px);
}

.contact-icon {
	align-items: center;
	background: linear-gradient(135deg, var(--blue), var(--purple));
	border-radius: 18px;
	display: flex;
	flex: 0 0 54px;
	font-size: 20px;
	height: 54px;
	justify-content: center;
	width: 54px;
}

.contact-label {
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.contact-value {
	font-size: 16px;
	font-weight: 800;
}

.footer {
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
	margin-top: 28px;
	text-align: center;
}

.no-wrap {
    white-space: nowrap;
}

@keyframes logoFloat {
	0%, 100% {
		border-radius: 38% 62% 56% 44%;
		transform: translate3d(0, 0, 0) rotate(-4deg) scale(1);
	}

	50% {
		border-radius: 58% 42% 38% 62%;
		transform: translate3d(-18px, 16px, 0) rotate(5deg) scale(1.04);
	}
}

@keyframes logoPulse {
	0%, 100% {
		transform: scale(1) rotate(0deg);
	}

	50% {
		transform: scale(1.08) rotate(-6deg);
	}
}

@keyframes spinRing {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes floatCard {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes floatGlow {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	100% {
		transform: translate3d(-80px, 60px, 0) scale(1.12);
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

@media (max-width: 1200px) {
	.hero {
		gap: 48px;
		grid-template-columns: minmax(0, 1fr) minmax(430px, 0.85fr);
	}

	h1 {
		font-size: clamp(48px, 7vw, 76px);
	}

	.visual {
		min-height: 700px;
	}
}

@media (max-width: 1100px) {
	.contact-band {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px) {
	.page {
		padding: 28px 22px;
	}

	.header {
		display: grid;
		gap: 18px;
		grid-template-columns: auto 1fr;
		margin-bottom: 46px;
	}

	.logo img {
		height: 88px;
	}

	.header {
		align-items: center;
		display: flex;
		justify-content: space-between;
	}

	.header-badge {
		margin-left: auto;
		font-size: 11px;
		line-height: 1.35;
		max-width: 400px;
	}

	.hero {
		gap: 40px;
		grid-template-columns: 1fr;
		margin-top: 0;
	}

	.content {
		padding-top: 0;
	}

	h1 {
		font-size: clamp(58px, 10vw, 82px);
		max-width: 760px;
	}

	.visual {
		min-height: 680px;
	}

	.orb {
		height: 320px;
		right: 10px;
		top: 100px;
		width: 320px;
	}

	.orb img {
		width: 150px;
	}

	.service-stack {
		top: 0;
		width: 430px;
	}

	.contact-band {
		margin-top: 0;
	}
}

@media (max-width: 620px) {
	.page {
		padding: 24px 18px;
	}

	.header {
		align-items: center;
		display: flex;
		flex-direction: column;
		gap: 18px;
		margin-bottom: 44px;
		text-align: center;
	}

	.header-badge {
		margin: 0 auto;
	}

	.logo {
		justify-content: center;
		width: 100%;
	}

	.logo img {
		height: 96px;
		margin: 0 auto;
	}

	.header-badge {
		border-radius: 22px;
		font-size: 10px;
		letter-spacing: 0.06em;
		line-height: 1.45;
		max-width: 100%;
		padding: 12px 14px;
	}

	.content {
		text-align: center;
	}

	.intro-line {
		gap: 2.25rem;
		justify-content: center;
	}

	.intro-photo img {
		height: 88px;
		width: 88px;
	}

	.name-line {
		font-size: 20px;
		margin-bottom: 4px;
		text-align: right;
	}

	.kicker {
		font-size: 11px;
		letter-spacing: 0.16em;
		line-height: 1.5;
		text-align: right;
	}

	.intro-socials {
		justify-content: right;
	}

	h1 {
		font-size: clamp(40px, 12.5vw, 56px);
		letter-spacing: -0.055em;
		line-height: 1;
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
		word-break: keep-all;
	}

	.lead {
		font-size: 18px;
		line-height: 1.6;
		margin: 0 auto;
	}

	.visual {
		height: auto;
		margin-top: 36px;
		min-height: 0;
	}

	.orb {
		display: none;
	}

	.service-stack {
		position: relative;
		top: auto;
		width: 100%;
	}

	.service,
	.service:nth-child(2),
	.service:nth-child(3),
	.service:nth-child(4) {
		margin-left: 0;
	}

	.service {
		text-align: left;
	}

	.contact-band {
		border-radius: 28px;
		margin-top: 42px;
		padding: 26px 18px;
		text-align: center;
	}

	.contact-title {
		font-size: 24px;
		line-height: 1.15;
		margin: 0 auto;
	}

	.contact-card {
		justify-content: flex-start;
		text-align: left;
	}

	.contact-value {
		font-size: 15px;
		word-break: break-word;
	}
}
