.orpa-waitlist-card {
	--orpa-navy: #17223b;
	--orpa-gold: #d7b35f;
	--orpa-gold-soft: #f5ead0;
	--orpa-text: #4d5668;
	position: relative;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 16px;
	margin: 24px 0 10px;
	padding: 24px;
	border: 1px solid #e7dfce;
	border-radius: 18px;
	background:
		radial-gradient(circle at 100% 0, rgba(215, 179, 95, .17), transparent 34%),
		linear-gradient(145deg, #fff 0%, #fdfbf6 100%);
	box-shadow: 0 14px 36px rgba(23, 34, 59, .08);
	overflow: hidden;
	transition: opacity .2s ease, transform .2s ease;
}

.orpa-waitlist-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, var(--orpa-gold), #b98b2d);
}

.orpa-waitlist-card.is-hidden {
	display: none !important;
}

.orpa-waitlist-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: var(--orpa-navy);
	box-shadow: 0 8px 18px rgba(23, 34, 59, .18);
}

.orpa-waitlist-icon svg {
	width: 27px;
	height: 27px;
	fill: var(--orpa-gold);
}

.orpa-waitlist-eyebrow {
	display: block;
	margin: 0 0 5px;
	color: #9b7426;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
}

.orpa-waitlist-card h3 {
	margin: 0 0 7px;
	color: var(--orpa-navy);
	font-size: clamp(20px, 2.4vw, 26px);
	line-height: 1.25;
}

.orpa-waitlist-message {
	margin: 0 0 17px;
	color: var(--orpa-text);
	font-size: 14px;
	line-height: 1.65;
}

.orpa-waitlist-fields {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	gap: 10px;
}

.orpa-waitlist-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
}

.orpa-waitlist-field > span {
	color: var(--orpa-navy);
	font-size: 12px;
	font-weight: 700;
}

.orpa-waitlist-field small {
	font-weight: 500;
	color: #7c8492;
}

.orpa-waitlist-field input {
	box-sizing: border-box;
	width: 100%;
	min-height: 46px;
	padding: 10px 13px;
	border: 1px solid #d9d7d0;
	border-radius: 11px;
	background: #fff;
	color: var(--orpa-navy);
	font-size: 14px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.orpa-waitlist-field input:focus {
	border-color: var(--orpa-gold);
	box-shadow: 0 0 0 3px rgba(215, 179, 95, .2);
}

.orpa-waitlist-button.button,
.orpa-waitlist-button.button.alt {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	min-height: 48px;
	margin-top: 11px;
	padding: 11px 20px;
	border: 0;
	border-radius: 12px;
	background: var(--orpa-navy);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .01em;
	box-shadow: 0 8px 20px rgba(23, 34, 59, .16);
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.orpa-waitlist-button.button:hover,
.orpa-waitlist-button.button.alt:hover {
	background: #223252;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 11px 24px rgba(23, 34, 59, .2);
}

.orpa-waitlist-button[disabled] {
	cursor: wait;
	opacity: .72;
	transform: none !important;
}

.orpa-waitlist-arrow {
	color: var(--orpa-gold);
	font-size: 18px;
	line-height: 1;
}

.orpa-waitlist-feedback {
	display: none;
	margin-top: 12px;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.orpa-waitlist-feedback.is-success {
	display: block;
	background: #eaf8ef;
	color: #166534;
	border: 1px solid #bde7ca;
}

.orpa-waitlist-feedback.is-error {
	display: block;
	background: #fff0f0;
	color: #9f1d1d;
	border: 1px solid #f0c3c3;
}

.orpa-waitlist-fineprint,
.orpa-waitlist-count {
	margin: 11px 0 0;
	color: #747c89;
	font-size: 11px;
	line-height: 1.5;
}

.orpa-waitlist-lock {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	border-radius: 50%;
	background: var(--orpa-gold-soft);
	color: #80601f;
	font-size: 10px;
	font-weight: 900;
}

.orpa-waitlist-count {
	color: #80601f;
	font-weight: 700;
}

.orpa-waitlist-count.is-hidden {
	display: none;
}

.orpa-waitlist-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

@media (max-width: 600px) {
	.orpa-waitlist-card {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 12px;
		padding: 19px 16px 18px 19px;
		border-radius: 15px;
	}

	.orpa-waitlist-icon {
		width: 42px;
		height: 42px;
		border-radius: 13px;
	}

	.orpa-waitlist-icon svg {
		width: 22px;
		height: 22px;
	}

	.orpa-waitlist-fields {
		grid-template-columns: 1fr;
	}
}
