/* Tessa Product Page — standalone styles */

/* Skip link */
.t-skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	z-index: 9999;
	background: #fff;
	color: #1a1a2e;
	padding: 0.5rem 1.5rem;
	border: 2px solid #3b5cc6;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
}
.t-skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #1a1a2e;
	background: #fff;
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

/* Container */
.t-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* ---- Nav ---- */
.t-nav {
	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 rgba(0,0,0,0.06);
}

.t-nav-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.t-nav-logo {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: #1a1a2e;
}

.t-nav-logo img {
	height: 24px;
}

.t-nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.t-nav-links a:not(.t-btn) {
	font-size: 0.9rem;
	color: #555;
	transition: color 0.2s;
}

.t-nav-links a:not(.t-btn):hover {
	color: #1a1a2e;
}

/* ---- Buttons ---- */
.t-btn {
	display: inline-block;
	padding: 0.7rem 1.6rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s;
	cursor: pointer;
	border: 2px solid transparent;
	text-align: center;
}

.t-btn-primary {
	background: #1a1a2e;
	color: #fff;
	border-color: #1a1a2e;
}

.t-btn-primary:hover {
	background: #2d2d4e;
	border-color: #2d2d4e;
}

.t-btn-outline {
	background: transparent;
	color: #1a1a2e;
	border-color: #1a1a2e;
}

.t-btn-outline:hover {
	background: #1a1a2e;
	color: #fff;
}

.t-btn-outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.5);
}

.t-btn-outline-light:hover {
	background: rgba(255,255,255,0.15);
	border-color: #fff;
}

.t-btn-sm { padding: 0.45rem 1.1rem; font-size: 0.82rem; }
.t-btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }

/* ---- Badge / Tag ---- */
.t-badge {
	display: inline-block;
	padding: 0.3rem 0.9rem;
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	background: #e8e8f0;
	color: #555;
	margin-bottom: 1.2rem;
}

.t-badge-light {
	background: rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.9);
}

.t-tag {
	display: inline-block;
	padding: 0.2rem 0.7rem;
	border-radius: 4px;
	font-size: 0.78rem;
	font-weight: 600;
	background: #f0f0f5;
	color: #666;
	margin-bottom: 0.6rem;
}

/* ---- Sections ---- */
.t-section {
	padding: 5rem 0;
}

.t-section-alt {
	background: #f8f9fb;
}

.t-section-dark {
	background: #1a1a2e;
	color: #e0e0e8;
}

.t-section-dark h2,
.t-section-dark h3,
.t-section-dark .t-section-header h2 {
	color: #fff;
}

.t-section-dark .t-section-header p {
	color: rgba(255, 255, 255, 0.7);
}

.t-section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
}

.t-section-header h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.6rem;
	color: #1a1a2e;
}

.t-section-header p {
	color: #666;
	font-size: 1.1rem;
}

.t-section-header-left {
	text-align: left;
	max-width: none;
	margin-left: 0;
}

.t-section-header-light h2 {
	color: #fff;
}

.t-section-header-light p {
	color: rgba(255,255,255,0.7);
}

/* ---- Hero ---- */
.t-hero {
	padding: 10rem 0 6rem;
	text-align: center;
	background: linear-gradient(165deg, #f8f9fb 0%, #fff 50%, #f0f1f8 100%);
}

.t-hero-left {
	text-align: left;
}

.t-hero-left .t-hero-content {
	max-width: 800px;
	margin: 0;
}

.t-hero-left .t-hero-actions {
	justify-content: flex-start;
}

.t-hero-content {
	max-width: 720px;
	margin: 0 auto;
}

.t-hero h1 {
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.15;
	color: #1a1a2e;
	margin-bottom: 1.2rem;
	letter-spacing: -0.02em;
}

.t-hero-sub {
	font-size: 1.15rem;
	color: #555;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.t-hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.t-hero-trust {
	margin-top: 2rem;
	font-size: 0.85rem;
	color: #888;
}

.t-hero-trust i {
	margin-right: 0.3rem;
}

/* ---- Steps ---- */
.t-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	position: relative;
}

