@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Light.ttf') format('truetype');
	font-weight: 400;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Bold.ttf') format('truetype');
	font-weight: 700;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #ffffff;
	color: #111111;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

.page-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.login-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	background: rgba(255,255,255,0.96);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 0;
	text-decoration: none;
	transition: opacity 0.18s ease;
}

.nav-logo:hover { opacity: 0.7; }

.nav-logo h1 {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
}

.nav-logo .big { color: #111111; }
.nav-logo .bite { color: rgba(0,0,0,0.25); font-weight: 400; }

.nav-badge {
	display: inline-flex;
	align-items: center;
	background: #111111;
	color: #ffffff;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 50px;
	margin-left: 10px;
	vertical-align: middle;
}

.login-nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn-login,
.btn-start {
	font-family: 'Poppins', sans-serif;
	font-size: 0.92rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	padding: 10px 22px;
	transition: background 0.18s ease, transform 0.18s ease;
}

.btn-login {
	font-weight: 600;
	color: #111111;
	background: #f4f4f4;
}

.btn-login:hover { background: #ebebeb; }

.btn-start {
	font-weight: 700;
	color: #ffffff;
	background: #111111;
}

.btn-start:hover {
	background: #333333;
	transform: translateY(-1px);
}

.login-stage {
	flex: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	gap: 24px;
	padding: 32px 40px 56px;
	align-items: stretch;
}

.login-hero-panel,
.login-form-panel {
	border-radius: 32px;
	overflow: hidden;
}

.login-hero-panel {
	background: #f7f7f7;
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.login-hero-panel::before {
	content: '';
	position: absolute;
	top: -220px;
	right: -180px;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
	pointer-events: none;
}

.section-eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #cccccc;
	margin-bottom: 20px;
	display: block;
}

.section-title {
	font-size: clamp(2.4rem, 5vw, 4.5rem);
	font-weight: 700;
	color: #111111;
	line-height: 1;
	letter-spacing: -0.03em;
	margin-bottom: 20px;
	max-width: 8ch;
}

.section-desc {
	font-size: 1.05rem;
	color: #999999;
	font-weight: 400;
	line-height: 1.7;
	max-width: 560px;
}

.login-stat-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 40px 0 32px;
}

.login-stat-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 24px;
	border: 1px solid rgba(0,0,0,0.05);
}

.login-stat-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #cccccc;
	margin-bottom: 10px;
}

.login-stat-value {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	color: #111111;
	letter-spacing: -0.03em;
	margin-bottom: 8px;
}

.login-stat-card p {
	font-size: 0.88rem;
	color: #999999;
	line-height: 1.6;
}

.login-preview-card {
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0,0,0,0.08);
	max-width: 580px;
}

.login-preview-head {
	height: 52px;
	background: #fafafa;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	display: flex;
	align-items: center;
	padding: 0 20px;
	gap: 8px;
}

.preview-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
}

