/* OneProde public pages */

@import url("./base.css");

body {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(120% 120% at 100% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 55%),
		radial-gradient(110% 110% at -20% 20%, rgba(236, 72, 153, 0.12) 0%, transparent 60%),
		var(--bg-main);
	background-image: 
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(34, 197, 94, 0.015) 2px,
			rgba(34, 197, 94, 0.015) 4px
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 2px,
			rgba(34, 197, 94, 0.015) 2px,
			rgba(34, 197, 94, 0.015) 4px
		),
		linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(5, 150, 105, 0.02) 100%);
	background-size: 100% 100%, 100% 100%, 100% 100%;
	position: relative;
	color: var(--text-primary);
	display: flex;
	flex-direction: column;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(5, 150, 105, 0.025) 0%, transparent 50%);
	background-size: 100% 100%;
	animation: backgroundMove 20s ease-in-out infinite alternate;
	pointer-events: none;
	z-index: 0;
}

@keyframes backgroundMove {
	0% {
		transform: translate(0, 0) scale(1);
	}
	100% {
		transform: translate(-2%, -1%) scale(1.02);
	}
}

html.dark body {
	background:
		radial-gradient(120% 120% at 100% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 55%),
		radial-gradient(110% 110% at -20% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 60%),
		var(--bg-main);
	background-image: 
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(34, 197, 94, 0.02) 2px,
			rgba(34, 197, 94, 0.02) 4px
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 2px,
			rgba(34, 197, 94, 0.02) 2px,
			rgba(34, 197, 94, 0.02) 4px
		),
		linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.03) 100%);
}

html.dark body::before {
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(5, 150, 105, 0.04) 0%, transparent 50%);
}

a {
	color: inherit;
}

.btn.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn.btn-secondary:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background: rgba(59, 130, 246, 0.08);
}

.public-landing {
	display: flex;
	flex-direction: column;
	gap: 48px;
	padding-bottom: 48px;
	position: relative;
	z-index: 1;
}

.landing-container {
	width: min(1120px, 92%);
	margin: 0 auto;
}

.landing-hero {
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
}

.landing-hero::after {
	content: "⚽";
	position: absolute;
	font-size: 200px;
	opacity: 0.08;
	right: -50px;
	top: 50%;
	transform: translateY(-50%) rotate(15deg);
	animation: floatBall 8s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

.landing-hero::before {
	content: "⚽";
	position: absolute;
	font-size: 150px;
	opacity: 0.06;
	left: -30px;
	bottom: 20%;
	animation: floatBall 10s ease-in-out infinite reverse;
	pointer-events: none;
	z-index: 0;
}

html.dark .landing-hero::after,
html.dark .landing-hero::before {
	opacity: 0.03;
}

@keyframes floatBall {
	0%, 100% {
		transform: translateY(-50%) rotate(15deg);
	}
	50% {
		transform: translateY(-60%) rotate(25deg);
	}
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-copy h1 {
	font-size: clamp(42px, 5vw, 58px);
	margin: 18px 0;
}

.hero-copy p {
	font-size: 18px;
	color: var(--text-secondary);
	margin: 0 0 28px;
	max-width: 520px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(59, 130, 246, 0.15);
	color: #2563eb;
	font-weight: 600;
	font-size: 14px;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.world-cup-countdown {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 16px;
	padding: 20px;
	margin: 24px 0;
}

.countdown-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.countdown-icon {
	font-size: 32px;
}

.countdown-header strong {
	display: block;
	font-size: 18px;
	color: var(--text-primary);
	margin-bottom: 4px;
}

.countdown-header p {
	margin: 0;
	font-size: 13px;
	color: var(--text-secondary);
}

.countdown-timer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 60px;
}

.countdown-value {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
	margin-bottom: 4px;
	font-variant-numeric: tabular-nums;
}

.countdown-label {
	font-size: 11px;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}

.countdown-separator {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-secondary);
	padding-bottom: 16px;
}

@media (max-width: 640px) {
	.countdown-value {
		font-size: 24px;
	}
	
	.countdown-item {
		min-width: 50px;
	}
	
	.countdown-separator {
		font-size: 18px;
		padding-bottom: 12px;
	}
}

.hero-metrics {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	color: var(--text-secondary);
	font-size: 14px;
}

.hero-metrics strong {
	display: block;
	font-size: 20px;
	color: var(--text-primary);
}

.hero-visual {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
}

.hero-image-wrapper {
	position: relative;
}

.hero-dashboard-preview {
	background: var(--bg-card);
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
	overflow: hidden;
	position: relative;
}

.hero-dashboard-preview::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.2));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: 0;
}