.t-steps::before {
	content: "";
	position: absolute;
	top: 2.4rem;
	left: 12%;
	right: 12%;
	height: 2px;
	background: #e0e0e8;
	z-index: 0;
}

.t-step {
	text-align: center;
	position: relative;
	z-index: 1;
}

.t-step-num {
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	border-radius: 50%;
	background: #1a1a2e;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	margin: 0 auto 1rem;
}

.t-step-icon {
	font-size: 1.6rem;
	color: #3b5cc6;
	margin-bottom: 0.8rem;
}

.t-step h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.t-step p {
	font-size: 0.9rem;
	color: #666;
}

/* ---- Feature Spotlight ---- */
.t-feature-spotlight {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.t-feature-spotlight-text h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
}

.t-feature-spotlight-text p {
	color: rgba(255,255,255,0.75);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.t-highlight {
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
	padding: 0.8rem 1.2rem;
	background: rgba(108,99,255,0.2);
	border-left: 3px solid #3b5cc6;
	border-radius: 0 6px 6px 0;
	margin-top: 0.5rem;
}

/* Mockup */
.t-mockup {
	background: #252540;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.t-mockup-bar {
	background: #1e1e36;
	padding: 0.7rem 1rem;
	display: flex;
	gap: 0.4rem;
}

.t-mockup-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
}

.t-mockup-body {
	padding: 1.5rem;
	font-size: 0.85rem;
	line-height: 1.6;
}

.t-chat-line {
	padding: 0.7rem 1rem;
	border-radius: 8px;
	margin-bottom: 0.6rem;
	max-width: 90%;
}

.t-chat-user {
	background: #3b5cc6;
	color: #fff;
	margin-left: auto;
	text-align: right;
}

.t-chat-ai {
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.85);
}

.t-chat-scenario {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px;
	padding: 0.8rem 1rem;
	color: rgba(255,255,255,0.7);
	font-size: 0.8rem;
	line-height: 1.7;
}

.t-chat-scenario strong {
	color: #fff;
}

/* ---- Scenario Box (headline feature) ---- */
.t-scenario-box {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 12px;
	padding: 28px 32px;
	font-family: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
	font-size: 15px;
	line-height: 2;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	max-width: 520px;
}

.t-scenario-file {
	font-size: 12px;
	color: rgba(255,255,255,0.35);
	margin-bottom: 10px;
}

.t-scenario-title {
	font-family: inherit;
	font-weight: 600;
	font-size: 17px;
	color: #fff;
	margin-bottom: 12px;
}

.t-scenario-heading {
	font-size: 12px;
	color: rgba(255,255,255,0.4);
	margin-bottom: 2px;
	margin-top: 8px;
}

.t-scenario-pre {
	font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	padding-left: 4px;
}

.t-scenario-step {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
	font-size: 15px;
	color: rgba(255,255,255,0.85);
}

.t-step-n {
	color: #6b8aff;
	font-weight: 500;
	flex-shrink: 0;
	font-family: 'JetBrains Mono', 'SF Mono', monospace;
}

.t-scenario-expected {
	font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
	font-size: 13px;
	color: #6b8aff;
	padding-left: 28px;
	line-height: 1.6;
}

/* ---- Product Screenshot ---- */
.t-feature-screenshot {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ---- Screenshots Gallery ---- */
.t-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 0 auto;
}

.t-gallery-item {
	text-align: center;
}

.t-gallery-img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.25);
	transition: transform 0.2s ease;
}

.t-gallery-img:hover {
	transform: scale(1.02);
}

.t-gallery-caption {
	margin-top: 0.8rem;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.7);
}

