/* Made with ♥ by Mister Topdesign */

.mt-alpha-sales {
	--mt-color-bg: #050505;
	--mt-color-surface: #141414;
	--mt-color-surface-hover: #1d1d1d;
	--mt-color-text: #ffffff;
	--mt-color-muted: #b6babc;
	--mt-color-accent: #f79b1c;
	--mt-color-accent-hover: #ffad38;
	--mt-color-error: #ff8b80;
	--mt-color-success: #9ddd9c;
	width: 100%;
	box-sizing: border-box;
	padding: clamp(32px, 5vw, 68px);
	background: var(--mt-color-bg);
	color: var(--mt-color-text);
	font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
}

.mt-alpha-sales *,
.mt-alpha-sales *::before,
.mt-alpha-sales *::after {
	box-sizing: border-box;
}

.mt-alpha-sales [hidden] {
	display: none !important;
}

.mt-alpha-sales__intro {
	max-width: 720px;
	margin: 0 0 clamp(30px, 4vw, 48px);
}

.mt-alpha-sales__eyebrow {
	margin: 0 0 10px;
	color: var(--mt-color-accent);
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.mt-alpha-sales__title {
	margin: 0;
	color: var(--mt-color-text);
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: clamp(28px, 4.4vw, 46px);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.13;
}

.mt-alpha-sales__lead {
	max-width: 650px;
	margin: 18px 0 0;
	color: var(--mt-color-muted);
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.6;
}

.mt-form-notice {
	display: grid;
	gap: 3px;
	margin: 0 0 28px;
	padding: 18px 20px;
	border-left: 4px solid currentColor;
	background: var(--mt-color-surface);
}

.mt-form-notice--success {
	color: var(--mt-color-success);
}

.mt-form-notice--error {
	color: var(--mt-color-error);
}

.mt-form-notice__title,
.mt-form-notice__text {
	display: block;
}

.mt-form-notice__title {
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: 16px;
}

.mt-form-notice__text {
	color: var(--mt-color-text);
	font-size: 15px;
	line-height: 1.5;
}

.mt-alpha-form {
	margin: 0;
}

.mt-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.mt-form-field {
	display: grid;
	gap: 8px;
}

.mt-form-field--wide {
	grid-column: 1 / -1;
}

.mt-form-field--other {
	margin-top: 18px;
}

.mt-form-label,
.mt-form-legend {
	color: var(--mt-color-text);
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-weight: 600;
}

.mt-form-label {
	font-size: 14px;
	line-height: 1.4;
}

.mt-form-required {
	color: var(--mt-color-accent);
}

.mt-alpha-sales .mt-form-input {
	width: 100%;
	min-height: 52px;
	margin: 0;
	padding: 13px 15px;
	border: 1px solid #353535;
	border-radius: 4px;
	outline: none;
	background: var(--mt-color-surface);
	box-shadow: none;
	color: var(--mt-color-text);
	font: inherit;
	font-size: 16px;
	line-height: 1.4;
	transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.mt-alpha-sales .mt-form-input:hover {
	background: var(--mt-color-surface-hover);
}

.mt-alpha-sales .mt-form-input:focus {
	border-color: var(--mt-color-accent);
	background: var(--mt-color-surface-hover);
	box-shadow: 0 0 0 3px rgba(247, 155, 28, 0.18);
	color: var(--mt-color-text);
	caret-color: var(--mt-color-accent);
}

.mt-form-group {
	min-width: 0;
	margin: clamp(36px, 5vw, 52px) 0 0;
	padding: 0;
	border: 0;
}

.mt-form-legend {
	width: 100%;
	padding: 0;
	font-size: clamp(19px, 2.5vw, 23px);
	line-height: 1.35;
}

.mt-form-help {
	margin: 7px 0 18px;
	color: var(--mt-color-muted);
	font-size: 14px;
	line-height: 1.5;
}

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

.mt-radio-list {
	display: grid;
	gap: 10px;
}

.mt-choice {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	min-width: 0;
	margin: 0;
	padding: 13px 14px;
	border: 1px solid #353535;
	border-radius: 4px;
	background: var(--mt-color-surface);
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.mt-choice:hover {
	border-color: #5a5a5a;
	background: var(--mt-color-surface-hover);
}

.mt-choice:focus-within {
	border-color: var(--mt-color-accent);
	box-shadow: 0 0 0 3px rgba(247, 155, 28, 0.18);
}

.mt-choice__input {
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	margin: 1px 0 0;
	accent-color: var(--mt-color-accent);
	cursor: pointer;
}

.mt-choice__label {
	min-width: 0;
	color: var(--mt-color-text);
	font-size: 15px;
	line-height: 1.45;
}

.mt-choice--radio,
.mt-choice--consent {
	padding: 12px 14px;
}

.mt-form-consent {
	margin-top: clamp(30px, 4vw, 42px);
}

.mt-choice--consent {
	border-color: transparent;
	background: transparent;
}

.mt-choice--consent:hover {
	border-color: transparent;
	background: rgba(255, 255, 255, 0.03);
}

.mt-form-link {
	color: var(--mt-color-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.mt-form-link:hover,
.mt-form-link:focus {
	color: var(--mt-color-accent-hover);
}

.mt-form-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.mt-form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 24px;
}

.mt-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	min-height: 54px;
	margin: 0;
	padding: 14px 22px;
	border: 0;
	border-radius: 4px;
	background: var(--mt-color-accent);
	box-shadow: none;
	color: #111111;
	cursor: pointer;
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.mt-form-submit:hover {
	background: var(--mt-color-accent-hover);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(247, 155, 28, 0.2);
}

.mt-form-submit:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 3px;
}

.mt-form-submit:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.mt-form-submit__arrow {
	font-size: 21px;
	font-weight: 400;
	line-height: 1;
}

.mt-form-required-note {
	margin: 0;
	color: var(--mt-color-muted);
	font-size: 13px;
}

@media (max-width: 700px) {
	.mt-alpha-sales {
		padding: 30px 22px 34px;
	}

	.mt-form-grid,
	.mt-choice-grid {
		grid-template-columns: 1fr;
	}

	.mt-form-field--wide {
		grid-column: auto;
	}

	.mt-form-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.mt-form-submit {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mt-alpha-sales .mt-form-input,
	.mt-choice,
	.mt-form-submit {
		transition: none;
	}
}
