/* ==========================================================================
   Coming Soon block — values taken 1:1 from the Figma design
   (node 40002946:43022, design tokens via Dev Mode).
   ========================================================================== */
.cs {
	/* Colors (Figma variables) */
	--cs-bg: #f0f5f7;            /* Background/Brand/Tertiary */
	--cs-ink: #1e1e1e;           /* Text/Default/Default */
	--cs-muted: #757575;         /* Text/Default/Secondary */
	--cs-neutral: #5a5a5a;       /* Text/Neutral/Secondary */
	--cs-red: #cc1f36;           /* Background/Brand/Main */
	--cs-gold: #d6a022;          /* Background/Brand/Secondary - Accent */
	--cs-gold-hi: #f8bc2f;       /* Background/Brand/Secondary - Hover */
	--cs-card: #ffffff;          /* Background/Default/Default */
	--cs-border: #dadee0;        /* Border/Default/Default */
	--cs-input-border: #b2b2b2;  /* Border/Neutral/tertiary */

	--cs-font: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--cs-font-head: "Stack Sans Headline", "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	position: relative;
	box-sizing: border-box;
	min-height: 100vh;
	overflow: hidden; /* clip the oversized "Coming Soon" watermark */
	display: flex;
	flex-direction: column;
	padding: 64px 20px 24px;
	font-family: var(--cs-font);
	color: var(--cs-ink);
	background: var(--cs-bg) url("../images/coming-soon-background.svg") no-repeat center top;
	background-size: cover;
}

.cs *,
.cs *::before,
.cs *::after {
	box-sizing: border-box;
}

/* Centered 886px content column (matches the Figma frame: 886x1117, x=426).
   Top-aligned — the logo sits 64px from the top; the footer is pushed to the
   bottom. */
.cs__container {
	flex: 1 0 auto;
	width: 886px;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 64px; /* Space/1600 */
}

/* Logo -------------------------------------------------------------------- */
.cs__logo {
	flex: 0 0 auto;
}

.cs__logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 95px;
}

/* Intro group (heading + lead) ------------------------------------------- */
.cs__main {
	display: flex;
	flex-direction: column;
	gap: 32px; /* Space/800 */
	width: 100%;
}

.cs__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px; /* Space/800 */
	width: 100%;
}

.cs__hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

/* Faded gradient "Coming Soon" watermark behind the heading. */
.cs__ghost {
	margin: 0 0 -12px; /* heading overlaps the watermark by ~10px, per Figma */
	font-family: var(--cs-font-head);
	font-weight: 700;
	font-size: 110px;
	line-height: 1;
	text-transform: capitalize;
	text-align: center;
	white-space: nowrap;
	background-image: linear-gradient(170deg, #1e1e1e 0%, var(--cs-red) 57.74%, var(--cs-gold) 107.23%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	opacity: 0.15;
	pointer-events: none;
	user-select: none;
}

.cs__title {
	margin: 0;
	width: 100%;
	font-family: var(--cs-font-head);
	font-weight: 600; /* Semibold */
	font-size: 57px;
	line-height: 64px;
	color: var(--cs-ink);
	text-align: center;
}

.cs__lead {
	margin: 0;
	width: 100%;
	font-family: var(--cs-font-head);
	font-weight: 300; /* Light */
	font-size: 20px;
	line-height: 32px;
	color: var(--cs-muted);
	text-align: center;
}

/* Card -------------------------------------------------------------------- */
.cs__card {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px; /* Space/600 */
	padding: 32px; /* Space/800 */
	background: var(--cs-card);
	border: 1px solid var(--cs-border);
	border-radius: 8px; /* Radius/200 */
}

.cs__card-title {
	margin: 0;
	width: 100%;
	font-family: var(--cs-font-head);
	font-weight: 600; /* Semibold */
	font-size: 24px;
	line-height: 32px;
	text-align: center;
	color: var(--cs-ink);
}

.cs__accent {
	color: var(--cs-red);
}

/* Form -------------------------------------------------------------------- */
.cs__form {
	display: flex;
	flex-direction: column;
	gap: 12px; /* Space/300 */
	width: 100%;
}

.cs__check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	cursor: pointer;
}

.cs__check input {
	appearance: none;
	-webkit-appearance: none;
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 4px; /* Radius/100 */
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--cs-input-border);
	cursor: pointer;
	position: relative;
	transition: background 0.15s ease, box-shadow 0.15s ease;
}

.cs__check input:checked {
	background: var(--cs-gold);
	box-shadow: none;
}