/* ---- Lightbox ---- */
.t-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0,0,0,0.75);
	backdrop-filter: blur(4px);
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.t-lightbox.active {
	display: flex;
}

.t-lightbox img {
	max-width: 85vw;
	max-height: 85vh;
	border-radius: 12px;
	box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

/* ---- Feature Cards ---- */
.t-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.t-features-grid-2col {
	grid-template-columns: repeat(2, 1fr);
}

.t-feature-card {
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid #eee;
	transition: box-shadow 0.25s, transform 0.25s;
}

.t-feature-card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,0.06);
	transform: translateY(-2px);
}

.t-feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: #f0f0f8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: #3b5cc6;
	margin-bottom: 1.2rem;
}

.t-feature-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.t-feature-card p {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
}

/* ---- Tier Cards ---- */
.t-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

.t-tier {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	position: relative;
}

.t-tier-featured {
	border-color: #1a1a2e;
	box-shadow: 0 8px 30px rgba(26,26,46,0.12);
}

.t-tier-badge {
	position: absolute;
	top: -0.7rem;
	left: 50%;
	transform: translateX(-50%);
	background: #1a1a2e;
	color: #fff;
	padding: 0.2rem 0.8rem;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.t-tier h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.15rem;
}

.t-tier-sub {
	font-size: 0.82rem;
	color: #888;
	margin-bottom: 0.8rem;
}

.t-tier-desc {
	font-size: 0.88rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 1.2rem;
}

.t-tier ul {
	list-style: none;
	flex: 1;
	margin-bottom: 1.5rem;
}

.t-tier ul li {
	font-size: 0.85rem;
	color: #444;
	padding: 0.35rem 0;
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.t-tier ul li i {
	color: #3b5cc6;
	font-size: 0.7rem;
	flex-shrink: 0;
}

.t-tier-callout {
	font-size: 0.82rem;
	font-style: italic;
	color: #888;
	padding: 0.6rem 0;
	border-top: 1px solid #f0f0f5;
	margin-top: auto;
	margin-bottom: 1rem;
}

.t-tier .t-btn {
	width: 100%;
}

/* ---- Trust Grid ---- */
.t-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.t-trust-item {
	text-align: center;
}

.t-trust-item i {
	font-size: 1.5rem;
	color: #3b5cc6;
	margin-bottom: 0.8rem;
	display: block;
}

.t-trust-item h3 {
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
}

.t-trust-item p {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.6);
}

.t-sovereign-box {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	padding: 1.5rem 2rem;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 10px;
	font-size: 0.92rem;
	color: rgba(255,255,255,0.7);
	line-height: 1.6;
}

/* ---- Training ---- */
.t-training-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.t-training-card {
	padding: 1.5rem;
	border: 1px solid #eee;
	border-radius: 10px;
}

.t-training-card h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.t-training-card p {
	font-size: 0.88rem;
	color: #666;
}

/* ---- Roadmap ---- */
.t-roadmap {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: center;
}

.t-roadmap-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: #fff;
	border: 1px solid #e0e0e8;
	border-radius: 50px;
	font-size: 0.88rem;
	color: #555;
}

.t-roadmap-item i {
	color: #3b5cc6;
	font-size: 0.8rem;
}

/* ---- Tech Specs ---- */
.t-specs {
	max-width: 720px;
	margin: 0 auto;
}

.t-specs summary {
	cursor: pointer;
	list-style: none;
	text-align: center;
}

.t-specs summary::-webkit-details-marker {
	display: none;
}

.t-specs summary h2 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1a1a2e;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.t-specs summary h2::after {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 0.7rem;
	transition: transform 0.3s;
}

.t-specs[open] summary h2::after {
	transform: rotate(180deg);
}

.t-specs-table {
	width: 100%;
	margin-top: 1.5rem;
	border-collapse: collapse;
}

.t-specs-table tr {
	border-bottom: 1px solid #f0f0f5;
}

