@font-face {
	font-family: 'Space Grotesk';
	src: url('../fonts/SpaceGrotesk-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Space Grotesk';
	src: url('../fonts/SpaceGrotesk-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Space Grotesk';
	src: url('../fonts/SpaceGrotesk-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Space Grotesk';
	src: url('../fonts/SpaceGrotesk-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--ts-accent: #4F46E5;
	--ts-accent-hover: #3730A3;
	--ts-accent-subtle: rgba(79,70,229,0.12);
	--ts-secondary: #06B6D4;
	--ts-bg-base: #F8FAFC;
	--ts-bg-alt: #EEF2FF;
	--ts-bg-dark: #0C0F1E;
	--ts-bg-dark-card: #161B35;
	--ts-bg-dark-border: #252D50;
	--ts-bg-card: #FFFFFF;
	--ts-bg-input: #1C2240;
	--ts-text-heading: #0F172A;
	--ts-text-body: #374151;
	--ts-text-muted: #6B7280;
	--ts-text-heading-dark: #F1F5F9;
	--ts-text-body-dark: #CBD5E1;
	--ts-text-muted-dark: #8B9CC5;
	--ts-text-placeholder: #6B7280;
	--ts-text-placeholder-dark: #4B5A84;
	--ts-border-light: #E2E8F0;
	--ts-border-dark: #252D50;
	--ts-shadow-sm: 0 2px 12px rgba(15,23,42,0.08);
	--ts-shadow-md: 0 8px 32px rgba(15,23,42,0.16);
	--ts-radius-sm: 6px;
	--ts-radius-md: 12px;
	--ts-radius-lg: 20px;
	--ts-success: #10B981;
	--ts-warning: #F59E0B;
	--ts-error: #EF4444;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Space Grotesk', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: #374151;
	background-color: #F8FAFC;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Space Grotesk', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #0F172A;
	margin-top: 0;
}

h1 {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.5px;
}

h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.3px;
}

h3 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
}

h4 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #4F46E5;
	text-decoration: none;
}

a:hover {
	color: #3730A3;
}

img {
	max-width: 100%;
	height: auto;
}

.ts-section {
	padding: 80px 0;
}

.ts-section--compact {
	padding: 56px 0;
}

.ts-section--dark {
	background-color: #0C0F1E;
}

.ts-section--dark-card {
	background-color: #161B35;
}

.ts-section--alt {
	background-color: #EEF2FF;
}

.ts-section--light {
	background-color: #F8FAFC;
}

.ts-section--accent {
	background-color: #4F46E5;
}

.ts-section--footer {
	background-color: #07091A;
}

.ts-section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #4F46E5;
	margin-bottom: 12px;
}

.ts-section-label--dark {
	color: #06B6D4;
}

.ts-section-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.3px;
	color: #0F172A;
	margin-bottom: 16px;
}

.ts-section-title--dark {
	color: #F1F5F9;
}

.ts-section-subtitle {
	font-size: 16px;
	color: #374151;
	max-width: 560px;
}

.ts-section-subtitle--dark {
	color: #CBD5E1;
}

.ts-section-header {
	margin-bottom: 48px;
}

.ts-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Space Grotesk', 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.2px;
	padding: 12px 28px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.ts-btn--primary {
	background-color: #4F46E5;
	color: #FFFFFF;
}

.ts-btn--primary:hover {
	background-color: #3730A3;
	color: #FFFFFF;
}

.ts-btn--primary-lg {
	background-color: #4F46E5;
	color: #FFFFFF;
	padding: 14px 40px;
	font-size: 15px;
}

.ts-btn--primary-lg:hover {
	background-color: #3730A3;
	color: #FFFFFF;
}

.ts-btn--outline {
	background-color: transparent;
	color: #4F46E5;
	border: 1.5px solid #4F46E5;
}

.ts-btn--outline:hover {
	background-color: #4F46E5;
	color: #FFFFFF;
}

.ts-btn--outline-dark {
	background-color: transparent;
	color: #F1F5F9;
	border: 1.5px solid #8B9CC5;
}

.ts-btn--outline-dark:hover {
	background-color: rgba(255,255,255,0.08);
	color: #FFFFFF;
}

