.esl-wizard {
	max-width: 640px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.08);
	padding: 32px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #222;
}

.esl-progress {
	height: 8px;
	background: #eef0f4;
	border-radius: 8px;
	margin-bottom: 24px;
	overflow: hidden;
}

.esl-progress-bar {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #6a5af9, #33c6b5);
	transition: width 0.4s ease;
}

.esl-step {
	display: none;
}

.esl-step.esl-active {
	display: block;
	animation: esl-fade-in 0.35s ease;
}

@keyframes esl-fade-in {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

.esl-wizard h2 {
	margin-top: 0;
	font-size: 22px;
}

.esl-field {
	margin-bottom: 14px;
}

.esl-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 14px;
}

.esl-field input,
.esl-wizard textarea,
.esl-wizard input[type="text"],
.esl-wizard input[type="email"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #dcdfe6;
	border-radius: 8px;
	font-size: 15px;
	box-sizing: border-box;
}

.esl-wizard textarea {
	resize: vertical;
	margin-bottom: 12px;
}

.esl-btn {
	background: #6a5af9;
	color: #fff;
	border: none;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 6px;
	margin-right: 8px;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.esl-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.esl-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.esl-launch-btn {
	display: inline-block;
	text-decoration: none;
	font-size: 17px;
	padding: 14px 32px;
}

.esl-picture-wrap img {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 12px;
}

.esl-prompt {
	background: #f7f6ff;
	border-left: 4px solid #6a5af9;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 15px;
}

.esl-note {
	font-size: 13px;
	color: #777;
}

.esl-feedback {
	background: #f2fbf8;
	border: 1px solid #d3f0e8;
	border-radius: 10px;
	padding: 16px;
	margin-top: 14px;
}

.esl-feedback h4 {
	margin: 0 0 6px 0;
}

.esl-feedback ul {
	margin: 8px 0 0 18px;
}

.esl-transcript {
	background: #fafafa;
	border: 1px dashed #ccc;
	border-radius: 8px;
	padding: 10px 12px;
	margin: 10px 0;
	min-height: 20px;
	font-style: italic;
}

.esl-results {
	text-align: center;
	padding: 10px 0;
}

.esl-results .esl-score {
	font-size: 48px;
	font-weight: 700;
	color: #6a5af9;
	margin: 10px 0;
}

.esl-results .esl-tier {
	display: inline-block;
	background: #eef0ff;
	color: #6a5af9;
	padding: 6px 16px;
	border-radius: 999px;
	font-weight: 600;
	margin-bottom: 16px;
}

.esl-cta {
	margin-top: 24px;
	padding: 20px;
	background: linear-gradient(135deg, #6a5af9, #33c6b5);
	border-radius: 14px;
	color: #fff;
}

.esl-cta a {
	display: inline-block;
	margin-top: 10px;
	background: #fff;
	color: #333;
	padding: 10px 20px;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
}

.esl-recording {
	color: #e63946;
	font-weight: 600;
}

@media (max-width: 480px) {
	.esl-wizard { padding: 20px; border-radius: 0; }
	.esl-results .esl-score { font-size: 36px; }
}