.t-specs-table td {
	padding: 0.75rem 0;
	font-size: 0.9rem;
}

.t-specs-table td:first-child {
	font-weight: 600;
	color: #1a1a2e;
	width: 35%;
}

.t-specs-table td:last-child {
	color: #666;
}

/* ---- Bottom CTA ---- */
.t-cta-section {
	background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
	color: #fff;
	text-align: center;
	padding: 5rem 0;
}

.t-cta-section h2 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.t-cta-section p {
	max-width: 560px;
	margin: 0 auto 2rem;
	color: rgba(255,255,255,0.7);
	font-size: 1.05rem;
}

/* ---- Footer ---- */
.t-footer {
	padding: 2rem 0;
	border-top: 1px solid #eee;
}

.t-footer-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	font-size: 0.82rem;
	color: #999;
}

.t-footer-inner a {
	color: #666;
	transition: color 0.2s;
}

.t-footer-inner a:hover {
	color: #1a1a2e;
}

/* ---- Team Grid ---- */
.t-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.t-team-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.25s, transform 0.25s;
}

.t-team-card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}

.t-team-photo {
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.t-team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.3s;
}

.t-team-card:hover .t-team-photo img {
	transform: scale(1.03);
}

.t-team-info {
	padding: 1.5rem;
}

.t-team-info h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.15rem;
}

.t-team-role {
	font-size: 0.85rem;
	color: #3b5cc6;
	font-weight: 600;
	margin-bottom: 0.8rem;
}

.t-team-info p {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.t-team-info .t-btn {
	margin-top: 0.2rem;
}

/* ---- Product Callout ---- */
.t-product-callout {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.t-product-callout h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
}

.t-product-callout p {
	color: rgba(255,255,255,0.7);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

/* ---- Contact ---- */
.t-contact-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 3rem;
	align-items: start;
}

.t-form-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.t-form-field {
	grid-column: 1 / -1;
}

.t-form-field.t-form-half {
	grid-column: auto;
}

.t-form-field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 0.4rem;
}

.t-form-field input,
.t-form-field textarea,
.t-form-field select {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 0.9rem;
	font-family: inherit;
	background: #fff;
	color: #1a1a2e;
	transition: border-color 0.2s;
}

.t-form-field input:focus,
.t-form-field textarea:focus,
.t-form-field select:focus {
	outline: 2px solid #3b5cc6;
	outline-offset: 2px;
	border-color: #3b5cc6;
}

.t-form-field textarea {
	resize: vertical;
}

.t-contact-form-wrap .t-btn {
	margin-top: 1rem;
}

.t-section-dark .t-form-field label {
	color: #ccc;
}

.t-section-dark .t-form-field input,
.t-section-dark .t-form-field textarea,
.t-section-dark .t-form-field select {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.t-section-dark .t-form-field input::placeholder,
.t-section-dark .t-form-field textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.t-section-dark .t-form-field input:focus,
.t-section-dark .t-form-field textarea:focus,
.t-section-dark .t-form-field select:focus {
	border-color: #6b8cff;
}

.t-section-dark .t-form-field select option {
	background: #1a1a2e;
	color: #fff;
}

.t-section-dark .t-btn-primary {
	background: #fff;
	color: #1a1a2e;
	border-color: #fff;
}

.t-section-dark .t-btn-primary:hover {
	background: #e0e0e8;
	border-color: #e0e0e8;
}

.t-contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.t-contact-block h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.t-contact-block p {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
}

.t-contact-block a {
	color: #3b5cc6;
	transition: color 0.2s;
}

.t-contact-block a:hover {
	color: #1a1a2e;
}

.t-social-links {
	display: flex;
	gap: 1rem;
	margin-top: 0.3rem;
}

.t-social-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.88rem;
	color: #555;
	transition: color 0.2s;
}

.t-social-links a:hover {
	color: #3b5cc6;
}

