:root {
	--rcnl-bg: #070707;
	--rcnl-panel: #111111;
	--rcnl-text: #f7f2e8;
	--rcnl-muted: #aaa49a;
	--rcnl-gold: #e4b95f;
	--rcnl-gold-light: #f7dc98;
	--rcnl-line: rgba(255,255,255,.14);
}

.rcnl,
.rcnl * {
	box-sizing: border-box;
}

.rcnl {
	width: 100vw;
	max-width: 100vw;
	min-height: 82vh;
	margin-left: calc(50% - 50vw);
	padding: 72px 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 12%, rgba(228,185,95,.13), transparent 27%),
		radial-gradient(circle at 90% 86%, rgba(228,185,95,.08), transparent 30%),
		#070707;
	color: var(--rcnl-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.55;
}

.rcnl-shell {
	width: min(1160px, calc(100% - 36px));
	margin: 0 auto;
}

.rcnl-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(450px, .9fr);
	min-height: 690px;
	overflow: hidden;
	border: 1px solid var(--rcnl-line);
	border-radius: 32px;
	background: linear-gradient(145deg, #151515, #0d0d0d);
	box-shadow: 0 34px 110px rgba(0,0,0,.52);
}

.rcnl-art {
	position: relative;
	min-height: 590px;
	background:
		linear-gradient(145deg, rgba(228,185,95,.17), transparent),
		#090909;
}

.rcnl-art::after {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background: linear-gradient(90deg, transparent 65%, rgba(13,13,13,.95));
}

.rcnl-art img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.rcnl-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(34px, 6vw, 76px);
}

.rcnl-kicker {
	margin: 0 0 18px;
	color: var(--rcnl-gold-light);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .21em;
	text-transform: uppercase;
}

.rcnl h1,
.rcnl p {
	margin-top: 0;
}

.rcnl h1 {
	margin-bottom: 20px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(48px, 5.7vw, 78px);
	font-weight: 500;
	line-height: .97;
	letter-spacing: -.05em;
}

.rcnl-intro {
	margin-bottom: 30px;
	color: #cbc5bb;
	font-size: 17px;
}

.rcnl-form {
	display: grid;
	gap: 18px;
}

.rcnl-field label {
	display: block;
	margin-bottom: 8px;
	color: #eee8de;
	font-size: 13px;
	font-weight: 800;
}

.rcnl-field input {
	width: 100%;
	min-height: 55px;
	border: 1px solid var(--rcnl-line);
	border-radius: 14px;
	outline: none;
	background: #090909;
	color: #fff;
	padding: 12px 15px;
	font: inherit;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.rcnl-field input:focus {
	border-color: var(--rcnl-gold);
	box-shadow: 0 0 0 3px rgba(228,185,95,.12);
}

.rcnl-check {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 11px;
	align-items: start;
	color: var(--rcnl-muted);
	font-size: 13px;
	cursor: pointer;
}

.rcnl-check input {
	width: 17px;
	height: 17px;
	margin-top: 2px;
	accent-color: var(--rcnl-gold);
}

.rcnl-check a {
	color: var(--rcnl-gold-light);
	font-weight: 800;
}

.rcnl-btn {
	min-height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--rcnl-gold);
	color: #111 !important;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease;
}

.rcnl-btn:hover,
.rcnl-btn:focus-visible {
	transform: translateY(-2px);
	background: var(--rcnl-gold-light);
}

.rcnl-btn--full {
	width: 100%;
}

.rcnl-small {
	margin: 18px 0 0;
	color: #817b72;
	font-size: 12px;
	text-align: center;
}

.rcnl-message {
	margin-bottom: 20px;
	padding: 14px 16px;
	border: 1px solid rgba(255,123,123,.42);
	border-radius: 12px;
	background: rgba(255,90,90,.08);
	color: #ffd3d3;
	font-size: 14px;
}

.rcnl-success > span {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	margin-bottom: 26px;
	border-radius: 50%;
	background: var(--rcnl-gold);
	color: #111;
	font-size: 28px;
	font-weight: 900;
}

.rcnl-success p {
	margin-bottom: 30px;
	color: var(--rcnl-muted);
	font-size: 17px;
}

.rcnl-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 900px) {
	.rcnl-card {
		grid-template-columns: 1fr;
	}

	.rcnl-art {
		min-height: 430px;
	}

	.rcnl-art::after {
		background: linear-gradient(0deg, rgba(13,13,13,.96), transparent 48%);
	}
}

@media (max-width: 620px) {
	.rcnl {
		padding: 24px 0;
		margin-left: calc(50% - 50vw) !important;
	}

	.rcnl-shell {
		width: calc(100% - 20px);
	}

	.rcnl-card {
		border-radius: 22px;
	}

	.rcnl-art {
		min-height: 290px;
	}

	.rcnl-panel {
		padding: 31px 20px 36px;
	}

	.rcnl h1 {
		font-size: clamp(46px, 14vw, 65px);
		overflow-wrap: anywhere;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rcnl *,
	.rcnl *::before,
	.rcnl *::after {
		transition-duration: .01ms !important;
	}
}
