/**
 * TranscriptionAid — Public Stylesheet
 *
 * Modern SaaS Design, Dark/Teal Accents, Waveform Motifs, Mobile-First.
 * @package TranscriptionAid
 */

/* ==========================================================================
   Design Tokens & Resets
   ========================================================================== */
:root {
	--ta-navy-950: #080d1a;
	--ta-navy-900: #0f172a;
	--ta-navy-800: #1e293b;
	--ta-navy-700: #334155;
	--ta-teal-600: #0d9488;
	--ta-teal-500: #14b8a6;
	--ta-teal-400: #2dd4bf;
	--ta-cyan-500: #06b6d4;
	--ta-cyan-400: #22d3ee;
	--ta-slate-100: #f1f5f9;
	--ta-slate-50: #f8fafc;
	--ta-border: #e2e8f0;
	--ta-text-main: #0f172a;
	--ta-text-muted: #64748b;
	--ta-radius-lg: 16px;
	--ta-radius-md: 10px;
	--ta-radius-sm: 6px;
	--ta-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--ta-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--ta-shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
}

.transcriptionaid-app-wrapper {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: var(--ta-text-main);
	line-height: 1.6;
	background-color: #fff;
	max-width: 1240px;
	margin: 0 auto;
	padding: 20px 16px 80px 16px;
	box-sizing: border-box;
}

.transcriptionaid-app-wrapper * {
	box-sizing: border-box;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.ta-hero {
	text-align: center;
	padding: 60px 20px 50px 20px;
	background: radial-gradient(circle at 50% -20%, rgba(13, 148, 136, 0.15), transparent 70%);
	border-radius: var(--ta-radius-lg);
	margin-bottom: 40px;
}

.ta-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f0fdfa;
	color: var(--ta-teal-600);
	border: 1px solid rgba(45, 212, 191, 0.4);
	padding: 6px 16px;
	border-radius: 9999px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
}

.ta-hero h1 {
	font-family: 'Outfit', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: var(--ta-navy-900);
	line-height: 1.2;
	letter-spacing: -0.02em;
	max-width: 820px;
	margin: 0 auto 20px auto;
}

@media (max-width: 768px) {
	.ta-hero h1 {
		font-size: 30px;
	}
}

.ta-hero-subheading {
	font-size: 18px;
	color: var(--ta-navy-700);
	max-width: 740px;
	margin: 0 auto 30px auto;
	line-height: 1.6;
}

.ta-hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.ta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--ta-teal-600), #0f766e);
	color: #fff !important;
	text-decoration: none !important;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 9999px;
	box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
	transition: all 0.25s ease;
	border: none;
	cursor: pointer;
}

.ta-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
	background: linear-gradient(135deg, #0f766e, var(--ta-teal-600));
}

.ta-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: var(--ta-navy-900) !important;
	text-decoration: none !important;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 9999px;
	border: 1px solid var(--ta-border);
	transition: all 0.25s ease;
	cursor: pointer;
}

.ta-btn-secondary:hover {
	background: var(--ta-slate-50);
	border-color: #cbd5e1;
}

.ta-hero-trust-line {
	font-size: 14px;
	color: var(--ta-text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

/* ==========================================================================
   Upload Area & Dropzone
   ========================================================================== */
.ta-app-container {
	margin-bottom: 60px;
}

.ta-card-main {
	background: #fff;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-lg);
	box-shadow: var(--ta-shadow-xl);
	overflow: hidden;
}

.ta-app-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	border-bottom: 1px solid var(--ta-border);
	background: var(--ta-slate-50);
	flex-wrap: wrap;
	gap: 12px;
}

.ta-topbar-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ta-engine-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--ta-teal-600);
	background: #ccfbf1;
	padding: 4px 10px;
	border-radius: 9999px;
}

.ta-hipaa-switch-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--ta-navy-700);
	cursor: pointer;
}

.ta-hipaa-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ecfdf5;
	color: #059669;
	border: 1px solid rgba(5, 150, 105, 0.3);
	padding: 4px 10px;
	border-radius: 9999px;
	font-size: 12px;
	font-weight: 600;
}