.t-social-links a i {
	font-size: 1.1rem;
}

/* ---- Nav Active ---- */
.t-nav-active {
	color: #1a1a2e !important;
	font-weight: 600;
}

/* ---- Prose / Content Pages ---- */
.t-prose {
	max-width: 760px;
	margin: 0 auto;
}

.t-prose h1 {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 0.8rem;
}

.t-prose h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

.t-prose p {
	color: #444;
	line-height: 1.75;
	margin-bottom: 1rem;
}

.t-prose ul, .t-prose ol {
	color: #444;
	line-height: 1.75;
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.t-prose hr {
	border: none;
	border-top: 1px solid #eee;
	margin: 2rem 0;
}

.t-prose a {
	color: #3b5cc6;
}

.t-prose a:hover {
	text-decoration: underline;
}

.t-back-link {
	margin-bottom: 2rem;
}

.t-back-link a {
	color: #888;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.t-back-link a:hover {
	color: #1a1a2e;
}

/* ---- Blog ---- */
.t-blog-grid {
	display: grid;
	gap: 1.5rem;
}

.t-blog-card {
	padding: 2rem;
	border: 1px solid #eee;
	border-radius: 12px;
	transition: box-shadow 0.25s;
}

.t-blog-card:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.t-blog-card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.t-blog-card h3 a {
	color: #1a1a2e;
	transition: color 0.2s;
}

.t-blog-card h3 a:hover {
	color: #3b5cc6;
}

.t-blog-meta {
	display: flex;
	gap: 1rem;
	font-size: 0.82rem;
	color: #888;
	margin-bottom: 0.6rem;
}

.t-blog-tags {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-bottom: 0.8rem;
}

.t-blog-card p {
	font-size: 0.92rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.t-blog-content {
	margin-top: 2rem;
}

.t-blog-content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2.5rem;
	margin-bottom: 0.8rem;
}

.t-blog-content h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

.t-blog-content p {
	color: #444;
	line-height: 1.8;
	margin-bottom: 1.2rem;
}

.t-blog-content ul, .t-blog-content ol {
	color: #444;
	line-height: 1.8;
	margin-bottom: 1.2rem;
	padding-left: 1.5rem;
}

.t-blog-content code {
	background: #f4f4f8;
	padding: 0.15em 0.4em;
	border-radius: 4px;
	font-size: 0.88em;
}

.t-blog-content pre {
	background: #1a1a2e;
	color: #e0e0e8;
	padding: 1.2rem;
	border-radius: 8px;
	overflow-x: auto;
	margin-bottom: 1.5rem;
}

.t-blog-content pre code {
	background: transparent;
	padding: 0;
	color: inherit;
}

.t-blog-content img {
	border-radius: 8px;
	margin: 1rem 0;
}

.t-blog-content blockquote {
	border-left: 3px solid #3b5cc6;
	padding: 0.5rem 1.2rem;
	margin: 1.5rem 0;
	color: #555;
	font-style: italic;
}

/* ---- Apps ---- */
.t-app-card {
	padding: 2rem;
	border: 1px solid #eee;
	border-radius: 12px;
	margin-bottom: 2rem;
}

.t-app-tagline {
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 0.5rem;
}

.t-app-card p {
	font-size: 0.92rem;
	color: #555;
	line-height: 1.6;
}

.t-app-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.t-app-card h4 {
	font-size: 0.95rem;
	font-weight: 700;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.t-app-features {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.t-app-features li {
	font-size: 0.9rem;
	color: #555;
	padding: 0.15rem 0;
}

.t-app-tech {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin: 1rem 0;
}

.t-app-links {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
}

.t-app-legal {
	font-size: 0.8rem;
	color: #888;
	margin-top: 1rem;
}

.t-app-legal a {
	color: #888;
	text-decoration: underline;
}

.t-app-legal a:hover {
	color: #3b5cc6;
}

.t-app-terms-inline {
	display: inline;
}

.t-app-terms-inline summary {
	display: inline;
	cursor: pointer;
	color: #888;
	text-decoration: underline;
}

.t-app-terms-inline summary:hover {
	color: #3b5cc6;
}

.t-app-terms-inline p,
.t-app-terms-inline ul {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.8rem;
	color: #666;
	line-height: 1.6;
}

.t-app-terms-inline ul {
	padding-left: 1.25rem;
}

.t-app-terms-inline a {
	color: #3b5cc6;
}

/* ---- Profile Page ---- */
.t-profile {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 3rem;
	align-items: start;
}

.t-profile-photo img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
}

.t-profile-info h1 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.15rem;
}

.t-profile-info .t-team-role {
	margin-bottom: 1.5rem;
}

.t-profile-info h2 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-top: 1.5rem;
	margin-bottom: 0.3rem;
}

