/* DilloVerse Auditie — dark theatre theme.
 *
 * Design language: a quiet, well-lit playbill. One accent (terminal green) used
 * only to POINT — meter, focus, checked state, primary action. Copper appears
 * only as the ink of the monospace "stage directions". Depth comes from surface
 * layering and 1px lines, never from glow. Motion is one easing vocabulary and
 * a small duration ramp; nothing loops forever, one thing moves at a time.
 * System fonts only; monospace strictly for stage-directions.
 */

.dv-auditie {
	/* Spacing — 8px base ramp */
	--sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
	--sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem; --sp-9: 6rem;

	/* Type — 1.2 minor third */
	--fs-xs: 0.75rem; --fs-sm: 0.875rem; --fs-base: 1rem; --fs-md: 1.125rem;
	--fs-lg: 1.375rem; --fs-xl: 1.75rem; --fs-2xl: clamp(2rem, 6vw, 2.75rem);
	--lh-tight: 1.2; --lh-body: 1.6;

	/* Radius — two steps only */
	--r-sm: 8px; --r-pill: 999px;

	/* Colour — one accent, strict roles */
	--bg: #0a0f0a;
	--surface: #0e140e;
	--surface-2: #121a12;
	--line: #202b20;
	--line-strong: #30402f;
	--text: #eef0ea;
	--text-dim: #9aa79a;
	--text-mute: #5c675c;
	--accent: #39ff5a;
	--accent-press: #2ee04e;
	--accent-wash: rgba(57, 255, 90, 0.08);
	--stage: #c98a4b;        /* copper: ink for monospace stage-directions ONLY */
	--error: #ff7a7a;

	/* Motion — two curves, one ramp */
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
	--dur-1: 120ms; --dur-2: 200ms; --dur-3: 320ms; --dur-4: 480ms; --dur-5: 720ms;
	--stagger: 45ms;
	--shift-sm: 8px; --shift-md: 24px;
	--ring: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);

	--dv-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--dv-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

	color-scheme: dark;
	font-family: var(--dv-sans);
	color: var(--text);
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 18px;
	max-width: 680px;
	margin: 0 auto;
	padding: clamp(2.25rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem) clamp(2.5rem, 6vw, 3.5rem);
	line-height: var(--lh-body);
	font-size: var(--fs-md);
	-webkit-font-smoothing: antialiased;
	position: relative;
	box-sizing: border-box;
}
.dv-auditie *,
.dv-auditie *::before,
.dv-auditie *::after { box-sizing: border-box; }

.dv-auditie [hidden] { display: none !important; }

/* Shared stage-direction ink: monospace, tracked-out, copper */
.dv-meter-name,
.dv-step-count,
.dv-callout-label {
	font-family: var(--dv-mono);
	font-size: var(--fs-xs);
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--stage);
}

/* Fullscreen template: one spotlight cone from above + edge vignette */
body.dv-fullscreen {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(150% 100% at 50% 0%, transparent 55%, rgba(0, 0, 0, 0.55)),
		radial-gradient(120% 60% at 50% -12%, rgba(57, 255, 90, 0.05), transparent 60%),
		#0a0f0a;
}
/* On the fullscreen template the form floats as a panel in the spotlight */
body.dv-fullscreen { padding: clamp(1rem, 4vw, 3rem) 1rem; }
body.dv-fullscreen .dv-auditie {
	background: rgba(13, 19, 13, 0.55);
	border-color: var(--line-strong);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

/* Gentle one-time load-in for the whole form */
.dv-auditie { animation: dv-load-in var(--dur-5) var(--ease-out) both; }
@keyframes dv-load-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: none; }
}

/* ---------- Header ---------- */

.dv-header { margin-bottom: var(--sp-7); }

/* Playbill kicker above the title */
.dv-kicker {
	font-family: var(--dv-mono);
	font-size: var(--fs-xs);
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--stage);
	margin: 0 0 var(--sp-4);
}