.dashboard-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	z-index: 1;
}

.dashboard-logo {
	font-size: 28px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 10px;
}

.dashboard-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
}

.dashboard-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	position: relative;
	z-index: 1;
}

.dashboard-card {
	background: rgba(248, 250, 252, 0.5);
	border-radius: 12px;
	padding: 16px;
	border: 1px solid rgba(148, 163, 184, 0.15);
}

html.dark .dashboard-card {
	background: rgba(30, 41, 59, 0.5);
}

.card-header-small {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
}

.ranking-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	font-size: 14px;
}

.rank-number {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	border-radius: 6px;
	font-weight: 700;
	font-size: 12px;
}

.rank-name {
	flex: 1;
	color: var(--text-primary);
	font-weight: 500;
}

.rank-points {
	color: var(--text-secondary);
	font-weight: 600;
	font-size: 13px;
}

.match-preview {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.match-team {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
}

.team-flag {
	font-size: 20px;
}

.team-name {
	color: var(--text-primary);
}

.match-score {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	padding: 8px 16px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 8px;
}

.hero-features-badges {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.feature-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	font-size: 13px;
	color: var(--text-primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.badge-icon {
	font-size: 18px;
}

.badge-text {
	font-weight: 500;
}

.score-card {
	position: relative;
	border-radius: 20px;
	background: radial-gradient(140% 140% at 0% 0%, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0.7) 100%);
	color: #f8fafc;
	overflow: hidden;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.score-card header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.score-card-badge {
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(129, 140, 248, 0.2);
	font-weight: 600;
}

.score-teams {
	display: grid;
	gap: 16px;
}

.score-team {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	font-weight: 600;
}

.score-team .flag {
	font-size: 20px;
}

.score-team .name {
	display: flex;
	flex-direction: column;
	font-size: 15px;
}

.score-team .meta {
	font-size: 12px;
	color: rgba(248, 250, 252, 0.75);
	font-weight: 500;
}

.score-team .points {
	font-size: 20px;
	font-weight: 700;
}

.score-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: rgba(248, 250, 252, 0.75);
}

.score-progress {
	height: 6px;
	border-radius: 999px;
	background: rgba(248, 250, 252, 0.2);
	margin-top: 6px;
	overflow: hidden;
}

.score-progress span {
	display: block;
	height: 100%;
	width: 70%;
	background: linear-gradient(135deg, #facc15, #22d3ee);
}

.hero-notes {
	display: grid;
	gap: 12px;
	font-size: 13px;
	color: var(--text-secondary);
}

.landing-logos {
	padding-bottom: 16px;
}

.landing-logos p {
	text-align: center;
	color: var(--text-secondary);
	font-size: 14px;
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.logo-badges {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 14px;
}

.logo-badge {
	background: var(--bg-card);
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 14px;
	padding: 14px;
	text-align: center;
	font-weight: 600;
	color: var(--text-secondary);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.landing-stats {
	padding: 60px 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
	border-top: 1px solid rgba(148, 163, 184, 0.1);
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
	position: relative;
	overflow: hidden;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 32px;
	max-width: 900px;
	margin: 0 auto;
}

.stat-item {
	text-align: center;
	padding: 32px 24px;
	background: var(--bg-card);
	border-radius: 20px;
	border: 1px solid var(--border-color);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	border-color: var(--primary-color);
}

.stat-item:hover::before {
	opacity: 1;
}

.stat-icon {
	font-size: 40px;
	margin-bottom: 16px;
	display: block;
}

.stat-value {
	font-size: 48px;
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
	line-height: 1;
	letter-spacing: -0.02em;
}

.stat-label {
	font-size: 15px;
	color: var(--text-secondary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

html.dark .stat-value {
	background: linear-gradient(135deg, #60a5fa, #a78bfa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.landing-why {
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.landing-why h2 {
	font-size: clamp(28px, 4vw, 36px);
	margin-bottom: 40px;
	text-align: center;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.why-card {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 32px;
	border: 1px solid var(--border-color);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

.why-card strong {
	display: block;
	font-size: 20px;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.why-card p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 15px;
	line-height: 1.6;
}

.landing-features,
.landing-benefits,
.landing-faq {
	padding: 16px 0;
	position: relative;
	overflow: hidden;
}

.landing-features::before {
	content: "⚽";
	position: absolute;
	font-size: 120px;
	opacity: 0.05;
	right: -30px;
	top: 20%;
	transform: rotate(-20deg);
	animation: floatBall 12s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

.landing-features::after {
	content: "⚽";
	position: absolute;
	font-size: 100px;
	opacity: 0.04;
	left: -20px;
	bottom: 10%;
	transform: rotate(25deg);
	animation: floatBall 15s ease-in-out infinite reverse;
	pointer-events: none;
	z-index: 0;
}

.landing-faq::before {
	content: "⚽";
	position: absolute;
	font-size: 140px;
	opacity: 0.05;
	right: -40px;
	top: 30%;
	transform: rotate(15deg);
	animation: floatBall 14s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

.landing-faq::after {
	content: "⚽";
	position: absolute;
	font-size: 110px;
	opacity: 0.04;
	left: -25px;
	bottom: 20%;
	transform: rotate(-30deg);
	animation: floatBall 11s ease-in-out infinite reverse;
	pointer-events: none;
	z-index: 0;
}

.landing-close {
	position: relative;
	overflow: hidden;
}

.landing-close::before {
	content: "⚽";
	position: absolute;
	font-size: 130px;
	opacity: 0.05;
	right: -35px;
	top: 50%;
	transform: translateY(-50%) rotate(20deg);
	animation: floatBall 13s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

.landing-close::after {
	content: "⚽";
	position: absolute;
	font-size: 90px;
	opacity: 0.04;
	left: -20px;
	top: 20%;
	transform: rotate(-15deg);
	animation: floatBall 16s ease-in-out infinite reverse;
	pointer-events: none;
	z-index: 0;
}

html.dark .landing-features::before,
html.dark .landing-features::after,
html.dark .landing-faq::before,
html.dark .landing-faq::after,
html.dark .landing-close::before,
html.dark .landing-close::after {
	opacity: 0.02;
}

.section-header-with-icon {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.section-icon {
	font-size: 36px;
	line-height: 1;
}

.landing-features h2,
.landing-benefits h2,
.landing-faq h2 {
	font-size: clamp(28px, 4vw, 36px);
	margin: 0;
}

.landing-features p,
.landing-benefits p,
.landing-faq p {
	color: var(--text-secondary);
	max-width: 680px;
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 1.6;
}

.landing-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	position: relative;
	z-index: 1;
}

.landing-feature-card {
	background: var(--bg-card);
	border-radius: 16px;
	border: 1px solid var(--border-color);
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	display: grid;
	gap: 10px;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}

.landing-feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6);
	opacity: 0.9;
}

.landing-feature-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}

html.dark .landing-feature-card {
	background: rgba(30, 41, 59, 0.6);
	border-color: rgba(148, 163, 184, 0.2);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

html.dark .landing-feature-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
	border-color: rgba(59, 130, 246, 0.5);
}

.landing-feature-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(59, 130, 246, 0.12);
	color: #2563eb;
	font-weight: 700;
}

.landing-feature-card strong {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 6px;
}

.landing-feature-card p {
	margin: 0 0 14px;
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
}

.landing-feature-card ul {
	margin: 0;
	padding: 0 0 0 22px;
	list-style: none;
	color: var(--text-primary);
	font-size: 14px;
	line-height: 1.7;
}

.landing-feature-card li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 4px;
}

.landing-feature-card li::before {
	content: "✓";
	position: absolute;
	left: -20px;
	color: #3b82f6;
	font-weight: 700;
	font-size: 14px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.benefit-card {
	background: rgba(15, 23, 42, 0.55);
	color: #e2e8f0;
	padding: 26px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.benefit-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(236, 72, 153, 0.25));
	opacity: 0.25;
}

.benefit-card > * {
	position: relative;
	z-index: 1;
}

.benefit-card strong {
	display: block;
	font-size: 18px;
	margin-bottom: 12px;
}

.benefit-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
	font-size: 14px;
}

.benefit-card li::before {
	content: "✔";
	color: #34d399;
	margin-right: 8px;
}

.landing-cta {
	margin: 20px 0;
	padding: 48px 24px;
	background: linear-gradient(135deg, #1d4ed8, #7c3aed);
	color: #f8fafc;
	text-align: center;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(29, 78, 216, 0.25);
}

.landing-cta h2 {
	color: #ffffff;
	margin-bottom: 12px;
}

.landing-cta > .landing-container > p {
	color: rgba(248, 250, 252, 0.9);
	margin-bottom: 28px;
	font-size: 16px;
	line-height: 1.6;
}

.landing-cta-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.landing-cta-actions .btn {
	min-width: 180px;
	font-size: 16px;
	padding: 14px 28px;
	font-weight: 600;
}

.landing-cta-actions .btn-primary {
	background: #ffffff;
	color: #1d4ed8;
	border: none;
}

.landing-cta-actions .btn-primary:hover {
	background: rgba(255, 255, 255, 0.95);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.landing-cta-actions .btn-secondary {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.landing-cta-actions .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.landing-cta-features {
	color: rgba(248, 250, 252, 0.85);
	font-size: 14px;
	margin: 0;
	line-height: 1.6;
}

html.dark .landing-cta {
	box-shadow: 0 8px 24px rgba(29, 78, 216, 0.4);
}

.landing-close {
	padding: 120px 0;
	text-align: center;
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
	border-radius: 40px;
	margin: 60px 0;
	border: 2px solid rgba(59, 130, 246, 0.3);
	box-shadow: 0 20px 80px rgba(59, 130, 246, 0.2), inset 0 0 100px rgba(59, 130, 246, 0.05);
	overflow: hidden;
}

.landing-close::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
	animation: rotateGlow 20s linear infinite;
	pointer-events: none;
}

.landing-close::after {
	content: "";
	position: absolute;
	top: -100%;
	right: -100%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
	animation: rotateGlow 25s linear infinite reverse;
	pointer-events: none;
}

@keyframes rotateGlow {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.landing-close-content {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.landing-close-content > * {
	position: relative;
	z-index: 2;
}

.close-visual-effects {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1;
}

.close-particle {
	position: absolute;
	font-size: 40px;
	opacity: 0.2;
	animation: floatParticle 15s ease-in-out infinite;
	filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
}

.particle-1 {
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.particle-2 {
	top: 20%;
	right: 15%;
	animation-delay: 2s;
}

.particle-3 {
	bottom: 15%;
	left: 20%;
	animation-delay: 4s;
}

.particle-4 {
	bottom: 25%;
	right: 10%;
	animation-delay: 6s;
}

.particle-5 {
	top: 50%;
	left: 5%;
	animation-delay: 1s;
}

.particle-6 {
	top: 60%;
	right: 5%;
	animation-delay: 3s;
}

.close-sparkle {
	position: absolute;
	font-size: 24px;
	opacity: 0;
	animation: sparkleAnimation 3s ease-in-out infinite;
}

.sparkle-1 {
	top: 15%;
	left: 30%;
	animation-delay: 0.5s;
}

.sparkle-2 {
	top: 40%;
	right: 25%;
	animation-delay: 1.5s;
}

.sparkle-3 {
	bottom: 30%;
	left: 15%;
	animation-delay: 2.5s;
}

.sparkle-4 {
	bottom: 20%;
	right: 30%;
	animation-delay: 0.8s;
}

@keyframes sparkleAnimation {
	0%, 100% {
		opacity: 0;
		transform: scale(0) rotate(0deg);
	}
	50% {
		opacity: 1;
		transform: scale(1.5) rotate(180deg);
	}
}

@keyframes floatParticle {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
		opacity: 0.2;
	}
	25% {
		transform: translate(30px, -40px) rotate(90deg);
		opacity: 0.3;
	}
	50% {
		transform: translate(-20px, -60px) rotate(180deg);
		opacity: 0.15;
	}
	75% {
		transform: translate(35px, -30px) rotate(270deg);
		opacity: 0.3;
	}
}

.close-icon-wrapper {
	margin-bottom: 32px;
	position: relative;
	display: inline-block;
}

.close-main-icon {
	font-size: 80px;
	display: inline-block;
	animation: bounceIcon 2s ease-in-out infinite;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
}

.close-icon-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 140px;
	height: 140px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.3), transparent 70%);
	border-radius: 50%;
	animation: pulseGlow 2s ease-in-out infinite;
	z-index: 1;
}

.close-icon-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 2px solid rgba(59, 130, 246, 0.3);
	border-radius: 50%;
	z-index: 1;
}

.ring-1 {
	width: 160px;
	height: 160px;
	animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
	width: 200px;
	height: 200px;
	animation: ringPulse 3s ease-in-out infinite 1s;
}

.ring-3 {
	width: 240px;
	height: 240px;
	animation: ringPulse 3s ease-in-out infinite 2s;
}

@keyframes ringPulse {
	0%, 100% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.6;
		transform: translate(-50%, -50%) scale(1.1);
	}
}

@keyframes pulseGlow {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.6;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.4);
		opacity: 1;
	}
}

@keyframes bounceIcon {
	0%, 100% {
		transform: translateY(0) scale(1) rotate(0deg);
	}
	25% {
		transform: translateY(-15px) scale(1.1) rotate(-5deg);
	}
	50% {
		transform: translateY(-20px) scale(1.15) rotate(0deg);
	}
	75% {
		transform: translateY(-15px) scale(1.1) rotate(5deg);
	}
}

.landing-close h2 {
	font-size: clamp(36px, 5vw, 48px);
	margin-bottom: 20px;
	color: var(--text-primary);
	font-weight: 800;
	background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.02em;
}

.close-subtitle {
	color: var(--text-secondary);
	font-size: 20px;
	margin-bottom: 48px;
	line-height: 1.7;
	font-weight: 500;
}

.landing-close-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 32px;
}

.btn-large {
	font-size: 20px;
	padding: 22px 52px;
	font-weight: 700;
	box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5), 0 0 0 0 rgba(59, 130, 246, 0.7);
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	position: relative;
	overflow: hidden;
	animation: buttonPulse 3s ease-in-out infinite;
}

.btn-shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: shineMove 3s ease-in-out infinite;
}

@keyframes shineMove {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

@keyframes buttonPulse {
	0%, 100% {
		box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5), 0 0 0 0 rgba(59, 130, 246, 0.7);
	}
	50% {
		box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6), 0 0 0 8px rgba(59, 130, 246, 0);
	}
}

.btn-large::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s ease;
	z-index: 1;
}

