/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #1e293b;
	background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── Container ────────────────────────────────────────────────────────── */
.tct-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}
.tct-container--narrow { max-width: 720px; }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.tct-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 8px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.15s;
	text-decoration: none;
}
.tct-btn--primary {
	color: #fff;
	background: #6d28d9;
	border-color: #6d28d9;
}
.tct-btn--primary:hover { background: #5b21b6; }
.tct-btn--ghost {
	color: #334155;
	background: transparent;
	border-color: #e2e8f0;
}
.tct-btn--ghost:hover { background: #f8fafc; border-color: #cbd5e1; }
.tct-btn--lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.tct-btn--full { width: 100%; }

/* ── Header ───────────────────────────────────────────────────────────── */
.tct-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid #f1f5f9;
}
.tct-header .tct-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}
.tct-header__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	color: #0f172a;
	font-weight: 500;
}
.tct-header__logo strong { font-weight: 800; }
.tct-header__nav {
	display: flex;
	gap: 32px;
}
.tct-header__nav a {
	font-size: 14px;
	font-weight: 500;
	color: #64748b;
	transition: color 0.15s;
}
.tct-header__nav a:hover { color: #0f172a; }
.tct-header__actions {
	display: flex;
	gap: 10px;
}
.tct-header__toggle { display: none; background: none; border: none; cursor: pointer; color: #334155; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.tct-hero {
	padding: 140px 0 80px;
	text-align: center;
	background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
}
.tct-hero__badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #6d28d9;
	background: #ede9fe;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 24px;
}
.tct-hero__title {
	font-size: 56px;
	font-weight: 900;
	line-height: 1.1;
	color: #0f172a;
	margin-bottom: 20px;
	letter-spacing: -1px;
}
.tct-gradient-text {
	background: linear-gradient(135deg, #6d28d9, #06b6d4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.tct-hero__subtitle {
	font-size: 18px;
	color: #64748b;
	max-width: 560px;
	margin: 0 auto 32px;
	line-height: 1.6;
}
.tct-hero__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-bottom: 56px;
}
.tct-hero__stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
}
.tct-hero__stat {
	text-align: center;
}
.tct-hero__stat strong {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: #0f172a;
}
.tct-hero__stat span {
	font-size: 13px;
	color: #94a3b8;
}
.tct-hero__stat-divider {
	width: 1px;
	height: 40px;
	background: #e2e8f0;
}

/* ── Section Header ───────────────────────────────────────────────────── */
.tct-section-header {
	text-align: center;
	margin-bottom: 56px;
}
.tct-section-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #6d28d9;
	margin-bottom: 12px;
}
.tct-section-header h2 {
	font-size: 36px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}
.tct-section-header p {
	font-size: 17px;
	color: #64748b;
}

/* ── Features ─────────────────────────────────────────────────────────── */
.tct-features {
	padding: 80px 0;
}
.tct-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.tct-feature {
	padding: 28px;
	border: 1px solid #f1f5f9;
	border-radius: 12px;
	transition: box-shadow 0.2s, border-color 0.2s;
}
.tct-feature:hover {
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
	border-color: #e2e8f0;
}
.tct-feature__icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.tct-feature__icon--purple { background: #ede9fe; color: #6d28d9; }
.tct-feature__icon--green  { background: #dcfce7; color: #16a34a; }
.tct-feature__icon--blue   { background: #dbeafe; color: #2563eb; }
.tct-feature__icon--orange { background: #fff7ed; color: #ea580c; }
.tct-feature__icon--pink   { background: #fce7f3; color: #db2777; }
.tct-feature__icon--teal   { background: #ccfbf1; color: #0d9488; }
.tct-feature h3 {
	font-size: 17px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}
.tct-feature p {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
}

/* ── How It Works ─────────────────────────────────────────────────────── */
.tct-how {
	padding: 80px 0;
	background: #fafbfc;
}
.tct-how__steps {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.tct-how__step {
	flex: 1;
	text-align: center;
	padding: 32px 20px;
}
.tct-how__number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #6d28d9;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}
.tct-how__step h3 {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}
.tct-how__step p {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
}
.tct-how__arrow {
	flex-shrink: 0;
	color: #cbd5e1;
	padding-top: 44px;
}

/* ── CTA ──────────────────────────────────────────────────────────────── */
.tct-cta {
	padding: 80px 0;
}
.tct-cta__card {
	max-width: 480px;
	margin: 0 auto;
	text-align: center;
	background: #0f172a;
	border-radius: 16px;
	padding: 48px 40px;
	color: #fff;
}
.tct-cta__badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #a78bfa;
	background: rgba(167,139,250,0.15);
	padding: 4px 14px;
	border-radius: 12px;
	margin-bottom: 16px;
}
.tct-cta__card h2 {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 12px;
}
.tct-cta__card p {
	font-size: 15px;
	color: #94a3b8;
	margin-bottom: 28px;
	line-height: 1.6;
}
.tct-cta__list {
	text-align: left;
	margin-bottom: 32px;
}
.tct-cta__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #cbd5e1;
	padding: 6px 0;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.tct-footer {
	background: #0f172a;
	color: #94a3b8;
	padding: 56px 0 0;
}
.tct-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #1e293b;
}
.tct-footer__logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
}
.tct-footer__brand p {
	font-size: 14px;
	line-height: 1.6;
}
.tct-footer__col h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #e2e8f0;
	margin-bottom: 16px;
}
.tct-footer__col a {
	display: block;
	font-size: 14px;
	color: #94a3b8;
	padding: 4px 0;
	transition: color 0.15s;
}
.tct-footer__col a:hover { color: #fff; }
.tct-footer__bottom {
	padding: 20px 0;
	font-size: 13px;
	color: #475569;
}

/* ── Page ─────────────────────────────────────────────────────────────── */
.tct-page {
	padding: 100px 0 60px;
	min-height: 60vh;
}
.tct-page h1 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 24px;
}
.tct-page__content {
	font-size: 16px;
	line-height: 1.8;
	color: #334155;
}
.tct-post {
	padding: 24px 0;
	border-bottom: 1px solid #f1f5f9;
}
.tct-post h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.tct-post h2 a:hover { color: #6d28d9; }
.tct-post__meta { font-size: 13px; color: #94a3b8; margin-bottom: 8px; }
.tct-post__excerpt { font-size: 15px; color: #64748b; }
.tct-post--single .tct-post__content { font-size: 17px; line-height: 1.8; color: #334155; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.tct-header__nav,
	.tct-header__actions { display: none; }
	.tct-header__toggle { display: block; }
	body.tct-nav-open .tct-header__nav,
	body.tct-nav-open .tct-header__actions {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		padding: 16px 24px;
		border-bottom: 1px solid #e2e8f0;
		gap: 12px;
	}
	body.tct-nav-open .tct-header__nav { border-bottom: none; padding-bottom: 0; }
	body.tct-nav-open .tct-header__actions { top: auto; }

	.tct-hero { padding: 100px 0 60px; }
	.tct-hero__title { font-size: 36px; }
	.tct-hero__actions { flex-direction: column; align-items: center; }
	.tct-hero__stats { flex-wrap: wrap; gap: 16px; }
	.tct-hero__stat-divider { display: none; }

	.tct-features__grid { grid-template-columns: 1fr; }

	.tct-how__steps { flex-direction: column; }
	.tct-how__arrow { display: none; }

	.tct-cta__card { padding: 32px 24px; }

	.tct-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