.dv-title {
	font-family: var(--dv-mono);
	font-size: var(--fs-2xl);
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--accent);
	margin: 0 0 var(--sp-5);
	min-height: 1.2em;
	line-height: var(--lh-tight);
}
/* A slim marquee caret being set — not a terminal underscore */
.dv-title .dv-cursor {
	display: inline-block;
	width: 0.08em;
	height: 1em;
	margin-left: 0.12em;
	background: var(--accent);
	vertical-align: -0.1em;
	animation: dv-blink 1.1s steps(1) infinite;
}
@keyframes dv-blink { 50% { opacity: 0; } }

.dv-intro {
	color: var(--text-dim);
	max-width: 52ch;
	margin: 0 0 var(--sp-3);
	font-size: var(--fs-base);
}
.dv-intro:first-of-type { color: var(--text); font-size: var(--fs-md); }

/* ---------- Badges (Java Edition etc.) ---------- */

.dv-badges {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	margin: var(--sp-5) 0 0;
}
.dv-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-family: var(--dv-mono);
	font-size: var(--fs-xs);
	letter-spacing: 0.08em;
	color: var(--text-dim);
	background: var(--surface);
	border: 1px solid var(--line-strong);
	border-radius: var(--r-pill);
	padding: 0.4rem 0.85rem;
}
.dv-badge-java { color: var(--text); border-color: rgba(57, 255, 90, 0.4); }
.dv-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	flex: 0 0 auto;
}

/* ---------- Trailer (click-to-load YouTube facade) ---------- */

.dv-trailer {
	position: relative;
	aspect-ratio: 16 / 9;
	margin: var(--sp-6) 0 0;
	border: 1px solid var(--line-strong);
	border-radius: 12px;
	overflow: hidden;
	background:
		radial-gradient(120% 120% at 50% 32%, rgba(57, 255, 90, 0.06), transparent 60%),
		#060906;
}
.dv-trailer iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.dv-trailer-glow { display: none; }
.dv-trailer-play {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--sp-4);
	background: transparent;
	border: 0;
	cursor: pointer;
	color: var(--text);
}
.dv-trailer-btn {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: var(--accent);
	display: grid;
	place-items: center;
	transition: transform var(--dur-2) var(--ease-out);
}
.dv-trailer-tri {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 17px;
	border-color: transparent transparent transparent #06210c;
	margin-left: 4px;
}
.dv-trailer-play:hover .dv-trailer-btn,
.dv-trailer-play:focus-visible .dv-trailer-btn { transform: scale(1.08); }
.dv-trailer-play:focus-visible { outline: none; }
.dv-trailer-play:focus-visible .dv-trailer-btn { box-shadow: 0 0 0 3px var(--bg), 0 0 0 6px var(--accent); }
.dv-trailer-label {
	font-family: var(--dv-mono);
	font-size: var(--fs-xs);
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--text-dim);
}

/* Hide the hero once the applicant is underway (keeps later steps focused).
   Instant, not an animated collapse — the step-slide covers the change and we
   avoid animating layout properties. */
.dv-started .dv-kicker,
.dv-started .dv-intro,
.dv-started .dv-badges,
.dv-started .dv-trailer { display: none; }

/* ---------- Applausmeter (segmented VU meter) ---------- */

.dv-meter { margin-bottom: var(--sp-7); }
.dv-meter-labels {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: var(--sp-3);
}
.dv-meter-step {
	font-family: var(--dv-mono);
	font-size: var(--fs-xs);
	letter-spacing: 0.16em;
	color: var(--text-dim);
}