.ts-btn--ghost {
	background-color: transparent;
	color: #4F46E5;
	padding: 12px 0;
}

.ts-btn--ghost:hover {
	color: #3730A3;
	text-decoration: underline;
}

.ts-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
	background-color: #0C0F1E;
	box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.ts-nav--transparent {
	background-color: #0C0F1E;
}

.ts-nav--solid {
	background-color: #0C0F1E;
	box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.ts-nav--scrolled {
	background-color: #0C0F1E;
	box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.ts-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

.ts-nav__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.ts-logo {
	height: 36px;
	width: auto;
}

.ts-nav__links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ts-nav__links a {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.1px;
	color: #CBD5E1;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ts-nav__links a:hover {
	color: #F1F5F9;
}

.ts-nav__links .ts-nav__cta {
	background-color: #4F46E5;
	color: #FFFFFF;
	padding: 10px 22px;
	border-radius: 6px;
	font-weight: 600;
}

.ts-nav__links .ts-nav__cta:hover {
	background-color: #3730A3;
	color: #FFFFFF;
}

.ts-nav__toggler {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.ts-nav__toggler span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #F1F5F9;
	border-radius: 2px;
	transition: all 0.3s ease;
}

@media (max-width: 991px) {
	.ts-nav__toggler {
		display: flex;
	}
	.ts-nav__links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: #0C0F1E;
		flex-direction: column;
		padding: 20px 24px;
		gap: 16px;
		border-top: 1px solid #252D50;
	}
	.ts-nav__links.ts-nav__links--open {
		display: flex;
	}
	.ts-nav__links .ts-nav__cta {
		align-self: flex-start;
	}
}

.ts-hero {
	position: relative;
	background-color: #0C0F1E;
	background-image:
		linear-gradient(110deg, rgba(12,15,30,0.92) 0%, rgba(12,15,30,0.72) 50%, rgba(12,15,30,0.55) 100%),
		url('../img/hero-bg.webp');
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	padding: 140px 0 110px;
	overflow: hidden;
}

.ts-hero::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 65%);
	transform: translateY(-50%);
	pointer-events: none;
}

.ts-hero__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #06B6D4;
	margin-bottom: 16px;
}

.ts-hero__title {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.5px;
	color: #F1F5F9;
	margin-bottom: 20px;
}

.ts-hero__subtitle {
	font-size: 18px;
	color: #CBD5E1;
	line-height: 1.65;
	margin-bottom: 36px;
	max-width: 560px;
}

.ts-hero__cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.ts-hero__visual {
	position: relative;
	z-index: 1;
}

.ts-hero__visual img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.ts-hero--compact {
	padding: 100px 0 72px;
	text-align: center;
}

.ts-hero--compact .ts-hero__title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.3px;
}

