:root {
	--hvf-ink: #111820;
	--hvf-ink-2: #18242b;
	--hvf-gold: #f8a010;
	--hvf-gold-2: #ffc44d;
	--hvf-cream: #fff8ed;
	--hvf-teal: #10bfb1;
	--hvf-border: rgba(17, 24, 32, 0.14);
}

.hiphverse-form-shell {
	width: min(980px, calc(100% - 32px));
	margin: 36px auto;
	padding: clamp(24px, 4vw, 52px);
	border: 1px solid var(--hvf-border);
	border-radius: 28px;
	background: linear-gradient(145deg, #ffffff 0%, var(--hvf-cream) 100%);
	box-shadow: 0 30px 80px rgba(17, 24, 32, 0.12);
	color: var(--hvf-ink);
}

.hiphverse-form-shell__intro {
	max-width: 760px;
	margin-bottom: 28px;
}

.hiphverse-form-shell__eyebrow {
	margin: 0 0 10px !important;
	color: #b65b00 !important;
	font-weight: 900 !important;
	font-size: 0.78rem !important;
	letter-spacing: 0.16em !important;
	text-transform: uppercase;
}

.hiphverse-form-shell h2 {
	margin: 0 0 14px !important;
	font-size: clamp(2rem, 4vw, 3.5rem) !important;
	line-height: 1.02 !important;
	letter-spacing: -0.045em !important;
	color: var(--hvf-ink) !important;
}

.hiphverse-form-shell__intro > p:not(.hiphverse-form-shell__eyebrow):not(.hiphverse-form-shell__time) {
	font-size: 1.05rem !important;
	line-height: 1.7 !important;
	color: #4d5b63 !important;
}

.hiphverse-form-shell__time {
	display: inline-flex;
	margin: 10px 0 0 !important;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(16, 191, 177, 0.1);
	color: #176d66 !important;
	font-size: 0.82rem !important;
	font-weight: 800 !important;
}

.hiphverse-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.hiphverse-form__field--full {
	grid-column: 1 / -1;
}

.hiphverse-form__field label,
.hiphverse-form__field legend {
	display: block;
	margin-bottom: 8px;
	font-size: 0.92rem;
	font-weight: 850;
	line-height: 1.35;
	color: var(--hvf-ink);
}

.hiphverse-form__field fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.hiphverse-form input[type="text"],
.hiphverse-form input[type="email"],
.hiphverse-form input[type="url"],
.hiphverse-form select,
.hiphverse-form textarea {
	width: 100%;
	min-height: 52px;
	border: 1px solid rgba(17, 24, 32, 0.18);
	border-radius: 14px;
	background: #fff;
	padding: 13px 15px;
	font: inherit;
	font-size: 1rem;
	line-height: 1.45;
	color: var(--hvf-ink);
	outline: 0;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hiphverse-form textarea {
	min-height: 145px;
	resize: vertical;
}

.hiphverse-form input:focus,
.hiphverse-form select:focus,
.hiphverse-form textarea:focus {
	border-color: var(--hvf-gold);
	box-shadow: 0 0 0 4px rgba(248, 160, 16, 0.16);
}

.hiphverse-form__choices {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.hiphverse-form__choices label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	padding: 12px 13px;
	border: 1px solid rgba(17, 24, 32, 0.13);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.78);
	font-weight: 700;
	cursor: pointer;
}

.hiphverse-form__choices input,
.hiphverse-form__consent input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--hvf-gold);
	flex: 0 0 auto;
}

.hiphverse-form__consent {
	margin-top: 24px;
	padding: 16px;
	border-radius: 14px;
	background: rgba(17, 24, 32, 0.045);
}

.hiphverse-form__consent label {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	font-size: 0.9rem;
	line-height: 1.55;
	color: #46535b;
}

.hiphverse-form__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 22px;
}

.hiphverse-form__submit {
	min-height: 52px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--hvf-gold), var(--hvf-gold-2));
	box-shadow: 0 16px 32px rgba(248, 160, 16, 0.25);
	color: var(--hvf-ink);
	font: inherit;
	font-weight: 900;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.hiphverse-form__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(248, 160, 16, 0.32);
}

.hiphverse-form__submit:disabled {
	opacity: 0.68;
	cursor: wait;
}

.hiphverse-form__privacy {
	max-width: 500px;
	margin: 0 !important;
	font-size: 0.8rem !important;
	line-height: 1.5 !important;
	color: #65727a !important;
}

.hiphverse-form-message {
	margin-top: 18px;
	padding: 0;
	font-weight: 750;
	line-height: 1.5;
}

.hiphverse-form-message--success,
.hiphverse-form-message--error {
	padding: 14px 16px;
	border-radius: 12px;
}

.hiphverse-form-message--success {
	background: #e8faf5;
	border: 1px solid #9adacb;
	color: #125d52;
}

.hiphverse-form-message--error,
.is-error .hiphverse-form__field-error {
	color: #9b1c1c;
}

.hiphverse-form-message--error {
	background: #fff0f0;
	border: 1px solid #efb0b0;
}

.is-error input,
.is-error select,
.is-error textarea,
.is-error .hiphverse-form__choices label {
	border-color: #c63838 !important;
}

.hiphverse-form__field-error {
	min-height: 1em;
	margin: 6px 0 0 !important;
	font-size: 0.8rem !important;
	font-weight: 700 !important;
}

.hiphverse-form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 760px) {
	.hiphverse-form-shell { width: min(100% - 20px, 980px); padding: 22px 16px; border-radius: 22px; }
	.hiphverse-form__grid,
	.hiphverse-form__choices { grid-template-columns: 1fr; }
	.hiphverse-form__actions { align-items: stretch; flex-direction: column; }
	.hiphverse-form__submit { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.hiphverse-form *, .hiphverse-form *::before, .hiphverse-form *::after { transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