.ta-dropzone {
	padding: 60px 30px;
	text-align: center;
	border: 2px dashed #cbd5e1;
	border-radius: var(--ta-radius-md);
	margin: 24px;
	background: #fdfdfd;
	transition: all 0.3s ease;
	cursor: pointer;
}

.ta-dropzone:hover,
.ta-dropzone.is-dragover {
	border-color: var(--ta-teal-500);
	background: #f0fdfa;
}

.ta-upload-icon-pulse {
	width: 68px;
	height: 68px;
	margin: 0 auto 18px auto;
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(6, 182, 212, 0.2));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	animation: taPulse 2s infinite ease-in-out;
}

@keyframes taPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.06); }
}

.ta-drop-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--ta-navy-900);
	margin-bottom: 6px;
}

.ta-drop-desc {
	font-size: 14.5px;
	color: var(--ta-text-muted);
	margin-bottom: 22px;
}

.ta-format-pill-row {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.ta-format-pill {
	background: #e2e8f0;
	color: var(--ta-navy-700);
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
	letter-spacing: 0.04em;
}

/* Demo Sample Selector */
.ta-sample-bar, .ta-demo-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 24px 24px 24px;
	background: var(--ta-slate-50);
	border-top: 1px solid var(--ta-border);
	font-size: 13px;
	color: var(--ta-text-muted);
	flex-wrap: wrap;
}

.ta-demo-file-btn, .ta-demo-btn {
	background: #fff;
	border: 1px solid var(--ta-border);
	padding: 5px 12px;
	border-radius: 6px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--ta-navy-800);
	cursor: pointer;
	transition: all 0.2s;
}

.ta-demo-file-btn:hover, .ta-demo-btn:hover {
	border-color: var(--ta-teal-500);
	color: var(--ta-teal-600);
	background: #f0fdfa;
}

/* ==========================================================================
   Processing & Progress State
   ========================================================================== */
.ta-processing-card {
	padding: 60px 40px;
	text-align: center;
}

.ta-progress-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 540px;
	margin: 0 auto 10px auto;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ta-navy-800);
}

.ta-progress-track {
	max-width: 540px;
	height: 10px;
	background: #e2e8f0;
	border-radius: 9999px;
	margin: 0 auto 16px auto;
	overflow: hidden;
}

.ta-progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--ta-teal-500), var(--ta-cyan-400));
	border-radius: 9999px;
	transition: width 0.3s ease;
}

.ta-processing-hints {
	font-size: 13px;
	color: var(--ta-text-muted);
}

/* ==========================================================================
   Transcript Editor & Audio Player
   ========================================================================== */
.ta-editor-card {
	display: none;
}

/* Player Bar */
.ta-player-bar {
	background: var(--ta-navy-950);
	color: #fff;
	padding: 20px 24px;
	border-bottom: 1px solid #1e293b;
}

.ta-waveform-wrap {
	position: relative;
	width: 100%;
	height: 80px;
	margin-bottom: 16px;
	background: rgba(15, 23, 42, 0.6);
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
}

#ta-waveform-canvas {
	width: 100%;
	height: 100%;
	display: block;
}

.ta-player-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.ta-player-btns {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ta-play-btn {
	background: var(--ta-teal-500);
	color: #080d1a;
	border: none;
	padding: 8px 18px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s;
}

.ta-play-btn:hover {
	background: var(--ta-teal-400);
}

.ta-skip-btn {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	cursor: pointer;
	transition: background 0.2s;
}

.ta-skip-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

.ta-player-time {
	font-size: 13.5px;
	font-family: monospace;
	color: #94a3b8;
}

.ta-speed-select {
	background: #1e293b;
	color: #fff;
	border: 1px solid #334155;
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 12px;
	cursor: pointer;
}

/* Editor Toolbar */
.ta-editor-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 24px;
	background: #fff;
	border-bottom: 1px solid var(--ta-border);
	flex-wrap: wrap;
	gap: 12px;
}

.ta-mode-switcher {
	display: inline-flex;
	background: var(--ta-slate-100);
	padding: 3px;
	border-radius: 8px;
}

.ta-mode-btn {
	border: none;
	background: transparent;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ta-navy-700);
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
}

.ta-mode-btn.is-active {
	background: #fff;
	color: var(--ta-teal-600);
	box-shadow: var(--ta-shadow-sm);
}