.preview-dot.red { background: #ff5f57; }
.preview-dot.yellow { background: #febc2e; }
.preview-dot.green { background: #28c840; }

.login-preview-url {
	flex: 1;
	background: #f0f0f0;
	border-radius: 8px;
	height: 28px;
	margin-left: 8px;
	display: flex;
	align-items: center;
	padding: 0 12px;
	font-size: 0.75rem;
	color: #aaaaaa;
	font-weight: 500;
}

.login-preview-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.login-preview-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f7f7f7;
	border-radius: 18px;
	padding: 16px 18px;
	font-size: 0.92rem;
	font-weight: 600;
	color: #7f7f7f;
}

.login-preview-item span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.45;
	flex-shrink: 0;
}

.login-preview-item.active {
	background: #111111;
	color: #ffffff;
}

.login-form-panel {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.06);
	box-shadow: 0 20px 50px rgba(0,0,0,0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
}

.login-form-shell {
	width: 100%;
	max-width: 420px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f7f7f7;
	border-radius: 50px;
	padding: 8px 20px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #aaaaaa;
	margin-bottom: 22px;
}

.hero-eyebrow-dot {
	width: 6px;
	height: 6px;
	background: #22c55e;
	border-radius: 50%;
}

.login-title {
	font-size: clamp(2rem, 3.2vw, 2.8rem);
	font-weight: 700;
	color: #111111;
	line-height: 1;
	letter-spacing: -0.04em;
	margin-bottom: 12px;
}

.login-copy {
	font-size: 0.98rem;
	color: #999999;
	line-height: 1.7;
	margin-bottom: 20px;
}

.login-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.login-meta-pill {
	padding: 9px 12px;
	border-radius: 999px;
	background: #f7f7f7;
	border: 1px solid rgba(0,0,0,0.04);
	color: #7a7a7a;
	font-size: 0.8rem;
	font-weight: 600;
}

label {
	display: block;
	font-size: 0.76rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: rgba(17,17,17,0.38);
	margin: 14px 0 7px;
	font-weight: 700;
}

input {
	width: 100%;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 18px;
	padding: 15px 16px;
	background: #ffffff;
	color: #111111;
	font-size: 0.98rem;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

input::placeholder { color: rgba(17,17,17,0.32); }

input:focus {
	outline: none;
	border-color: #111111;
	box-shadow: 0 0 0 4px rgba(17,17,17,0.06);
	transform: translateY(-1px);
}

.password-wrap {
	position: relative;
}

.password-wrap input {
	padding-right: 56px;
}

.toggle-password {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	min-height: 40px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: rgba(17,17,17,0.45);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.toggle-password:hover {
	background: rgba(17,17,17,0.06);
	color: #111111;
}

.remember {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	color: #777777;
	font-size: 0.92rem;
	font-weight: 400;
	cursor: pointer;
}

.remember input {
	width: 17px;
	height: 17px;
	accent-color: #111111;
	border-radius: 5px;
	box-shadow: none;
	transform: none;
	padding: 0;
}

.row {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

button {
	border: none;
	border-radius: 50px;
	padding: 15px 24px;
	min-height: 54px;
	font-size: 0.97rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

button:hover { transform: translateY(-1px); }

.primary {
	background: #111111;
	color: #ffffff;
	flex: 1;
	box-shadow: 0 14px 30px rgba(17,17,17,0.16);
}

.primary:hover { background: #333333; }

.secondary {
	background: #f4f4f4;
	color: #111111;
}

.secondary:hover { background: #ebebeb; }

.msg {
	margin-top: 14px;
	min-height: 24px;
	font-size: 0.92rem;
	font-weight: 600;
}

.err { color: #bf2a2a; }
.ok { color: #18733b; }

.foot {
	margin-top: 18px;
	font-size: 0.92rem;
	color: #999999;
}

.foot a {
	color: #111111;
	text-decoration: none;
	font-weight: 700;
}

.foot a:hover { opacity: 0.7; }

@media (max-width: 1100px) {
	.login-stage {
		grid-template-columns: 1fr;
	}

	.login-hero-panel,
	.login-form-panel {
		min-height: auto;
	}
}

@media (max-width: 900px) {
	.login-nav {
		padding: 0 24px;
	}

	.login-stage {
		padding: 24px 24px 48px;
	}

	.login-hero-panel,
	.login-form-panel {
		padding: 32px;
	}
}

@media (max-width: 640px) {
	.login-nav {
		height: auto;
		padding: 16px 18px;
		gap: 14px;
		flex-direction: column;
		align-items: flex-start;
	}

	.login-nav-actions {
		width: 100%;
		flex-wrap: wrap;
	}

	.btn-login,
	.btn-start {
		flex: 1;
	}

	.login-stage {
		padding: 18px 18px 36px;
	}

	.login-hero-panel,
	.login-form-panel {
		padding: 24px;
		border-radius: 24px;
	}

	.section-title {
		max-width: none;
	}

	.login-stat-grid {
		grid-template-columns: 1fr;
	}

	.row {
		flex-direction: column;
	}

	.primary,
	.secondary {
		width: 100%;
	}
}