.btn-large:hover::before {
	left: 100%;
}

.btn-large:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 16px 50px rgba(59, 130, 246, 0.6), 0 0 0 4px rgba(59, 130, 246, 0.2);
	animation: none;
}

.btn-text {
	position: relative;
	z-index: 1;
}

.btn-arrow {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
	font-size: 24px;
}

.btn-large:hover .btn-arrow {
	transform: translateX(4px);
}

.close-trust-badges {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.trust-badge {
	padding: 12px 24px;
	background: rgba(59, 130, 246, 0.12);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 24px;
	transition: all 0.3s ease;
	animation: badgeFloat 4s ease-in-out infinite;
	position: relative;
	font-size: 14px;
	color: var(--text-primary);
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.trust-badge:nth-child(1) {
	animation-delay: 0s;
}

.trust-badge:nth-child(2) {
	animation-delay: 1.3s;
}

.trust-badge:nth-child(3) {
	animation-delay: 2.6s;
}

@keyframes badgeFloat {
	0%, 100% {
		transform: translateY(0);
		box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
	}
	50% {
		transform: translateY(-6px);
		box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
	}
}

.trust-badge:hover {
	transform: translateY(-4px) scale(1.05);
	background: rgba(59, 130, 246, 0.2);
	border-color: rgba(59, 130, 246, 0.4);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

html.dark .landing-close {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
	border-color: rgba(59, 130, 246, 0.3);
}

html.dark .trust-badge {
	background: rgba(59, 130, 246, 0.15);
	border-color: rgba(59, 130, 246, 0.3);
}

.landing-faq-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
	position: relative;
	z-index: 1;
}

.landing-faq-item {
	background: var(--bg-card);
	border-radius: 16px;
	border: 1px solid rgba(148, 163, 184, 0.2);
	padding: 20px 22px;
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.landing-faq-item strong {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
}

.landing-footer {
	text-align: center;
	color: var(--text-secondary);
	font-size: 13px;
	padding-bottom: 40px;
}

@media (max-width: 960px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		order: -1;
	}

	.dashboard-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.public-landing {
		gap: 56px;
	}

	.landing-hero {
		padding: 80px 0 48px;
	}

	.hero-actions {
		width: 100%;
	}
	.hero-actions .btn {
		flex: 1 1 120px;
		justify-content: center;
	}

	.hero-metrics {
		gap: 16px;
	}

	.benefit-card {
		padding: 22px;
	}
}

/* Login / Auth public pages */

.auth-wrapper {
	width: min(1040px, 94%);
	margin: 80px auto 48px;
	position: relative;
	z-index: 1;
}

.auth-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 32px;
	align-items: stretch;
}

.auth-info-panel {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(16, 185, 129, 0.08));
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: 24px;
	padding: 36px;
	box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.auth-title {
	font-size: clamp(32px, 4vw, 40px);
	margin: 0;
	color: var(--text-primary);
}

.auth-lede {
	font-size: 16px;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.6;
}

.eyebrow-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(59, 130, 246, 0.15);
	color: #1e3a8a;
}

