:root {
	--ink-900: #020722;
	--ink-800: #06124f;
	--brand-700: #0a2cb8;
	--brand-500: #1a52ff;
	--accent-cyan: #18e5ff;
	--light-100: #eef1f6;
	--light-200: #dfe4ed;
	--text-strong: #f4f7ff;
	--text-dark: #14224a;
	--card-dark: rgba(5, 18, 74, 0.58);
	--card-light: #ffffff;
	--border-glow: rgba(24, 229, 255, 0.35);
	--shadow: 0 20px 60px rgba(4, 16, 66, 0.3);
}

* {
	box-sizing: border-box;
}

html,
body {
    
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: var(--text-strong);
	background:
		radial-gradient(circle at 12% 18%, rgba(30, 88, 255, 0.45), transparent 34%),
		radial-gradient(circle at 82% 76%, rgba(23, 201, 255, 0.2), transparent 35%),
		linear-gradient(128deg, #020617 15%, #04196e 50%, #0f38c2 100%);
	line-height: 1.6;
	overflow-x: hidden;
}

.bi {
	line-height: 1;
}

.hero-container{
    display: flex;
    flex-direction: row;
    width: 100%;
	margin-top:1.5rem;
}
.hero-data{
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(circle at 18% 22%, rgba(0,114,213,1.2), transparent 38%),
		linear-gradient(145deg, #020a33 0%, #00012a 52%, #0a2cb8 100%);
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
	border-right: 1px solid rgba(18, 10, 209, 0.8);
	box-shadow: inset -32px 0 56px rgba(0, 0, 0, 0.28);
}

.hero-data::before,
.hero-data::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.hero-data::before {
	width: 280px;
	height: 280px;
	top: -110px;
	right: -80px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(24, 229, 255, 0.45), rgba(24, 229, 255, 0) 70%);
	filter: blur(8px);
}

.hero-data::after {
	inset: 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
}

.hero-data p{
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.4rem);
    font-family: "Sora", "Segoe UI", sans-serif;
	font-weight: 800;
	letter-spacing: 0.01em;
    line-height: 1.3;
	max-width: 16ch;
    text-align: center;
	text-wrap: balance;
	color: transparent;
	background: linear-gradient(120deg, #ffffff 15%, #d4eeff 48%, #18e5ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	text-shadow:
		0 0 28px rgba(24, 229, 255, 0.22),
		0 12px 35px rgba(2, 10, 51, 0.4);
	animation: heroPulse 4.6s ease-in-out infinite;
}

.hero-data p .bi {
	font-size: 1.8rem;
	color: #9befff;
	-webkit-text-fill-color: #9befff;
	text-shadow: 0 0 20px rgba(24, 229, 255, 0.75);
}

.hero-data p::after {
	content: "";
	display: block;
	width: min(240px, 58%);
	height: 4px;
	margin: 1rem auto 0;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(24, 229, 255, 0), rgba(24, 229, 255, 0.95), rgba(24, 229, 255, 0));
}

@keyframes heroPulse {
	0%,
	100% {
		transform: translateY(0);
		filter: brightness(1);
	}
	50% {
		transform: translateY(-3px);
		filter: brightness(1.08);
	}
}
.hero-image {
    width: 50%;
	height: clamp(480px, 40vw, 860px);
	overflow: hidden;
}

.hero-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit:fill;
	object-position: center;
}

.bg-grid {
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(circle at 50% 40%, black 42%, transparent 95%);
	opacity: 0.25;
	z-index: 0;
}

.topbar,
main,
.footer {
	position: relative;
	z-index: 1;
}

.topbar {
	width: min(1200px, calc(100% - 2rem));
	margin: 1rem auto 0;
	padding: 0.75rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(2, 8, 34, 0.52);
	backdrop-filter: blur(10px);
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	text-decoration: none;
	color: var(--text-strong);
	font-family: "Sora", "Segoe UI", sans-serif;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.brand img {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	object-fit: cover;
}

.menu {
	display: flex;
	align-items: center;
	gap: 1.1rem;
}

.menu a {
	display: inline-flex;
	align-items: center;
	gap: 0.42rem;
	color: var(--text-strong);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 200ms ease;
}

.menu a:hover {
	color: var(--accent-cyan);
}

.section {
	width: min(1200px, calc(100% - 2rem));
	margin: 3.5rem auto;
}

.hero {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1.4rem;
	padding: clamp(1.6rem, 3vw, 2.4rem);
	border: 1px solid rgba(24, 229, 255, 0.3);
	border-radius: 1.7rem;

	box-shadow: var(--shadow);
	overflow: hidden;
	isolation: isolate;
}

.orb {
	position: absolute;
	border-radius: 999px;
	filter: blur(6px);
	opacity: 0.68;
	z-index: -1;
}

.orb-a {
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(26, 82, 255, 0.9) 0%, rgba(26, 82, 255, 0) 70%);
	top: -80px;
	right: 20%;
}

.orb-b {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(24, 229, 255, 0.78) 0%, rgba(24, 229, 255, 0) 70%);
	bottom: -60px;
	left: 10%;
}

.hero-copy h1 {
	margin: 0.4rem 0 1rem;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: clamp(2.1rem, 4.3vw, 4.1rem);
	line-height: 1.05;
}

.hero-copy h1 span {
	display: block;
	color: var(--accent-cyan);
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.75rem;
	margin: 0;
	color: var(--accent-cyan);
	font-weight: 700;
}

.kicker.dark {
	color: var(--brand-700);
}

