/* ============================================================
   Regenerve Nerve Terrain Assessment — widget styles
   One concept per screen. 72px touch targets. Absolute contrast.
   ============================================================ */

.rg-assessment {
	max-width: 820px;
	margin: 0 auto;
}

.rg-card {
	background: #FFFFFF;
	border: 4px solid #000000;
	border-radius: 12px;
	padding: 40px 32px;
	margin: 24px 0;
}

@media (max-width: 600px) {
	.rg-card { padding: 28px 18px; }
}

.rg-progress {
	font-size: 22px;
	font-weight: 700;
	color: #00753A;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 16px;
}

.rg-title {
	font-size: 32px;
	font-weight: 700;
	color: #000000;
	line-height: 1.3;
	margin: 0 0 24px;
}

.rg-subtitle {
	font-size: 26px;
	font-weight: 700;
	color: #000000;
	margin: 28px 0 10px;
}

.rg-lead, .rg-body {
	font-size: 22px;
	line-height: 1.55;
	color: #000000;
	margin: 0 0 24px;
}

.rg-focus {
	font-size: 22px;
	font-weight: 700;
	color: #00753A;
	margin: 0 0 8px;
}

/* Answer buttons: massive, block-style, obvious */
.rg-option {
	display: block;
	width: 100%;
	min-height: 72px;
	margin: 0 0 18px;
	padding: 20px 24px;
	background: #FFFFFF;
	color: #000000;
	border: 4px solid #000000;
	border-radius: 10px;
	font-family: Arial, Roboto, Helvetica, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	text-align: left;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
}

.rg-option:hover {
	background: #F2F9E5;
	border-color: #00753A;
}

.rg-option.rg-selected {
	background: #F2F9E5;
	border-color: #00753A;
	box-shadow: inset 0 0 0 3px #00753A;
}

.rg-letter {
	display: inline-block;
	min-width: 44px;
	height: 44px;
	margin-right: 12px;
	background: #000000;
	color: #FFFFFF;
	border-radius: 8px;
	font-size: 24px;
	text-align: center;
	line-height: 44px;
}

/* Primary action button */
.rg-start {
	background: #00753A;
	color: #FFFFFF;
	border-color: #00753A;
	text-align: center;
	font-size: 24px;
}
.rg-start:hover {
	background: #000000;
	border-color: #000000;
	color: #FFFFFF;
}
.rg-start:disabled {
	background: #333333;
	border-color: #333333;
	cursor: wait;
}

/* Back button: clearly secondary but still large */
.rg-back {
	display: inline-block;
	min-height: 60px;
	margin-top: 8px;
	padding: 14px 24px;
	background: #FFFFFF;
	color: #000000;
	border: 3px solid #000000;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
}
.rg-back:hover { background: #F0F0F0; }

/* Email form: permanent label above, huge input */
.rg-label {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: #000000;
	margin: 0 0 10px;
}

.rg-input {
	display: block;
	width: 100%;
	min-height: 64px;
	padding: 14px 18px;
	font-size: 24px;
	color: #000000;
	background: #FFFFFF;
	border: 4px solid #000000;
	border-radius: 8px;
	margin: 0 0 18px;
	box-sizing: border-box;
}

.rg-error {
	font-size: 20px;
	font-weight: 700;
	color: #B71C1C;
	margin: 0 0 16px;
	min-height: 0;
}

.rg-note {
	font-size: 18px;
	color: #000000;
	margin: 20px 0 0;
}

/* Honeypot: hidden from humans, visible to bots */
.rg-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Focus visibility */
.rg-option:focus-visible,
.rg-back:focus-visible,
.rg-input:focus-visible {
	outline: 4px solid #0D47A1;
	outline-offset: 3px;
}