.t-profile-info h3 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-top: 1.5rem;
	margin-bottom: 0.3rem;
}

.t-profile-info p {
	font-size: 0.92rem;
	color: #555;
	line-height: 1.6;
}

/* ---- Privacy Navigation ---- */
.t-privacy-nav {
	list-style: none;
	padding: 0;
	columns: 2;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.t-privacy-nav li {
	padding: 0.25rem 0;
}

.t-privacy-nav a {
	font-size: 0.88rem;
}

/* ---- Modal ---- */
.t-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(4px);
}

.t-modal-content {
	background: #fff;
	margin: 5% auto;
	padding: 2.5rem;
	border-radius: 12px;
	width: 90%;
	max-width: 720px;
	max-height: 80vh;
	overflow-y: auto;
	color: #444;
	line-height: 1.65;
}

.t-modal-content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 1rem;
}

.t-modal-content h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.t-modal-content p {
	margin-bottom: 0.8rem;
}

.t-modal-content a {
	color: #3b5cc6;
}

.t-modal-close {
	float: right;
	font-size: 1.8rem;
	font-weight: 300;
	color: #999;
	cursor: pointer;
	line-height: 1;
	transition: color 0.2s;
}

.t-modal-close:hover {
	color: #1a1a2e;
}

/* ---- Responsive ---- */
@media screen and (max-width: 1024px) {
	.t-tiers { grid-template-columns: repeat(2, 1fr); }
	.t-gallery { grid-template-columns: repeat(2, 1fr); }
	.t-training-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
	.t-hero { padding: 8rem 0 4rem; }
	.t-hero h1 { font-size: 2.2rem; }
	.t-section { padding: 3.5rem 0; }
	.t-steps { grid-template-columns: repeat(2, 1fr); }
	.t-steps::before { display: none; }
	.t-feature-spotlight { grid-template-columns: 1fr; gap: 2rem; }
	.t-features-grid { grid-template-columns: 1fr; }
	.t-gallery { grid-template-columns: 1fr; }
	.t-tiers { grid-template-columns: 1fr; }
	.t-trust-grid { grid-template-columns: 1fr; gap: 1.5rem; }
	.t-training-grid { grid-template-columns: 1fr; }
	.t-team-grid { grid-template-columns: 1fr; }
	.t-contact-grid { grid-template-columns: 1fr; }
	.t-form-fields { grid-template-columns: 1fr; }
	.t-form-field.t-form-half { grid-column: 1 / -1; }

	.t-profile { grid-template-columns: 1fr; }
	.t-profile-photo { max-width: 280px; }
	.t-privacy-nav { columns: 1; }

	.t-nav-links a:not(.t-btn) { display: none; }
}

@media screen and (max-width: 480px) {
	.t-hero h1 { font-size: 1.8rem; }
	.t-hero-sub { font-size: 1rem; }
	.t-steps { grid-template-columns: 1fr; }
	.t-hero-actions { flex-direction: column; align-items: center; }
	.t-hero-actions .t-btn { width: 100%; }
}
