/**
 * MSCP portal gate — logged-out /strategy-central/ landing
 */
body.mscp-portal-gate-page {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #fff;
	color: #0a0a0a;
	min-height: 100vh;
}

.mscp-gate {
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	padding: clamp(1.5rem, 3.5vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 4vw, 3rem);
	box-sizing: border-box;
}

.mscp-gate__inner {
	max-width: 1180px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
	gap: clamp(1.75rem, 3.5vw, 2.75rem);
	align-items: start;
}

.mscp-gate__preview {
	padding-top: 0.15rem;
}

.mscp-gate__eyebrow {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #5c5c5c;
	margin: 0 0 0.4rem;
}

.mscp-gate__title { margin: 0; line-height: 1.1; }
.mscp-gate__brand-short { font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 800; letter-spacing: 0.04em; }
.mscp-gate__brand-full { margin: 0.3rem 0 0.85rem; font-size: 0.95rem; color: #5c5c5c; font-weight: 500; }
.mscp-gate__lead { margin: 0 0 1.5rem; font-size: 1.02rem; line-height: 1.55; color: #333; max-width: 36rem; }

.mscp-gate__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }

.mscp-gate__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid #0a0a0a;
}

.mscp-gate__btn--primary { background: #0a0a0a; color: #fff; }
.mscp-gate__btn--primary:hover { background: #222; color: #fff; }
.mscp-gate__btn--secondary { background: #fff; color: #0a0a0a; }
.mscp-gate__btn--secondary:hover { background: #f4f4f5; }

.mscp-gate__points {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.9rem;
	color: #444;
}

.mscp-gate__points li {
	padding: 0.35rem 0 0.35rem 1.25rem;
	position: relative;
}

.mscp-gate__points li::before {
	content: '◆';
	position: absolute;
	left: 0;
	font-size: 0.55rem;
	color: #b8860b;
	top: 0.5rem;
}

.mscp-gate__footer {
	margin: 1.5rem 0 0;
	font-size: 0.8rem;
	color: #5c5c5c;
	line-height: 1.5;
}

.mscp-gate__footer a { color: #0a0a0a; font-weight: 600; }
.mscp-gate__footer-sep { margin: 0 0.35rem; }

/* In-portal auth forms */
.mscp-gate__form { margin-bottom: 1rem; max-width: 22rem; }
.mscp-gate__form--inline { margin-top: 0.5rem; }
.mscp-gate__label {
	display: block;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #5c5c5c;
	margin: 0 0 0.3rem;
}
.mscp-gate__input {
	width: 100%;
	padding: 0.6rem 0.75rem;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	font-size: 0.95rem;
	margin-bottom: 0.85rem;
	font-family: inherit;
	box-sizing: border-box;
}
.mscp-gate__input:focus {
	outline: none;
	border-color: #0a0a0a;
}
.mscp-gate__remember {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	color: #444;
	margin: -0.35rem 0 0.85rem;
}
.mscp-gate__switch {
	font-size: 0.88rem;
	color: #444;
	margin: 0 0 1.25rem;
}
.mscp-gate__switch a { color: #0a0a0a; font-weight: 600; }
.mscp-gate__link-btn {
	background: none;
	border: none;
	padding: 0;
	font-size: 0.85rem;
	color: #5c5c5c;
	text-decoration: underline;
	cursor: pointer;
	font-family: inherit;
}
.mscp-gate__notice {
	padding: 0.65rem 0.85rem;
	border-radius: 8px;
	font-size: 0.88rem;
	margin-bottom: 1rem;
}
.mscp-gate__notice--error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #7f1d1d;
}
.mscp-gate__notice--success {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #14532d;
}
.mscp-gate__meta { font-size: 0.85rem; color: #5c5c5c; margin: 0 0 0.75rem; }
.mscp-gate__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* Gate left panel uses .mscp-home-feature__preview + homepage-feature-section.css (no gate-only cockpit overrides) */

@media (max-width: 960px) {
	.mscp-gate__inner { grid-template-columns: 1fr; }
	.mscp-gate__preview { order: 2; }
	.mscp-gate__copy { order: 1; }
}