.dv-meter-track {
	position: relative;
	height: 8px;
	background: var(--surface-2);
	border-radius: var(--r-pill);
	overflow: hidden;
	transform-origin: center;
}
.dv-meter-fill {
	height: 100%;
	width: 100%;
	transform: scaleX(var(--dv-progress, 0));
	transform-origin: left center;
	background: var(--accent);
	border-radius: var(--r-pill);
	transition: transform var(--dur-4) var(--ease-in-out);
}
/* Punch N segment gaps into the bar so it reads as an applause/VU meter */
.dv-meter-track::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: repeating-linear-gradient(
		90deg,
		transparent 0 calc(100% / var(--dv-steps, 6) - 2px),
		var(--bg) calc(100% / var(--dv-steps, 6) - 2px) calc(100% / var(--dv-steps, 6))
	);
}
/* One vertical "beat" when a section completes — a single thump, never a loop */
.dv-meter-track.just-filled { animation: dv-meter-tick var(--dur-2) var(--ease-out); }
@keyframes dv-meter-tick {
	0% { transform: scaleY(1); }
	40% { transform: scaleY(1.85); }
	100% { transform: scaleY(1); }
}

/* ---------- Steps ---------- */

/* Clip the horizontal slide of step transitions so it never causes a scrollbar. */
.dv-form { position: relative; overflow-x: clip; }

.dv-step { display: none; border: 0; margin: 0; padding: 0; min-width: 0; }
.dv-step.is-active { display: block; }

/* Directional scene change: forward enters from the right, back from the left */
.dv-step.dv-entering { animation: dv-step-in var(--dur-3) var(--ease-out) both; }
@keyframes dv-step-in {
	from { opacity: 0; transform: translateX(calc(var(--dir, 1) * var(--shift-md))); }
	to { opacity: 1; transform: none; }
}

/* Fields resolve after the scene lands: a short, capped cascade */
.dv-step.dv-entering > .dv-field,
.dv-step.dv-entering > .dv-callout {
	animation: dv-field-in var(--dur-3) var(--ease-out) backwards;
}
.dv-step.dv-entering > :nth-child(2) { animation-delay: 60ms; }
.dv-step.dv-entering > :nth-child(3) { animation-delay: 100ms; }
.dv-step.dv-entering > :nth-child(4) { animation-delay: 140ms; }
.dv-step.dv-entering > :nth-child(5) { animation-delay: 180ms; }
.dv-step.dv-entering > :nth-child(n+6) { animation-delay: 220ms; }
@keyframes dv-field-in {
	from { opacity: 0; transform: translateY(var(--shift-sm)); }
	to { opacity: 1; transform: none; }
}

.dv-step-title {
	display: block;
	font-size: var(--fs-lg);
	font-weight: 600;
	line-height: var(--lh-tight);
	letter-spacing: -0.01em;
	margin-bottom: var(--sp-2);
	color: var(--text);
	padding: 0;
	outline: none;
}
.dv-step-count { display: block; margin-bottom: var(--sp-2); }

/* A quoted stage-whisper, not an accent line */
.dv-step-copy {
	color: var(--text-dim);
	font-style: italic;
	font-size: var(--fs-base);
	margin: 0 0 var(--sp-7);
	padding-left: var(--sp-4);
	border-left: 2px solid var(--line-strong);
}

/* ---------- Fields ---------- */

.dv-field { margin-bottom: var(--sp-6); position: relative; }

.dv-label {
	display: block;
	font-weight: 500;
	font-size: var(--fs-base);
	margin-bottom: var(--sp-2);
}
.dv-req { color: var(--accent); font-weight: 400; }
.dv-opt { color: var(--text-dim); font-size: 0.8em; font-weight: 400; }

.dv-note {
	color: var(--text-dim);
	font-size: var(--fs-sm);
	margin: var(--sp-2) 0 0;
}

.dv-auditie input[type="text"],
.dv-auditie input[type="email"],
.dv-auditie input[type="url"],
.dv-auditie input[type="number"],
.dv-auditie select,
.dv-auditie textarea {
	width: 100%;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	color: var(--text);
	font: inherit;
	font-size: var(--fs-base);
	padding: var(--sp-3) var(--sp-4);
	min-height: 44px;
	transition: border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}
.dv-auditie input::placeholder,
.dv-auditie textarea::placeholder { color: var(--text-mute); }