.ta-search-bar {
	position: relative;
	display: flex;
	align-items: center;
}

.ta-search-bar input {
	padding: 6px 12px 6px 32px;
	border: 1px solid var(--ta-border);
	border-radius: 6px;
	font-size: 13px;
	width: 220px;
	transition: width 0.3s;
}

.ta-search-bar input:focus {
	width: 280px;
	border-color: var(--ta-teal-500);
	outline: none;
}

.ta-search-icon {
	position: absolute;
	left: 10px;
	color: var(--ta-text-muted);
	font-size: 12px;
}

.ta-search-count {
	font-size: 11.5px;
	color: var(--ta-teal-600);
	margin-left: 8px;
	font-weight: 500;
}

/* Segments Container */
.ta-segments-container {
	padding: 24px;
	max-height: 520px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: #fafafa;
}

.ta-segment-row {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-md);
	transition: all 0.2s ease;
}

.ta-segment-row.is-speaking {
	border-color: var(--ta-cyan-400);
	box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
	background: #f0fdfa;
}

.ta-seg-meta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ta-seg-speaker {
	font-size: 13px;
	font-weight: 700;
	color: var(--ta-teal-600);
	background: rgba(13, 148, 136, 0.1);
	padding: 3px 10px;
	border-radius: 9999px;
	cursor: pointer;
	transition: background 0.2s;
}

.ta-seg-speaker:hover {
	background: rgba(13, 148, 136, 0.2);
}

.ta-seg-time-badge {
	background: #e2e8f0;
	color: var(--ta-navy-800);
	border: none;
	padding: 3px 8px;
	border-radius: 6px;
	font-size: 11.5px;
	font-family: monospace;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: all 0.2s;
}

.ta-seg-time-badge:hover {
	background: var(--ta-teal-500);
	color: #fff;
}

.ta-seg-text {
	font-size: 15px;
	line-height: 1.6;
	color: var(--ta-navy-900);
	outline: none;
	padding: 4px 6px;
	border-radius: 4px;
	min-height: 24px;
}

.ta-seg-text:focus {
	background: #f8fafc;
	box-shadow: 0 0 0 1px var(--ta-border);
}

.ta-search-match {
	background: #fef08a;
	padding: 1px 3px;
	border-radius: 2px;
}

/* Editor Footer & Export Bar */
.ta-editor-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	background: #fff;
	border-top: 1px solid var(--ta-border);
	flex-wrap: wrap;
	gap: 16px;
}

.ta-footer-left {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 12.5px;
	color: var(--ta-text-muted);
}

.ta-autosave-badge {
	display: inline-flex;
	align-items: center;
	color: #059669;
	font-weight: 600;
	font-size: 12.5px;
}

.ta-export-group {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.ta-export-btn {
	background: #fff;
	border: 1px solid var(--ta-border);
	padding: 7px 14px;
	border-radius: 6px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ta-navy-800);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: all 0.2s;
}

.ta-export-btn:hover {
	border-color: var(--ta-teal-500);
	color: var(--ta-teal-600);
	background: #f0fdfa;
}

.ta-export-btn-primary {
	background: var(--ta-teal-600);
	color: #fff !important;
	border-color: var(--ta-teal-600);
}

.ta-export-btn-primary:hover {
	background: #0f766e;
}

/* Toast Notifications */
.ta-toast {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: var(--ta-navy-900);
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 13.5px;
	font-weight: 500;
	box-shadow: var(--ta-shadow-xl);
	z-index: 99999;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.25s ease;
	pointer-events: none;
}

.ta-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   History Dashboard Card
   ========================================================================== */
.ta-history-section {
	margin-top: 40px;
}

.ta-section-title {
	font-family: 'Outfit', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--ta-navy-900);
	margin-bottom: 6px;
}

.ta-section-subtitle {
	font-size: 15px;
	color: var(--ta-text-muted);
	margin-bottom: 24px;
}

.ta-history-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
}

.ta-history-table th,
.ta-history-table td {
	padding: 14px 18px;
	text-align: left;
	border-bottom: 1px solid var(--ta-border);
}

.ta-history-table th {
	background: var(--ta-slate-50);
	font-weight: 600;
	color: var(--ta-navy-700);
}

