@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
	--bg: #050d14;
	--accent: #00e0c6;
	--accent-soft: #0ea5e9;
	--text-primary: #e6f1ff;
	--text-secondary: #7f9bb3;
	--glass: rgba(255, 255, 255, 0.04);
	--border: rgba(255, 255, 255, 0.08);

	--radius-lg: 22px;
	--radius-md: 16px;

	--section-spacing: 180px;
	--container-width: 1300px;
}

@media (max-width: 900px) {
:root {	
	--section-spacing: 80px;
	}
}

html {
	scroll-behavior: smooth;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

header,
.navbar,
.container {
	max-width: 100%;
}

.main-header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	backdrop-filter: blur(12px);
	background: rgba(10, 15, 25, 0.6);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
}

.logo {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 2px;
	color: var(--accent);
	margin-right:2%;
}

.logo-mobile {
	display:none;
	color: var(--accent);
	letter-spacing: 0.05rem;
}

.nav-links {
	display: flex;
	gap: 40px;
}

@media (max-width: 900px) {
	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 75%;
		height: 100vh;

		display: flex;
		flex-direction: column;
		gap: 24px;

		background: #0b1220;
		padding: 100px 30px;

		transition: right 0.4s ease;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-container {
		justify-content: space-between;
	}
	
	.logo-mobile {
		display:block;
	}
	
	.logo {
		display:none;
	}
}

.nav-links a {
	text-decoration: none;
	color: #9db3c6;
	font-size: 14px;
	transition: 0.3s ease;
}

.nav-links a:hover {
	color: white;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
}

.hamburger span {
	width: 24px;
	height: 2px;
	background: white;
	transition: 0.3s ease;
}

@media (max-width: 900px) {

	.nav-links {
		position: fixed;
		top: 80px;
		right: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(10, 15, 25, 0.95);
		backdrop-filter: blur(20px);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 40px;
		transition: right 0.4s ease;
	}

	.nav-links.active {
		right: 0;
	}

	.hamburger {
		display: flex;
	}
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

body {
	background: var(--bg);
	color: var(--text-primary);
	font-family: 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.section {
	padding: var(--section-spacing) 0;
	position: relative;
	z-index: 1;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 28px;
}

.section-title {
	text-align: center;
	margin-bottom: 70px;
}

.section-title+.grid {
	margin-top: 60px;
}

.center {
	text-align: center;
}

h1 {
	font-size: 80px;
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -1.5px;
}

@media (max-width: 900px) {
	h1 {
		font-size: 50px;
	}

}

h2 {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: -0.5px;
}

h3 {
	font-size: 20px;
	font-weight: 600;
}

p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-secondary);
}

.small-label {
	font-size: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--accent);
	line-height: 2rem;
}


/* ======= NAV ======= */
.nav {
	position: fixed;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 20px 8%;
	backdrop-filter: blur(16px);
	background: rgba(6, 18, 26, 0.6);
	border-bottom: 1px solid var(--border);
	z-index: 100;
}

.nav a {
	color: var(--text-secondary);
	margin-left: 25px;
	text-decoration: none;
	font-weight: 500;
}

/* ======= HERO ======= */
.hero {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0 8%;
	position: relative;
}

.hero h1 {
	font-size: 72px;
	font-weight: 800;
	line-height: 1.1;
}

.hero h1 span {
	background: linear-gradient(90deg, #00f5d4, #00b4ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.subtitle {
	margin-top: 20px;
	font-size: 20px;
	color: var(--text-secondary);
}

.buttons {
	margin-top: 40px;
}

.btn-primary {
	background: linear-gradient(90deg, #00f5d4, #00b4ff);
	border: none;
	padding: 14px 28px;
	border-radius: 40px;
	font-weight: 600;
	cursor: pointer;
	color: #001b25;
	margin-right: 15px;
	transition: 0.3s;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 245, 212, 0.4);
}

.btn-outline {
	border: 1px solid var(--accent);
	padding: 14px 28px;
	border-radius: 40px;
	color: var(--accent);
	background: transparent;
	cursor: pointer;
	transition: 0.3s;
}

.btn-outline:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 245, 212, 0.4);
}

/* ======= GLASS CARDS ======= */
.glass {
	background: linear-gradient(145deg,
			rgba(255, 255, 255, 0.06),
			rgba(255, 255, 255, 0.02));
	backdrop-filter: blur(30px);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 40px;
	position: relative;
	transition: 0.4s ease;
}