.eyebrow-badge.accent {
	background: rgba(59, 130, 246, 0.2);
	color: #1d4ed8;
}

.eyebrow-badge.muted {
	background: rgba(148, 163, 184, 0.2);
	color: var(--text-secondary);
}

.security-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.security-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.45);
	border-radius: 16px;
	padding: 14px 18px;
	border: 1px solid rgba(148, 163, 184, 0.25);
}

.security-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(59, 130, 246, 0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.security-list strong {
	display: block;
	color: var(--text-primary);
	margin-bottom: 4px;
}

.security-list p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 14px;
}

.info-banner {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 18px;
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(148, 163, 184, 0.25);
	color: var(--text-primary);
}

.info-banner svg {
	color: var(--primary-color);
}

.info-banner p {
	margin: 4px 0 0;
	color: var(--text-secondary);
	font-size: 14px;
}

.auth-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-height: 100%;
}

.auth-card-header {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
}

.auth-card-header h2 {
	margin: 8px 0 6px;
	font-size: 24px;
}

.auth-card-header p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 14px;
}

.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.15);
	color: #047857;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.auth-alerts {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.input-with-icon .input-shell {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 0 14px;
	background: var(--bg-input);
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.input-with-icon .input-shell:focus-within {
	border-color: var(--primary-color);
	box-shadow: var(--focus-ring);
}