.ta-btn-sm {
	padding: 4px 10px;
	font-size: 12px;
	border-radius: 4px;
	border: 1px solid var(--ta-border);
	background: #fff;
	cursor: pointer;
	color: var(--ta-navy-800);
}

.ta-btn-sm:hover {
	border-color: var(--ta-teal-500);
	color: var(--ta-teal-600);
}

.ta-empty-history {
	text-align: center;
	padding: 30px !important;
	color: var(--ta-text-muted);
}

/* ==========================================================================
   Use Case Grid (6 Tiles)
   ========================================================================== */
.ta-use-cases-section {
	padding: 60px 0;
	border-top: 1px solid var(--ta-border);
}

.ta-grid-3x2 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.ta-grid-3x2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.ta-grid-3x2 {
		grid-template-columns: 1fr;
	}
}

.ta-usecase-tile {
	background: #fff;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-md);
	padding: 28px;
	transition: all 0.25s ease;
}

.ta-usecase-tile:hover {
	transform: translateY(-4px);
	border-color: var(--ta-teal-400);
	box-shadow: var(--ta-shadow-md);
}

.ta-tile-icon {
	font-size: 32px;
	margin-bottom: 14px;
	display: block;
}

.ta-usecase-tile h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--ta-navy-900);
	margin: 0 0 10px 0;
}

.ta-usecase-tile p {
	font-size: 14px;
	color: var(--ta-navy-700);
	margin: 0;
	line-height: 1.6;
}

/* ==========================================================================
   Feature Strip (6 Items)
   ========================================================================== */
.ta-features-section {
	padding: 60px 0;
	border-top: 1px solid var(--ta-border);
}

.ta-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.ta-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.ta-features-grid {
		grid-template-columns: 1fr;
	}
}

.ta-feature-item {
	display: flex;
	gap: 16px;
}

.ta-feature-icon {
	font-size: 26px;
	flex-shrink: 0;
}

.ta-feature-item h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--ta-navy-900);
	margin: 0 0 6px 0;
}

.ta-feature-item p {
	font-size: 13.5px;
	color: var(--ta-navy-700);
	margin: 0;
	line-height: 1.5;
}

/* ==========================================================================
   How It Works (3 Steps)
   ========================================================================== */
.ta-how-section {
	padding: 60px 0;
	border-top: 1px solid var(--ta-border);
	text-align: center;
}

.ta-steps-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 40px;
}

@media (max-width: 768px) {
	.ta-steps-row {
		grid-template-columns: 1fr;
	}
}

.ta-step-card {
	background: var(--ta-slate-50);
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-md);
	padding: 32px 24px;
	text-align: center;
}

.ta-step-num {
	width: 42px;
	height: 42px;
	background: var(--ta-teal-600);
	color: #fff;
	border-radius: 50%;
	font-weight: 700;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px auto;
}

.ta-step-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px 0;
	color: var(--ta-navy-900);
}

.ta-step-card p {
	font-size: 14px;
	color: var(--ta-navy-700);
	margin: 0;
}

/* ==========================================================================
   Trust / Comparison Section
   ========================================================================== */
.ta-trust-section {
	background: linear-gradient(135deg, var(--ta-navy-950), var(--ta-navy-900));
	color: #fff;
	border-radius: var(--ta-radius-lg);
	padding: 50px 40px;
	margin: 50px 0;
}

.ta-trust-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.ta-trust-content h2 {
	font-family: 'Outfit', sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 16px 0;
}

.ta-trust-content p {
	font-size: 16px;
	color: #cbd5e1;
	line-height: 1.6;
	margin-bottom: 30px;
}

.ta-checklist-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	text-align: left;
	max-width: 680px;
	margin: 0 auto;
}

@media (max-width: 600px) {
	.ta-checklist-grid {
		grid-template-columns: 1fr;
	}
}

.ta-check-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #f1f5f9;
}

/* ==========================================================================
   FAQ Section Accordion
   ========================================================================== */
.ta-faq-section {
	padding: 60px 0;
	max-width: 820px;
	margin: 0 auto;
}

.ta-faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 30px;
}

.ta-faq-item {
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-md);
	overflow: hidden;
	background: #fff;
}