.glass::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(circle at top left,
			rgba(255, 255, 255, 0.15),
			transparent 60%);
	opacity: 0.4;
	pointer-events: none;
}

.glass:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 224, 198, 0.4);
}


/* ======= METRICS ======= */
.metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-top: 80px;
}

@media (max-width: 1000px) {
	.metrics {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.metrics {
		grid-template-columns: 1fr;
	}
}


.metric {
	padding: 48px 32px;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.metric h2 {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.metric-title {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-primary);
}

.metric-sub {
	font-size: 13px;
	color: #6c8ba3;
	letter-spacing: 0.3px;
}


/* ======= BLOG GRID ======= */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	padding: 100px 8%;
}

/* ======= ORB GLOWS ======= */
.orb {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	filter: blur(160px);
	opacity: 0.25;
}

.orb-left {
	left: -150px;
	top: 200px;
	background: #00f5d4;
}

.orb-right {
	right: -150px;
	top: 300px;
	background: #0066ff;
}

/* Scroll animation */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* .background-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}*/

.background-glow {
	position: fixed;
	inset: 0;

	width: 100%;
	height: 100%;

	overflow: hidden;
	pointer-events: none;
}


.glow-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(160px);
	opacity: 0.25;
}

.glow-1 {
	width: 600px;
	height: 600px;
	background: #00e0c6;
	top: 10%;
	left: -200px;
	animation: float1 12s ease-in-out infinite alternate;
}

.glow-2 {
	width: 500px;
	height: 500px;
	background: #0ea5e9;
	bottom: 10%;
	right: -150px;
	animation: float2 14s ease-in-out infinite alternate;
}

@keyframes float1 {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(60px);
	}
}

@keyframes float2 {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-60px);
	}
}


.pill {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 30px;
	border: 1px solid var(--border);
	margin: 6px;
	font-size: 13px;
	color: var(--text-secondary);
	background: rgba(255, 255, 255, 0.03);
	transition: 0.4s ease-in-out;

}

.pill:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 224, 198, 0.4);
	will-change: transform;
}

#mesh-bg {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	pointer-events: none;
}

body {
	background: #050d14;
}

.framework-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 80px;
}

@media (max-width: 900px) {
	.framework-grid {
		grid-template-columns: 1fr;
	}
}

.framework-card {
	padding: 48px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.framework-header {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.framework-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
	font-size: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.framework-small {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #6c8ba3;
	margin-bottom: 6px;
}

.framework-title {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.3px;
}

.framework-card p {
	font-size: 15px;
	line-height: 1.7;
}

.framework-card ul {
	padding-left: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.framework-card li {
	font-size: 14px;
	color: #8aa4b8;
}

.enterprise-grid {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 80px;
}

.enterprise-card {
	padding: 48px;
}

.enterprise-header {
	display: flex;
	align-items: flex-start;
	gap: 26px;
}

.enterprise-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.enterprise-title-wrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.enterprise-title-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.enterprise-title-row h3 {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.3px;
}

.enterprise-tag {
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #7f9bb3;
}

.enterprise-description {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-secondary);
}

.enterprise-list {
	display: flex;
	gap: 24px;
	list-style: disc;
	padding-left: 18px;
	font-size: 14px;
	color: #8aa4b8;
}

@media (max-width: 768px) {
	.enterprise-header {
		flex-direction: column;
	}

	.enterprise-title-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.enterprise-list {
		flex-direction: column;
		gap: 8px;
	}
}

.capabilities-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 80px;
}

@media (max-width: 1000px) {
	.capabilities-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.capabilities-grid {
		grid-template-columns: 1fr;
	}
}

.capability-card {
	padding: 48px 36px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.capability-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 8px auto;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.capability-card h3 {
	font-size: 18px;
	font-weight: 600;
}

.capability-desc {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-secondary);
}

.capability-tags {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.capability-tags span {
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #7f9bb3;
}

.carousel-wrapper {
	position: relative;
	padding-top: 20px;
	margin-top: -20px;
	overflow-x: hidden;
	overflow-y: visible;
}

.carousel-track {
	display: flex;
	gap: 40px;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.thought-card {
	flex: 0 0 calc((100% - 80px) / 3);
	padding: 48px;
	border-radius: 20px;

	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);

	border: 1px solid rgba(255, 255, 255, 0.08);

	/*box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);*/
	display: flex;
	flex-direction: column;
	gap: 20px;

	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

position: relative;
z-index: 1;
}

.thought-card * {
	transition: color 0.4s ease;
}

.thought-card:hover h3 {
	color: #ffffff;
}

.thought-card:hover {
	transform: translateY(-12px);

	background: rgba(255, 255, 255, 0.06);

	border: 1px solid rgba(78, 163, 255, 0.35);

	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.45),
		0 0 40px rgba(78, 163, 255, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);

	z-index: 10;
}

.thought-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	background: radial-gradient(circle at top left,
			rgba(78, 163, 255, 0.15),
			transparent 60%);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.thought-card:hover::before {
	opacity: 1;
}

.insights-section {
	position: relative;
	z-index: 2;
	overflow: visible;
}


@media (max-width: 900px) {

	.carousel-track {
		gap: 20px;
	}

	.thought-card {
		flex: 0 0 100%;
	}

}


.thought-card:hover {
	transform: translateY(-8px);
	z-index: 10;
}

.thought-tag {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #6c8ba3;
}

.thought-card h3 {
	font-size: 18px;
	font-weight: 600;

}

.thought-card p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-secondary);

}

.tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.4px;
	border-radius: 999px;
	width: fit-content;
	max-width: max-content;

	background: rgba(78, 163, 255, 0.12);
	border: 1px solid var(--accent);
	color: var(--accent);

	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	transition: all 0.35s ease;
}

.tag:hover {
	background: rgba(78, 163, 255, 0.2);
	border-color: rgba(78, 163, 255, 0.6);
	box-shadow: 0 0 20px rgba(78, 163, 255, 0.25);
}

.card-tag {
	margin-bottom: 10px;
}


.thought-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin-top: 10px;
}

.thought-meta {
	font-size: 12px;
	color: #6c8ba3;
}

.carousel-container {
	position: relative;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 20px;
	cursor: pointer;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* canvas {
  position: fixed;
  z-index: -1;
  width: 100%;
  max-width: 100%;
  display: block;
  pointer-events: none;
} */

canvas {
	position: fixed;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	display: block;
	pointer-events: none;
}

.carousel-btn:hover {
	background: rgba(78, 163, 255, 0.15);
	border-color:#00e0c6;
	/*border-color: rgba(78, 163, 255, 0.5);*/
	box-shadow: 0 0 20px rgba(78, 163, 255, 0.3);
	transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
	left: -80px;
	/* pushes outside container */
}

.carousel-btn.next {
	right: -80px;
	/* pushes outside container */
}

@media (max-width: 900px) {
	.carousel-btn.prev {
		left: 10px;
	}

	.carousel-btn.next {
		right: 10px;
	}
}


#thought-leadership {
	padding-bottom: 220px;
}

.contact-container {
	text-align: center;
	padding: 120px 0;
}

.contact-title {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 16px;
}

.contact-subtitle {
	font-size: 20px;
	font-weight: 500;
	color: #7f9bb3;
	margin-bottom: 30px;
}

.contact-description {
	max-width: 720px;
	margin: 0 auto 60px auto;
	font-size: 17px;
	line-height: 1.9;
	color: var(--text-secondary);
}

.contact-links {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: white;
	text-decoration: none;
	transition: 0.3s ease;
}

.contact-link:hover {
	transform: translateY(-3px);
}

.contact-icon {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gradient-title {
	font-size: 80px;
	font-weight: 700;
	letter-spacing: -1.5px;
	line-height: 1.1;

	background: linear-gradient(90deg, #00e0c6, #0ea5e9);

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;

	margin-bottom: 20px;
}

@media (max-width: 900px) {
	.gradient-title {
		font-size: 50px;
	}

	.contact-description {
		font-size: 15px;
	}

}

#contact {
	position: relative;
}

#contact::before {
	content: "";
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 400px;
	background: radial-gradient(circle,
			rgba(78, 163, 255, 0.15) 0%,
			transparent 70%);
	filter: blur(120px);
	z-index: -1;
}

.manifesto-container {
	padding: 0 0;
}

.manifesto-rows {
	display:flex;
}