.cs__check input:checked::after {
	content: "";
	position: absolute;
	left: 11px;
	top: 6px;
	width: 7px;
	height: 13px;
	border: solid #fff;
	border-width: 0 2.5px 2.5px 0;
	transform: rotate(45deg);
}

.cs__check input:focus-visible {
	outline: 2px solid var(--cs-gold);
	outline-offset: 2px;
}

.cs__check span {
	padding-top: 4px;
	font-family: var(--cs-font);
	font-weight: 300; /* Light */
	font-size: 14px;
	line-height: 20px;
	color: var(--cs-ink);
	text-align: left;
}

.cs__row {
	display: flex;
	gap: 16px; /* Space/400 */
	align-items: center;
	width: 100%;
}

.cs__field {
	position: relative;
	flex: 1 0 0;
	min-width: 240px;
	display: flex;
	align-items: center;
}

.cs__field-icon {
	position: absolute;
	left: 16px;
	width: 16px;
	height: 16px;
	color: var(--cs-ink);
	opacity: 0.5;
	pointer-events: none;
}

.cs__input {
	width: 100%;
	padding: 16px 12px 16px 40px;
	font-family: var(--cs-font);
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	color: var(--cs-ink);
	background: #fff;
	border: 1px solid var(--cs-input-border);
	border-radius: 4px; /* Radius/100 */
}

.cs__input::placeholder {
	color: var(--cs-muted);
}

.cs__input:focus {
	outline: none;
	border-color: var(--cs-gold);
	box-shadow: 0 0 0 3px rgba(214, 160, 34, 0.2);
}

.cs__btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px; /* Space/400 Space/600 */
	font-family: var(--cs-font);
	font-weight: 600; /* Semibold */
	font-size: 16px;
	line-height: 24px;
	color: var(--cs-ink);
	background: linear-gradient(to bottom, var(--cs-gold-hi), var(--cs-gold));
	border: 1px solid rgba(17, 17, 17, 0.6);
	border-radius: 4px; /* Radius/100 */
	cursor: pointer;
	white-space: nowrap;
	transition: filter 0.15s ease;
}

.cs__btn:hover {
	filter: brightness(1.05);
}

/* Honeypot (spam trap) — visually hidden but reachable to bots. */
.cs__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Validation / status message */
.cs__msg {
	width: 100%;
	margin: 0;
	font-family: var(--cs-font);
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
}

.cs__msg:empty {
	display: none;
}

.cs__msg--error {
	color: var(--cs-red);
}

.cs__msg--success {
	color: #1a7f4b;
	font-weight: 600;
	font-size: 16px;
}

/* Inline error highlights */
.cs__check.is-error span {
	color: var(--cs-red);
}

.cs__check.is-error input {
	box-shadow: inset 0 0 0 1.5px var(--cs-red);
}

.cs__field.is-error .cs__input {
	border-color: var(--cs-red);
}

/* After a successful submit, hide the inputs and keep the message. */
.cs__form.is-done .cs__check,
.cs__form.is-done .cs__row,
.cs__form.is-done .cs__note {
	display: none;
}

.cs__note {
	margin: 0;
	width: 100%;
	font-family: var(--cs-font);
	font-weight: 300;
	font-size: 12px;
	line-height: 16px;
	color: var(--cs-muted);
	text-align: center;
}

/* Footer ------------------------------------------------------------------ */
.cs__footer {
	margin: auto 0 0; /* pushed to the bottom of the column */
	width: 100%;
	font-family: var(--cs-font);
	font-weight: 300;
	font-size: 12px;
	line-height: 16px;
	color: var(--cs-neutral);
	text-align: center;
}

/* Responsive -------------------------------------------------------------- */
@media (max-width: 920px) {
	.cs__ghost {
		font-size: 72px;
		margin-bottom: -8px;
	}

	.cs__title {
		font-size: 40px;
		line-height: 46px;
	}

	.cs__lead {
		font-size: 18px;
		line-height: 28px;
	}
}

@media (max-width: 560px) {
	.cs {
		padding: 40px 16px 20px;
	}

	.cs__container {
		gap: 40px;
	}

	.cs__ghost {
		font-size: 52px;
		margin-bottom: -6px;
	}

	.cs__title {
		font-size: 30px;
		line-height: 36px;
	}

	.cs__card {
		padding: 24px;
	}

	.cs__row {
		flex-direction: column;
		align-items: stretch;
	}

	.cs__field {
		min-width: 0;
	}

	.cs__btn {
		width: 100%;
	}
}