.ta-faq-question {
	width: 100%;
	text-align: left;
	padding: 18px 24px;
	font-size: 16px;
	font-weight: 600;
	color: var(--ta-navy-900);
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.ta-faq-arrow {
	font-size: 12px;
	transition: transform 0.25s ease;
}

.ta-faq-item.is-open .ta-faq-arrow {
	transform: rotate(180deg);
}

.ta-faq-answer {
	display: none;
	padding: 0 24px 20px 24px;
	font-size: 14.5px;
	color: var(--ta-navy-700);
	line-height: 1.6;
}

.ta-faq-item.is-open .ta-faq-answer {
	display: block;
}

/* ==========================================================================
   Final CTA Banner
   ========================================================================== */
.ta-final-cta {
	text-align: center;
	padding: 60px 20px;
	background: radial-gradient(circle at 50% 50%, rgba(13, 148, 136, 0.1), transparent 70%);
	border-radius: var(--ta-radius-lg);
	margin-top: 40px;
}

.ta-final-cta h2 {
	font-family: 'Outfit', sans-serif;
	font-size: 34px;
	font-weight: 800;
	color: var(--ta-navy-900);
	margin: 0 0 14px 0;
}

.ta-final-cta p {
	font-size: 17px;
	color: var(--ta-navy-700);
	max-width: 640px;
	margin: 0 auto 28px auto;
}

.ta-final-subtext {
	font-size: 13px !important;
	color: var(--ta-text-muted) !important;
	margin-top: 14px !important;
}


/* ==========================================================================
   TRANSCRIPTIONAID MODERN WEB DESIGN CONTENT ARCHITECTURE
   ========================================================================== */

.ta-content-container {
    max-width: 1140px;
    margin: 48px auto 60px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1e293b;
    line-height: 1.7;
}

.ta-content-block {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 44px;
    margin-bottom: 36px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ta-content-block:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
}

.ta-block-heading {
    font-size: 1.85rem;
    font-weight: 750;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.025em;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 14px;
}

.ta-card-heading {
    font-size: 1.35rem;
    font-weight: 650;
    color: #1e293b;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    letter-spacing: -0.015em;
}

.ta-sub-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: #334155;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.ta-prose {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 1.25rem;
}

.ta-quote-callout {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-size: 1.02rem;
    color: #1e293b;
    font-style: normal;
}

.ta-quote-callout p {
    margin: 0;
    line-height: 1.65;
}

.ta-table-responsive {
    overflow-x: auto;
    margin: 28px 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.ta-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.ta-table th {
    background: #f8fafc;
    padding: 14px 18px;
    font-weight: 650;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}

.ta-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    vertical-align: top;
    line-height: 1.6;
}

.ta-table tr:last-child td {
    border-bottom: none;
}

.ta-table tr:hover {
    background: #f8fafc;
}

.ta-list,
.ta-ordered-list {
    padding-left: 24px;
    margin-bottom: 24px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #334155;
}

.ta-list li,
.ta-ordered-list li {
    margin-bottom: 10px;
}

.ta-divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 36px 0;
}

@media (max-width: 768px) {
    .ta-content-container {
        padding: 0 16px;
        margin-top: 32px;
    }
    
    .ta-content-block {
        padding: 24px 20px;
        border-radius: 12px;
        margin-bottom: 24px;
    }
    
    .ta-block-heading {
        font-size: 1.5rem;
    }
    
    .ta-card-heading {
        font-size: 1.2rem;
    }
    
    .ta-prose {
        font-size: 1rem;
    }
}


/* ==========================================================================
   MOBILE & TABLET RESPONSIVE OPTIMIZATIONS FOR TRANSCRIPTION TOOL
   ========================================================================== */

/* Tablet Screens (max-width: 1024px) */
@media (max-width: 1024px) {
	.ta-app-container {
		padding: 0 12px;
	}
	
	.ta-card-main {
		border-radius: 12px;
	}
	
	.ta-editor-toolbar {
		padding: 12px 18px;
	}
	
	.ta-segments-container,
	.ta-transcript-body {
		padding: 18px;
		max-height: 480px;
	}
}