.ts-hero--compact .ts-hero__subtitle {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.ts-stats {
	background-color: #161B35;
	padding: 56px 0;
}

.ts-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ts-stats__item {
	text-align: center;
	padding: 24px;
	border-radius: 12px;
	border: 1px solid #252D50;
}

.ts-stats__number {
	font-size: 40px;
	font-weight: 700;
	color: #4F46E5;
	line-height: 1;
	margin-bottom: 8px;
}

.ts-stats__label {
	font-size: 14px;
	color: #8B9CC5;
	line-height: 1.4;
}

@media (max-width: 767px) {
	.ts-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.ts-features {
	background-color: #F8FAFC;
	padding: 80px 0;
}

.ts-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ts-feature-card {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ts-feature-card:hover {
	box-shadow: 0 8px 32px rgba(15,23,42,0.16);
	transform: translateY(-2px);
}

.ts-feature-card__icon {
	width: 48px;
	height: 48px;
	background-color: rgba(79,70,229,0.12);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.ts-feature-card__icon i {
	font-size: 20px;
	color: #4F46E5;
}

.ts-feature-card__title {
	font-size: 18px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 10px;
}

.ts-feature-card__body {
	font-size: 15px;
	color: #374151;
	line-height: 1.6;
}

@media (max-width: 991px) {
	.ts-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.ts-features__grid {
		grid-template-columns: 1fr;
	}
}

.ts-process {
	background-color: #EEF2FF;
	padding: 80px 0;
}

.ts-process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ts-process__step {
	text-align: center;
	padding: 28px 20px;
	background-color: #FFFFFF;
	border-radius: 12px;
	border: 1px solid #E2E8F0;
	position: relative;
}

.ts-process__icon { display: none; }

.ts-process__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background-color: #4F46E5;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	border-radius: 50%;
	margin: 0 auto 16px;
}

.ts-process__icon {
	font-size: 24px;
	color: #4F46E5;
	margin-bottom: 12px;
	display: block;
}

.ts-process__title {
	font-size: 18px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 10px;
}

.ts-process__body {
	font-size: 14px;
	color: #374151;
	line-height: 1.6;
}

@media (max-width: 991px) {
	.ts-process__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.ts-process__grid {
		grid-template-columns: 1fr;
	}
}

.ts-launches {
	background-color: #0C0F1E;
	padding: 80px 0;
}

.ts-launch-card {
	background-color: #161B35;
	border: 1px solid #252D50;
	border-radius: 12px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ts-launch-card__badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #10B981;
	background-color: rgba(16,185,129,0.12);
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.ts-launch-card__name {
	font-size: 22px;
	font-weight: 700;
	color: #F1F5F9;
	margin-bottom: 8px;
}

.ts-launch-card__desc {
	font-size: 14px;
	color: #8B9CC5;
	margin-bottom: 20px;
	flex: 1;
}

.ts-launch-card__stats {
	display: flex;
	gap: 24px;
	padding-top: 20px;
	border-top: 1px solid #252D50;
}

.ts-launch-card__stat-value {
	font-size: 20px;
	font-weight: 700;
	color: #4F46E5;
	display: block;
}

.ts-launch-card__stat-label {
	font-size: 12px;
	color: #8B9CC5;
}

.ts-cta-banner {
	background-color: #4F46E5;
	padding: 80px 0;
	text-align: center;
}

.ts-cta-banner h2 {
	color: #FFFFFF;
	margin-bottom: 12px;
}

.ts-cta-banner p {
	color: rgba(255,255,255,0.85);
	font-size: 18px;
	margin-bottom: 32px;
}

.ts-cta-banner .ts-btn--cta-white {
	background-color: #FFFFFF;
	color: #4F46E5;
	padding: 14px 40px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 6px;
}

.ts-cta-banner .ts-btn--cta-white:hover {
	background-color: #F1F5F9;
	color: #3730A3;
}

.ts-cta-card {
	background-color: #EEF2FF;
	padding: 80px 0;
}

.ts-cta-card__inner {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 20px;
	padding: 56px;
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
	box-shadow: 0 2px 12px rgba(15,23,42,0.08);
}

.ts-cta-card__inner h2 {
	color: #0F172A;
	margin-bottom: 12px;
}

.ts-cta-card__inner p {
	color: #374151;
	margin-bottom: 28px;
}

.ts-footer {
	background-color: #07091A;
	padding: 64px 0 0;
}

.ts-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 48px;
	margin-bottom: 48px;
}

.ts-footer__logo {
	height: 32px;
	width: auto;
	margin-bottom: 16px;
	display: block;
}

.ts-footer__tagline {
	font-size: 14px;
	color: #8B9CC5;
	line-height: 1.65;
	margin-bottom: 16px;
}

.ts-footer__disclaimer {
	font-size: 12px;
	color: #4B5A84;
	line-height: 1.6;
	border-top: 1px solid #1A1F38;
	padding-top: 16px;
	margin-top: 4px;
}

.ts-footer__heading {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #F1F5F9;
	margin-bottom: 16px;
}

.ts-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ts-footer__links li {
	margin-bottom: 10px;
}

.ts-footer__links a {
	font-size: 14px;
	color: #CBD5E1;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ts-footer__links a:hover {
	color: #4F46E5;
}

.ts-footer__contact-item {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
	align-items: flex-start;
}

.ts-footer__contact-item i {
	font-size: 14px;
	color: #4F46E5;
	margin-top: 2px;
	flex-shrink: 0;
}

.ts-footer__contact-item a,
.ts-footer__contact-item span {
	font-size: 14px;
	color: #CBD5E1;
	text-decoration: none;
	line-height: 1.5;
}

.ts-footer__contact-item a:hover {
	color: #4F46E5;
}

.ts-footer__bottom {
	border-top: 1px solid #1A1F38;
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.ts-footer__compliance {
	font-size: 12px;
	color: #4B5A84;
	line-height: 1.6;
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #1A1F38;
}

.ts-footer__copy {
	font-size: 13px;
	color: #8B9CC5;
}

.ts-footer__legal-links {
	display: flex;
	gap: 20px;
}

.ts-footer__legal-links a {
	font-size: 13px;
	color: #8B9CC5;
	text-decoration: none;
}

.ts-footer__legal-links a:hover {
	color: #4F46E5;
}

@media (max-width: 991px) {
	.ts-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
}

@media (max-width: 575px) {
	.ts-footer__grid {
		grid-template-columns: 1fr;
	}
	.ts-footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}

.ts-alternating {
	padding: 80px 0;
}

.ts-alternating__row {
	display: flex;
	align-items: center;
	gap: 64px;
	margin-bottom: 72px;
}

.ts-alternating__row:last-child {
	margin-bottom: 0;
}

.ts-alternating__row--reverse {
	flex-direction: row-reverse;
}

.ts-alternating__img {
	flex: 0 0 50%;
	max-width: 50%;
}

.ts-alternating__img img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(15,23,42,0.12);
}

.ts-alternating__content {
	flex: 1;
}

.ts-alternating__content h3 {
	font-size: 24px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 12px;
}

.ts-alternating__content p {
	font-size: 15px;
	color: #374151;
	line-height: 1.7;
}

@media (max-width: 767px) {
	.ts-alternating__row,
	.ts-alternating__row--reverse {
		flex-direction: column;
		gap: 28px;
	}
	.ts-alternating__img {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.ts-arch {
	background-color: #F8FAFC;
	padding: 80px 0;
}

.ts-arch__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ts-arch__card {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 28px;
	text-align: center;
}

.ts-arch__card i {
	font-size: 32px;
	color: #4F46E5;
	margin-bottom: 16px;
	display: block;
}

.ts-arch__card h4 {
	font-size: 18px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 10px;
}

.ts-arch__card p {
	font-size: 14px;
	color: #374151;
	line-height: 1.6;
}

@media (max-width: 767px) {
	.ts-arch__grid {
		grid-template-columns: 1fr;
	}
}

.ts-metrics {
	background-color: #0C0F1E;
	padding: 80px 0;
}

.ts-metrics__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.ts-metrics__item {
	text-align: center;
}

.ts-metrics__number {
	font-size: 48px;
	font-weight: 700;
	color: #4F46E5;
	line-height: 1;
	margin-bottom: 10px;
}

.ts-metrics__label {
	font-size: 15px;
	color: #CBD5E1;
}

@media (max-width: 767px) {
	.ts-metrics__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.ts-story {
	background-color: #F8FAFC;
	padding: 80px 0;
}

.ts-story__text h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 20px;
}

.ts-story__text p {
	font-size: 16px;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 20px;
}

.ts-story__photo {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(15,23,42,0.12);
}

.ts-story__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ts-milestones {
	background-color: #EEF2FF;
	padding: 80px 0;
}

.ts-milestone-card {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 28px;
	text-align: center;
}

.ts-milestone-card__value {
	font-size: 36px;
	font-weight: 700;
	color: #4F46E5;
	margin-bottom: 8px;
}

.ts-milestone-card__label {
	font-size: 14px;
	color: #374151;
}

.ts-values {
	background-color: #0C0F1E;
	padding: 80px 0;
}

.ts-value-card {
	background-color: #161B35;
	border: 1px solid #252D50;
	border-radius: 12px;
	padding: 28px;
}

.ts-value-card i {
	font-size: 28px;
	color: #4F46E5;
	margin-bottom: 16px;
	display: block;
}

.ts-value-card h4 {
	font-size: 18px;
	font-weight: 600;
	color: #F1F5F9;
	margin-bottom: 10px;
}

.ts-value-card p {
	font-size: 14px;
	color: #8B9CC5;
	line-height: 1.6;
}

.ts-team {
	background-color: #F8FAFC;
	padding: 80px 0;
}

.ts-team__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.ts-member-card {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 28px;
	text-align: center;
	transition: box-shadow 0.2s ease;
}

.ts-member-card:hover {
	box-shadow: 0 8px 32px rgba(15,23,42,0.12);
}

.ts-member-photo {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 16px;
	display: block;
	background-color: #EEF2FF;
}

.ts-member-card__name {
	font-size: 18px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 4px;
}

.ts-member-card__role {
	font-size: 14px;
	color: #6B7280;
}

@media (max-width: 991px) {
	.ts-team__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.ts-team__grid {
		grid-template-columns: 1fr;
	}
}

.ts-contact-section {
	background-color: #F8FAFC;
	padding: 80px 0;
}

.ts-contact__form label {
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	display: block;
	margin-bottom: 6px;
}

.ts-contact__form input,
.ts-contact__form select,
.ts-contact__form textarea {
	width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	font-family: 'Space Grotesk', 'DM Sans', sans-serif;
	background-color: #FFFFFF;
	color: #0F172A;
	border: 1px solid #E2E8F0;
	border-radius: 6px;
	margin-bottom: 20px;
	transition: border-color 0.2s ease;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.ts-contact__form input::placeholder,
.ts-contact__form textarea::placeholder {
	color: #9CA3AF;
}

.ts-contact__form input:focus,
.ts-contact__form select:focus,
.ts-contact__form textarea:focus {
	border-color: #4F46E5;
	border-width: 2px;
}

.ts-contact__form textarea {
	resize: vertical;
	min-height: 140px;
}

.ts-contact__info-block {
	padding: 32px;
	background-color: #EEF2FF;
	border-radius: 12px;
}

.ts-contact__info-block h3 {
	font-size: 22px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 24px;
}

.ts-contact__info-item {
	display: flex;
	gap: 14px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.ts-contact__info-item i {
	font-size: 16px;
	color: #4F46E5;
	margin-top: 2px;
	flex-shrink: 0;
}

.ts-contact__info-item a,
.ts-contact__info-item span {
	font-size: 15px;
	color: #374151;
	text-decoration: none;
	line-height: 1.5;
}

.ts-contact__info-item a:hover {
	color: #4F46E5;
}

.ts-blog-section {
	background-color: #F8FAFC;
	padding: 80px 0;
}

.ts-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ts-blog-card {
	background-color: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ts-blog-card:hover {
	box-shadow: 0 8px 32px rgba(15,23,42,0.12);
	transform: translateY(-2px);
}

.ts-blog-card__img-wrap {
	display: block;
	overflow: hidden;
}

.ts-blog-thumb {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.ts-blog-card:hover .ts-blog-thumb {
	transform: scale(1.03);
}

.ts-blog-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.ts-blog-card__date {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #6B7280;
	margin-bottom: 8px;
	display: block;
}

.ts-blog-card__title {
	font-size: 17px;
	font-weight: 600;
	color: #0F172A;
	line-height: 1.4;
	margin-bottom: 10px;
}

.ts-blog-card__title a {
	color: inherit;
	text-decoration: none;
}

.ts-blog-card__title a:hover {
	color: #4F46E5;
}

.ts-blog-card__excerpt {
	font-size: 14px;
	color: #374151;
	line-height: 1.6;
	margin-bottom: 0;
	flex: 1;
}

.ts-blog-card__read-more {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #4F46E5;
	text-decoration: none;
	margin-top: auto;
	padding-top: 16px;
}

.ts-blog-card__read-more:hover {
	color: #3730A3;
	text-decoration: underline;
}

@media (max-width: 991px) {
	.ts-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.ts-blog-grid {
		grid-template-columns: 1fr;
	}
}

.ts-legal {
	background-color: #F8FAFC;
	padding: 80px 0;
}

.ts-legal__container {
	max-width: 780px;
	margin: 0 auto;
}

.ts-legal h1 {
	font-size: 40px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 8px;
}

.ts-legal__date {
	font-size: 14px;
	color: #6B7280;
	margin-bottom: 40px;
	display: block;
}

.ts-legal h2 {
	font-size: 22px;
	font-weight: 600;
	color: #0F172A;
	margin-top: 40px;
	margin-bottom: 12px;
}

.ts-legal p {
	font-size: 15px;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 16px;
}

.ts-legal ul {
	padding-left: 24px;
	margin-bottom: 16px;
}

.ts-legal ul li {
	font-size: 15px;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 6px;
}

.ts-legal a {
	color: #4F46E5;
}

.ts-legal a:hover {
	color: #3730A3;
}

.ts-page-hero {
	background-color: #0C0F1E;
	padding: 100px 0 72px;
	text-align: center;
}

.ts-page-hero h1 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.3px;
	color: #F1F5F9;
	margin-bottom: 12px;
}

.ts-page-hero p {
	font-size: 18px;
	color: #CBD5E1;
	max-width: 560px;
	margin: 0 auto;
}

.ts-404 {
	background-color: #0C0F1E;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 24px;
}

.ts-404__number {
	font-size: 96px;
	font-weight: 700;
	color: #4F46E5;
	line-height: 1;
	margin-bottom: 16px;
	display: block;
}

.ts-404 h2 {
	font-size: 32px;
	font-weight: 700;
	color: #F1F5F9;
	margin-bottom: 12px;
}

.ts-404 p {
	font-size: 16px;
	color: #8B9CC5;
	margin-bottom: 32px;
}

.ts-cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: #161B35;
	border-top: 1px solid #252D50;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.ts-cookie-notice p {
	font-size: 14px;
	color: #CBD5E1;
	margin: 0;
	flex: 1;
	min-width: 240px;
}

.ts-cookie-notice p a {
	color: #4F46E5;
	text-decoration: underline;
}

.ts-cookie-notice__actions {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.ts-cookie-accept {
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
	background-color: #4F46E5;
	border: none;
	border-radius: 6px;
	padding: 10px 20px;
	cursor: pointer;
	font-family: 'Space Grotesk', 'DM Sans', sans-serif;
}

.ts-cookie-accept:hover {
	background-color: #3730A3;
}

.ts-cookie-decline {
	font-size: 14px;
	font-weight: 500;
	color: #F1F5F9;
	background-color: transparent;
	border: 1.5px solid #8B9CC5;
	border-radius: 6px;
	padding: 10px 20px;
	cursor: pointer;
	font-family: 'Space Grotesk', 'DM Sans', sans-serif;
}

.ts-cookie-decline:hover {
	background-color: rgba(255,255,255,0.06);
}

.ts-logo-placeholder {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.ts-logo-placeholder__mark {
	width: 32px;
	height: 32px;
	background-color: #4F46E5;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ts-logo-placeholder__mark span {
	font-size: 16px;
	font-weight: 700;
	color: #FFFFFF;
	font-family: 'Space Grotesk', sans-serif;
}

.ts-logo-placeholder__text {
	font-size: 18px;
	font-weight: 700;
	color: #F1F5F9;
	font-family: 'Space Grotesk', sans-serif;
	letter-spacing: -0.3px;
}

.ts-logo-placeholder__text--dark {
	color: #0F172A;
}

@media (max-width: 767px) {
	h1 {
		font-size: 36px;
	}
	h2 {
		font-size: 28px;
	}
	.ts-hero {
		padding: 90px 0 60px;
	}
	.ts-hero__title {
		font-size: 36px;
	}
	.ts-hero--compact .ts-hero__title {
		font-size: 32px;
	}
	.ts-hero__subtitle {
		font-size: 16px;
	}
	.ts-hero__cta {
		flex-direction: column;
		align-items: flex-start;
	}
	.ts-section {
		padding: 56px 0;
	}
	.ts-cta-card__inner {
		padding: 36px 24px;
	}
}

/* Logo dark/light variant swap */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Light hero default: show dark logo */
.ts-nav .logo-img--dark { display: none !important; }
.ts-nav .logo-img--light { display: inline-block !important; }