.dv-auditie select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239aa79a' stroke-width='1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right var(--sp-4) center;
	padding-right: var(--sp-7);
	cursor: pointer;
}
.dv-auditie select option { background-color: #101710; color: #eef0ea; }
.dv-auditie select:invalid { color: var(--text-dim); }

.dv-auditie textarea { resize: vertical; min-height: 6.5rem; line-height: var(--lh-body); }

.dv-auditie input:hover:not(:focus),
.dv-auditie select:hover:not(:focus),
.dv-auditie textarea:hover:not(:focus) { border-color: var(--line-strong); }

.dv-auditie input:focus,
.dv-auditie select:focus,
.dv-auditie textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: var(--ring);
}
.dv-auditie .is-invalid { border-color: var(--error); }
.dv-auditie .is-invalid:focus { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--error); }

/* Length meter: progress toward a minimum + live character count */
.dv-lenmeter {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	margin-top: var(--sp-2);
}
.dv-lenmeter-track {
	flex: 1;
	height: 3px;
	background: var(--surface-2);
	border-radius: var(--r-pill);
	overflow: hidden;
}
.dv-lenmeter-fill {
	height: 100%;
	width: 100%;
	transform: scaleX(var(--dv-progress, 0));
	transform-origin: left center;
	background: var(--line-strong);
	border-radius: var(--r-pill);
	transition: transform var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.dv-lenmeter.is-met .dv-lenmeter-fill { background: var(--accent); }
.dv-lenmeter-status {
	flex: 0 0 auto;
	font-family: var(--dv-mono);
	font-size: var(--fs-xs);
	color: var(--text-dim);
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
.dv-lenmeter.is-met .dv-lenmeter-status { color: var(--accent); }
.dv-lenmeter.is-full .dv-lenmeter-status { color: var(--stage); }

/* Draft-restored banner */
.dv-draft-note {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-2) var(--sp-4);
	margin-bottom: var(--sp-6);
	padding: var(--sp-3) var(--sp-4);
	border: 1px solid var(--line-strong);
	border-radius: var(--r-sm);
	background: var(--surface);
	font-size: var(--fs-sm);
	color: var(--text-dim);
}
.dv-draft-clear {
	font: inherit;
	font-size: var(--fs-sm);
	color: var(--accent);
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.dv-draft-clear:hover { color: var(--accent-press); }

/* ---------- Choice pills (radio + multi-select) ---------- */

.dv-radio-group { border: 0; padding: 0; margin: 0; min-width: 0; }
.dv-radio-options { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-1); }
.dv-radio {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	background: transparent;
	border: 1px solid var(--line-strong);
	border-radius: var(--r-pill);
	padding: var(--sp-2) var(--sp-4);
	font-size: var(--fs-sm);
	color: var(--text-dim);
	cursor: pointer;
	min-height: 44px;
	user-select: none;
	transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out);
}
.dv-radio input { position: absolute; opacity: 0; pointer-events: none; }
.dv-radio:hover { border-color: rgba(57, 255, 90, 0.4); color: var(--text); }
/* Checked state — driven by both :has() and a JS-toggled .is-checked class so
   it works even in engines without :has() support. */
