@font-face {
	font-family: 'Inter';
	src: url('fonts/cyrillic.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: 'Inter';
	src: url('fonts/latin.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg-color);
	color: var(--text-main);
	line-height: 1.6;
	margin: 0;
	min-height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header,
.hero,
.features {
	width: 100%;
	box-sizing: border-box;
}

.blob {
	pointer-events: none;
	max-width: 100vw;
}

:root {
	--bg-color: #0a0b10;
	--card-bg: rgba(255, 255, 255, 0.03);
	--accent-blue: #5865f2;
	--accent-purple: #8e54e9;
	--text-main: #ffffff;
	--text-dim: #a0a0a8;
	--border: rgba(255, 255, 255, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter';
}

.blob {
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
	z-index: -1;
	filter: blur(80px);
}

.legal-notice {
	font-size: 0.85rem;
	color: var(--text-dim);
	margin-bottom: 30px;
	margin-top: -20px;
}

.legal-notice a {
	color: var(--accent-blue);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: 0.2s;
}

.legal-notice a:hover {
	border-bottom: 1px solid var(--accent-blue);
	filter: brightness(1.2);
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;

	padding: 20px 10%;
	display: flex;
	justify-content: space-between;
	align-items: center;

	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
	background-color: rgba(10, 11, 16, 0.7);
}

.logo-img {
	height: 42px;
	width: auto;
	display: block;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	font-weight: 700;
	font-size: 1.25rem;
	letter-spacing: -1px;
}

.logo:hover .logo-svg path.st0 {
	fill: var(--accent-blue);
	transition: fill 0.3s ease;
}

.logo span {
	color: var(--accent-blue);
}

.btn-login {
	background: var(--accent-blue);
	color: white;
	text-decoration: none;
	padding: 10px 24px;
	border-radius: 12px;
	font-weight: 600;
	transition: 0.2s ease-in-out;
	box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
	border: none;
	cursor: pointer;
	display: inline-block;
}

.btn-login--header {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-login__icon {
	display: none;
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
}

@media (max-width: 1100px) {
	.header {
		padding: 20px 2%;
	}

	.btn-login--header {
		width: 48px;
		height: 48px;
		padding: 0;
		border-radius: 14px;
	}

	.btn-login--header .btn-login__text {
		display: none;
	}

	.btn-login--header .btn-login__icon {
		display: block;
	}
}

.btn-login:hover {
	filter: brightness(1.15);
}

.btn-hero {
	padding: 18px 40px;
	font-size: 1.1rem;
}

.hero-title {
	background: linear-gradient(90deg, #fff, #a0a0a8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.price-tag {
	color: var(--accent-blue);
	white-space: nowrap;
	text-shadow: 0 0 22px rgba(88, 101, 242, 0.7);
	position: relative;
	display: inline-block;
	-webkit-text-fill-color: #ffffff;
}

.price-tag::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-blue), transparent);
	border-radius: 2px;
	opacity: 0.3;
}

.hero {
	padding: 100px 10% 60px;
	text-align: center;
	position: relative;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	background: linear-gradient(90deg, #fff, #a0a0a8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	font-size: 1.2rem;
	color: var(--text-dim);
	max-width: 600px;
	margin: 0 auto 40px;
}

.features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.features-mini {
	margin-bottom: 35px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.trial-badge {
	background: rgba(0, 255, 136, 0.1);
	color: #00ff88;
	padding: 8px 16px;
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 600;
	border: 1px solid rgba(0, 255, 136, 0.2);
}

.auth-methods {
	font-size: 0.9rem;
	color: var(--text-dim);
}

.auth-item {
	color: var(--text-main);
	font-weight: 500;
}

@media (max-width: 1024px) {
	.features {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.features {
		grid-template-columns: 1fr;
		padding: 20px 5%;
	}

	.hero h1 {
		font-size: 2.2rem;
	}
}

.badge-purple {
	color: #a855f7;
	background: rgba(168, 85, 247, 0.1);
}

.feature-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	padding: 30px;
	border-radius: 24px;
	backdrop-filter: blur(5px);
	transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover {
	border-color: var(--accent-blue);
	background: rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
	margin-bottom: 15px;
	font-size: 1.4rem;
}

.feature-card p {
	color: var(--text-dim);
	font-size: 0.95rem;
}

.status-badge {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(88, 101, 242, 0.1);
	color: var(--accent-blue);
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.badge-green {
	color: #00ff88;
	background: rgba(0, 255, 136, 0.1);
}

.badge-yellow {
	color: #ffcc00;
	background: rgba(255, 204, 0, 0.1);
}

footer {
	flex-shrink: 0;
	width: 100%;
	padding: 30px 10%;
	text-align: center;
	border-top: 1px solid var(--border);
	color: var(--text-dim);
	margin-top: auto;
	box-sizing: border-box;
}

footer a {
	color: var(--accent-blue);
	text-decoration: none;
	transition: 0.2s;
}

footer a:hover {
	text-decoration: underline;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	margin: 10px 0;
}

@media (max-width: 768px) {
	.btn-hero {
		width: 100%;
		padding: 16px 20px;
		font-size: 1rem;
	}

	.hero h1 {
		font-size: 1.8rem;
		line-height: 1.3;
	}
}