@media (max-width: 900px) {
	.manifesto-rows {
	flex-direction:column;
		}
}

.manifesto-content {
	margin-top: 100px;
	position: relative;
	max-width: 1100px;
	/* wider than normal text sections */
}

.manifesto-content::before {
	content: "";
	position: absolute;
	left: 29px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom,
			transparent,
			rgba(78, 163, 255, 0.6),
			transparent);
}

.manifesto-marker {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 6px;
	/* aligns dot with title baseline */
}

.manifesto-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #4ea3ff;
	box-shadow:
		0 0 15px rgba(78, 163, 255, 0.8),
		0 0 30px rgba(78, 163, 255, 0.4);
}

.manifesto-text h3 {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: -0.6px;
	margin-bottom: 22px;
}

.manifesto-text p {
	font-size: 18px;
	line-height: 1.9;
	color: var(--text-secondary);
	max-width: 800px;
}

.manifesto-text h3 {
	background: linear-gradient(90deg,
			#ffffff,
			#8bd3ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.manifesto-timeline {
	position: relative;
	width: 40px;
	flex-shrink: 0;
}

.timeline-line {
	position: absolute;
	left: 19px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom,
			transparent,
			rgba(78, 163, 255, 0.6),
			transparent);
}

.timeline-dot {
	position: relative;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #4ea3ff;
	margin: 90px 0;
	box-shadow:
		0 0 12px rgba(78, 163, 255, 0.8),
		0 0 24px rgba(78, 163, 255, 0.4);
}

.manifesto-item {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 40px;
	margin-bottom: 120px;
	position: relative;
}

.manifesto-item-last {
	margin-bottom: 10px;
}


.manifesto-items {
	display: flex;
	flex-direction: column;
	gap: 120px;
}

.manifesto-item h3 {
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -0.5px;
	margin-bottom: 20px;
}

.manifesto-item p {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text-secondary);
	max-width: 720px;
}

.manifesto-section {
	position: relative;
}

@media (max-width: 900px) {
	section#manifesto {
    padding: 0 28px;
		}
	.small-label {
    text-align: center;
}
	.manifesto-content {
    margin-top: 0px;
	}
}

.manifesto-section::before {
	content: "";
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 500px;
	background: radial-gradient(circle,
			rgba(78, 163, 255, 0.12) 0%,
			transparent 70%);
	filter: blur(140px);
	z-index: -1;
}

.timeline-dot {
	animation: pulseDot 3s infinite ease-in-out;
}

@keyframes pulseDot {

	0%,
	100% {
		box-shadow:
			0 0 10px rgba(78, 163, 255, 0.6),
			0 0 20px rgba(78, 163, 255, 0.3);
	}

	50% {
		box-shadow:
			0 0 20px rgba(78, 163, 255, 0.9),
			0 0 40px rgba(78, 163, 255, 0.6);
	}
}

@media (max-width: 900px) {
	.manifesto-content {
		flex-direction: column;
		gap: 40px;
	}

	.manifesto-timeline {
		display: none;
	}

	.manifesto-items {
		gap: 60px;
	}
}

.manifesto-section .section-title {
	text-align: left;
}

@media (max-width: 900px) {
.manifesto-section .section-title {
	text-align:center;
	}
}

.main-footer {
	margin-top: 180px;
	padding: 50px 0;
	background: linear-gradient(180deg,
			#0b1220 0%,
			#080d18 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
	.main-footer {
		margin-top: 0px;
	}

	#contact {
		padding-bottom: 50px;
	}
}

.footer-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-left .logo {
	margin-right:0px;
}

.footer-logo {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.5px;
	background: linear-gradient(90deg,
			#ffffff,
			#4ea3ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-name {
	font-size: 14px;
	color: #7f9bb3;
}

.footer-center {
	font-size: 13px;
	color: #6c8ba3;
	text-align: center;
}

.footer-btn {
	padding: 10px 22px;
	font-size: 13px;
	border-radius: 20px;
	text-decoration: none;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	transition: 0.3s ease;
}

.footer-btn:hover {
	background: rgba(78, 163, 255, 0.15);
	border-color: rgba(78, 163, 255, 0.4);
	transform: translateY(-2px);
}

@media (max-width: 900px) {
	.footer-container {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}

	.footer-left {
		justify-content: center;
	}
}

.section-header {
	text-align: center;
}