/* Medium Tablets & SmartPhones (max-width: 768px) */
@media (max-width: 768px) {
	.ta-app-topbar {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 14px 18px;
	}
	
	.ta-topbar-left {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}
	
	.ta-topbar-right {
		width: 100%;
		display: flex;
		justify-content: flex-start;
	}
	
	.ta-dropzone {
		padding: 36px 16px;
		margin: 14px;
	}
	
	.ta-drop-title {
		font-size: 16px;
	}
	
	.ta-drop-desc {
		font-size: 13px;
		margin-bottom: 16px;
	}
	
	.ta-demo-row,
	.ta-sample-bar {
		padding: 14px 16px;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}
	
	.ta-demo-row > span,
	.ta-sample-bar > span {
		text-align: center;
		font-size: 13px;
		margin-bottom: 4px;
	}
	
	.ta-demo-btn,
	.ta-demo-file-btn {
		width: 100%;
		justify-content: center;
		min-height: 44px;
		font-size: 13.5px;
		padding: 10px 16px;
	}
	
	/* Player Controls */
	.ta-player-container,
	.ta-player-bar {
		padding: 16px 14px;
	}
	
	.ta-waveform-wrap {
		height: 64px;
		margin-bottom: 12px;
	}
	
	.ta-player-controls {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	
	.ta-player-left {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
	}
	
	.ta-ctrl-btn {
		min-width: 44px;
		min-height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	
	.ta-time-counter {
		font-size: 12px;
		margin-left: auto;
	}
	
	.ta-player-right {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 10px;
	}
	
	/* Editor Toolbar */
	.ta-editor-toolbar {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		padding: 14px 16px;
	}
	
	.ta-toolbar-left {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	
	.ta-mode-switcher {
		width: 100%;
		display: flex;
	}
	
	.ta-mode-btn {
		flex: 1;
		text-align: center;
		min-height: 42px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	
	.ta-action-pill {
		width: 100%;
		justify-content: center;
		min-height: 42px;
	}
	
	.ta-toolbar-right {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	
	.ta-search-box,
	.ta-search-bar {
		width: 100%;
	}
	
	.ta-search-box input,
	.ta-search-bar input {
		width: 100% !important;
		min-height: 42px;
		box-sizing: border-box;
	}
	
	.ta-word-count-badge {
		align-self: flex-start;
		font-size: 12px;
	}
	
	.ta-btn-reset {
		width: 100%;
		justify-content: center;
		min-height: 42px;
	}
	
	/* Segments Area */
	.ta-segments-container,
	.ta-transcript-body {
		padding: 14px 12px;
		max-height: 420px;
	}
	
	.ta-segment-row {
		padding: 14px 12px;
		border-radius: 10px;
	}
	
	.ta-seg-meta {
		flex-wrap: wrap;
		gap: 8px;
		justify-content: space-between;
	}
	
	.ta-seg-speaker {
		font-size: 12px;
		padding: 4px 8px;
	}
	
	.ta-seg-time-badge {
		font-size: 12px;
		padding: 5px 10px;
		min-height: 32px;
	}
	
	.ta-seg-text {
		font-size: 14.5px;
		line-height: 1.55;
	}
	
	/* Footer & Exports */
	.ta-editor-footer {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 14px 16px;
	}
	
	.ta-footer-left {
		justify-content: center;
	}
	
	.ta-export-group {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		width: 100%;
	}
	
	.ta-export-btn {
		width: 100%;
		justify-content: center;
		min-height: 44px;
		font-size: 12.5px;
		padding: 8px 10px;
	}
	
	#ta-export-copy {
		grid-column: span 2;
	}
	
	/* History Section */
	.ta-history-section {
		padding: 0 4px;
	}
	
	.ta-history-section .ta-card-main {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.ta-history-table {
		min-width: 520px;
	}
}

/* Small SmartPhones (max-width: 480px) */
@media (max-width: 480px) {
	.ta-dropzone {
		padding: 26px 12px;
		margin: 10px;
	}
	
	.ta-upload-icon-pulse {
		width: 50px;
		height: 50px;
		font-size: 24px;
		margin-bottom: 10px;
	}
	
	.ta-format-pill-row {
		gap: 4px;
	}
	
	.ta-format-pill {
		padding: 2px 6px;
		font-size: 11px;
	}
	
	.ta-player-left {
		flex-wrap: wrap;
	}
	
	.ta-export-group {
		grid-template-columns: 1fr;
	}
	
	#ta-export-copy {
		grid-column: auto;
	}
}