.lead {
	margin: 0;
	max-width: 63ch;
	color: rgba(245, 249, 255, 0.9);
}

.actions {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	text-decoration: none;
	border-radius: 999px;
	padding: 0.75rem 1.15rem;
	font-weight: 700;
	border: 1px solid transparent;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: linear-gradient(90deg, var(--brand-500), #0079ff);
	color: #fff;
	box-shadow: 0 10px 24px rgba(9, 57, 199, 0.4);
}

.btn-light {
	background: rgba(255, 255, 255, 0.9);
	color: #0c1c52;
}

.btn-ghost {
	border-color: rgba(255, 255, 255, 0.3);
	background: transparent;
}

.hero-panel {
	display: grid;
	gap: 0.8rem;
}

.metric {
	background: var(--card-dark);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 1rem;
	padding: 1rem;
}

.metric strong {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 1.5rem;
	margin-bottom: 0.2rem;
}

.metric strong .bi {
	font-size: 1.05rem;
	color: var(--accent-cyan);
}

.metric span {
	color: rgba(250, 252, 255, 0.85);
	font-size: 0.92rem;
}

.strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.strip article {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(8, 24, 95, 0.62);
	padding: 1.1rem;
}

.strip article .bi {
	font-size: 1.35rem;
	color: #98ebff;
}

.strip h2 {
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 1.6rem;
	margin: 0;
	color: var(--accent-cyan);
}

.strip p {
	margin: 0.4rem 0 0;
}

.services,
.method {
	background: linear-gradient(180deg, var(--light-100), #f8faff);
	border-radius: 1.5rem;
	color: var(--text-dark);
	padding: clamp(1.2rem, 3vw, 2.1rem);
	border: 1px solid rgba(20, 34, 74, 0.1);
}

.section-head h2 {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0.35rem 0 0;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: clamp(1.55rem, 2.8vw, 2.4rem);
	line-height: 1.15;
}

.section-head h2 .bi {
	color: var(--brand-500);
	font-size: 0.95em;
}

.card-grid {
	margin-top: 1.3rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.card {
	position: relative;
	overflow: hidden;
	padding: 1.15rem;
	border-radius: 1rem;
	background: var(--card-light);
	border: 1px solid rgba(10, 44, 184, 0.13);
	box-shadow: 0 10px 28px rgba(9, 29, 94, 0.12);
}

.card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(130deg, #0a2cb8, #3f75ff);
	color: #fff;
	box-shadow: 0 8px 18px rgba(10, 44, 184, 0.3);
}

.card::after {
	content: "";
	position: absolute;
	inset: auto -35% -42% auto;
	width: 170px;
	height: 170px;
	background: radial-gradient(circle, rgba(26, 82, 255, 0.23), transparent 66%);
}

.card h3 {
	margin: 0;
	font-family: "Sora", "Segoe UI", sans-serif;
}

.card p {
	margin: 0.55rem 0 0;
	color: #263660;
}

.timeline {
	margin-top: 1.5rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.9rem;
}

.step {
	background: #fff;
	border-radius: 1rem;
	border: 1px solid rgba(20, 34, 74, 0.15);
	padding: 1rem;
	position: relative;
}

.step .bi {
	font-size: 1.15rem;
	color: var(--brand-500);
}

.step span {
	font-family: "Sora", "Segoe UI", sans-serif;
	color: var(--brand-500);
	font-weight: 800;
}

.step h3 {
	margin: 0.35rem 0 0.4rem;
	font-size: 1rem;
}

.step p {
	margin: 0;
	color: #32456e;
	font-size: 0.95rem;
}

.cta {
	border-radius: 1.5rem;
	padding: clamp(1.2rem, 3vw, 2rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border: 1px solid var(--border-glow);
	background:
		linear-gradient(120deg, rgba(4, 19, 79, 0.95), rgba(5, 38, 145, 0.82));
}

.cta h2 {
	margin: 0.35rem 0;
	font-family: "Sora", "Segoe UI", sans-serif;
}

.cta p {
	margin: 0;
	max-width: 65ch;
}

.footer {
	width: min(1200px, calc(100% - 2rem));
	margin: 0 auto 1.5rem;
	border-radius: 1rem;
	background: rgba(2, 8, 34, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.16);
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.9rem;
}

.footer img {
	width: 64px;
	height: 64px;
	border-radius: 0.8rem;
	object-fit: cover;
}

.footer p {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	color: rgba(246, 249, 255, 0.9);
}

.footer p .bi {
	color: var(--accent-cyan);
}

.reveal,
.reveal-stagger,
.reveal-delay {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-delay {
	transition-delay: 160ms;
}

.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1024px) {
	.hero {
		grid-template-columns: 1fr;
	}

	.timeline {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
    .hero-container{
        flex-direction: column;
    }
    .hero-data, .hero-image{
        width: 100%;
    }
	.hero-data {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
		padding: 1.6rem;
	}
	.hero-data p {
		font-size: clamp(1.6rem, 8vw, 2.3rem);
		max-width: 20ch;
	}
	.topbar {
		border-radius: 1.2rem;
		flex-direction: column;
		align-items: stretch;
	}

	.brand {
		justify-content: center;
	}

	.menu {
		justify-content: center;
		flex-wrap: wrap;
	}

	.menu a {
		font-size: 0.9rem;
	}

	.strip,
	.card-grid,
	.timeline {
		grid-template-columns: 1fr;
	}

	.cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer {
		flex-direction: column;
		text-align: center;
	}
}