.dv-radio:has(input:checked),
.dv-radio.is-checked {
	border-color: var(--accent);
	background: var(--accent-wash);
	color: var(--text);
}
.dv-radio:has(input:focus-visible) { box-shadow: var(--ring); }
/* Multi-select checked marker: a small filled dot, one visual language */
.dv-radio:has(input[type="checkbox"]:checked)::before,
.dv-radio--multi.is-checked::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	flex: 0 0 auto;
	animation: dv-dot-in var(--dur-2) var(--ease-out);
}
@keyframes dv-dot-in { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Consent checkboxes ---------- */

.dv-check {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
	cursor: pointer;
	padding: var(--sp-1) 0;
}
.dv-check input { position: absolute; opacity: 0; pointer-events: none; }
.dv-check-box {
	flex: 0 0 auto;
	width: 1.3rem;
	height: 1.3rem;
	margin-top: 0.15rem;
	border: 1px solid var(--line-strong);
	border-radius: var(--r-sm);
	background: var(--surface);
	position: relative;
	transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.dv-check input:checked + .dv-check-box {
	border-color: var(--accent);
	background: var(--accent-wash);
}
.dv-check input:checked + .dv-check-box::after {
	content: "";
	position: absolute;
	left: 0.42rem;
	top: 0.16rem;
	width: 0.3rem;
	height: 0.62rem;
	border: solid var(--accent);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	/* stroke wipes on left-to-right, like being drawn */
	animation: dv-tick-draw var(--dur-2) var(--ease-out);
}
@keyframes dv-tick-draw {
	from { clip-path: inset(0 100% 0 0); }
	to { clip-path: inset(0 0 0 0); }
}
.dv-check input:focus-visible + .dv-check-box { box-shadow: var(--ring); }
.dv-check-label { font-size: var(--fs-base); }

/* ---------- Callout (director's note) ---------- */

.dv-callout {
	border: 1px solid var(--line-strong);
	border-radius: var(--r-sm);
	background: var(--surface);
	padding: var(--sp-4) var(--sp-5);
	margin: 0 0 var(--sp-6);
}
.dv-callout-label { display: block; margin-bottom: var(--sp-2); }
.dv-callout p { margin: 0; font-size: var(--fs-base); color: var(--text); line-height: var(--lh-body); }

/* ---------- Twitch block ---------- */

.dv-btn-twitch { background: #9146ff; color: #fff; border: 0; }
.dv-btn-twitch:hover { background: #a86bff; }
.dv-twitch-verified {
	display: flex;
	gap: var(--sp-4);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	padding: var(--sp-5);
}
.dv-verified-badge {
	flex: 0 0 auto;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: var(--accent-wash);
	color: var(--accent);
	display: grid;
	place-items: center;
	font-weight: 600;
}
.dv-twitch-data .dv-label { margin-bottom: var(--sp-1); color: var(--text-dim); font-size: var(--fs-xs); }
.dv-twitch-value {
	font-family: var(--dv-mono);
	font-size: var(--fs-md);
	margin: 0 0 var(--sp-4);
	color: var(--text);
}
.dv-twitch-data a { color: var(--accent); }

/* ---------- Errors ---------- */

.dv-field-error { color: var(--error); font-size: var(--fs-sm); margin: var(--sp-2) 0 0; }
.dv-form-error {
	color: var(--error);
	border: 1px solid rgba(255, 122, 122, 0.35);
	border-radius: var(--r-sm);
	padding: var(--sp-3) var(--sp-4);
	margin-bottom: var(--sp-5);
	font-size: var(--fs-base);
}

/* Honeypot */
.dv-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---------- Navigation ---------- */

.dv-nav {
	display: flex;
	justify-content: space-between;
	gap: var(--sp-4);
	margin-top: var(--sp-7);
	padding-top: var(--sp-6);
	border-top: 1px solid var(--line);
}
.dv-nav > :only-child,
.dv-nav [data-dv-next]:first-child,
.dv-nav [data-dv-submit]:first-child { margin-left: auto; }

.dv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font: inherit;
	font-size: var(--fs-base);
	font-weight: 600;
	border-radius: var(--r-pill);
	padding: var(--sp-3) var(--sp-6);
	min-height: 48px;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out),
		border-color var(--dur-1) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.dv-btn-primary { background: var(--accent); color: #06210c; border: 0; }
.dv-btn-primary:hover { background: #5cff78; transform: translateY(-1px); }
.dv-btn-primary:active { background: var(--accent-press); transform: translateY(0); transition-duration: var(--dur-1); }
.dv-btn-primary[disabled] { opacity: 0.6; cursor: wait; transform: none; animation: dv-working 1.2s var(--ease-in-out) infinite; }
@keyframes dv-working { 50% { opacity: 0.85; } }
.dv-btn-ghost { background: transparent; color: var(--text-dim); border: 1px solid var(--line-strong); }
.dv-btn-ghost:hover { color: var(--text); border-color: rgba(57, 255, 90, 0.4); transform: translateY(-1px); }

/* ---------- Confirmation: blackout → eyes → typed copy ---------- */

.dv-confirm {
	position: fixed;
	inset: 0;
	background: #000;
	z-index: 100;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: var(--sp-6);
	text-align: center;
	opacity: 0;
	transition: opacity var(--dur-5) var(--ease-in-out);
}
.dv-confirm.is-visible { opacity: 1; }

.dv-eyes { display: flex; gap: 3.25rem; margin-bottom: var(--sp-7); opacity: 0; }
.dv-eyes.is-on { animation: dv-eyes-on var(--dur-3) var(--ease-out) forwards; }
@keyframes dv-eyes-on {
	0% { opacity: 0; }
	55% { opacity: 1; }
	70% { opacity: 0.3; } /* a single blink as they open */
	100% { opacity: 1; }
}
.dv-eye {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--accent, #39ff5a);
	transform: scaleY(0.1);
}
.dv-eyes.is-on .dv-eye {
	box-shadow: 0 0 24px rgba(57, 255, 90, 0.6); /* the one earned glow: spotlight eyes in a blackout */
	animation: dv-eye-open var(--dur-3) var(--ease-out) forwards;
}
@keyframes dv-eye-open { to { transform: scaleY(1); } }

.dv-confirm-text { max-width: 46ch; opacity: 0; transition: opacity var(--dur-3) var(--ease-out); }
.dv-confirm-text.is-visible { opacity: 1; }
.dv-confirm-title {
	font-family: var(--dv-mono, monospace);
	color: var(--accent, #39ff5a);
	font-size: clamp(1.4rem, 6vw, 2.2rem);
	font-weight: 600;
	letter-spacing: 0.14em;
	margin: 0 0 var(--sp-5);
	min-height: 1.3em;
}
.dv-confirm-body { color: var(--text, #eef0ea); margin: 0 0 var(--sp-4); line-height: var(--lh-body); }
.dv-confirm-contact { color: var(--text-dim, #9aa79a); font-size: var(--fs-base); margin: 0 0 var(--sp-5); line-height: var(--lh-body); }
.dv-confirm-sting { color: var(--stage, #c98a4b); font-family: var(--dv-mono, monospace); font-size: var(--fs-sm); }

/* ---------- Reduced motion: instant, still, fully legible ---------- */

@media (prefers-reduced-motion: reduce) {
	.dv-auditie {
		--dur-1: 1ms; --dur-2: 1ms; --dur-3: 1ms; --dur-4: 1ms; --dur-5: 1ms;
		--stagger: 0ms;
	}
	.dv-auditie *,
	.dv-auditie *::before,
	.dv-auditie *::after,
	.dv-confirm,
	.dv-confirm * {
		animation: none !important;
		transition: none !important;
	}
	.dv-title .dv-cursor { display: none; }
	.dv-eyes, .dv-eyes.is-on { opacity: 1; }
	.dv-eye, .dv-eyes.is-on .dv-eye { transform: none; box-shadow: 0 0 24px rgba(57, 255, 90, 0.6); }
	.dv-confirm, .dv-confirm-text { opacity: 1; }
	.dv-step.dv-entering { transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 540px) {
	.dv-auditie { font-size: var(--fs-base); padding-bottom: var(--sp-8); }
	.dv-nav { flex-direction: column-reverse; }
	.dv-nav .dv-btn { width: 100%; }
	.dv-nav > :only-child,
	.dv-nav [data-dv-next]:first-child,
	.dv-nav [data-dv-submit]:first-child { margin-left: 0; }
	.dv-eyes { gap: 2.25rem; }
}