.input-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
}

.input-shell .form-input {
	border: none;
	padding-left: 0;
	box-shadow: none;
	background: transparent;
}

.password-guidelines {
	list-style: none;
	margin: 4px 0 16px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 13px;
	color: var(--text-secondary);
}

.auth-card-footer {
	padding-top: 16px;
	border-top: 1px solid var(--border-color);
}

.form-helper-text {
	font-size: 13px;
	color: var(--text-secondary);
	margin: 0;
}

.form-helper-text a {
	color: var(--primary-color);
	font-weight: 600;
}

.auth-trust {
	display: flex;
	gap: 18px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 32px;
	font-size: 13px;
	color: var(--text-secondary);
}

.auth-trust span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(148, 163, 184, 0.3);
}

.auth-trust svg {
	color: var(--primary-color);
}

.auth-alerts .message {
	margin-bottom: 0;
}

.auth-alerts .success,
.auth-alerts .error {
	margin: 0;
}

.public-wrapper {
	width: min(760px, 92%);
	margin: 80px auto;
}

.public-hero {
	text-align: center;
	margin-bottom: 28px;
}

.public-hero-title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-primary);
}

.public-hero-subtitle {
	font-size: clamp(16px, 2vw, 20px);
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin: 24px 0 32px;
}

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 14px;
	padding: 18px 16px;
	text-align: left;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.feature-card strong {
	display: block;
	margin-bottom: 8px;
	color: var(--text-primary);
	font-size: 15px;
}

.feature-card span {
	font-size: 13px;
	color: var(--text-secondary);
}

.login-card {
	background: var(--bg-card);
	border-radius: 18px;
	border: 1px solid var(--border-color);
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
	padding: 32px;
}

.login-card h2 {
	font-size: 24px;
	margin-bottom: 8px;
	color: var(--text-primary);
}

.login-card p {
	margin: 0 0 24px;
	color: var(--text-secondary);
}

.login-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 24px;
	gap: 12px;
}

.form-error {
	margin-bottom: 18px;
}

.form-success {
	margin-bottom: 18px;
	padding: 12px 16px;
	border-radius: 10px;
	background: var(--badge-success-bg);
	color: var(--badge-success-text);
	font-weight: 600;
}

.form-helper {
	margin-top: -12px;
	margin-bottom: 12px;
	text-align: right;
}

.form-helper a {
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
}

.form-helper a:hover,
.form-helper a:focus-visible {
	text-decoration: underline;
}

.trust-indicators {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	padding-top: 24px;
	border-top: 1px solid var(--border-color);
	font-size: 13px;
	color: var(--text-secondary);
}

.trust-indicators span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

@media (max-width: 960px) {
	.auth-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.auth-wrapper {
		margin: 60px auto 32px;
	}
	
	.auth-info-panel,
	.auth-card {
		padding: 24px;
	}
	
	.auth-card-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.public-wrapper {
		margin: 64px auto 40px;
	}

	.login-card {
		padding: 24px 20px;
	}

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


