/* =============================================
   WM-Tippspiel 2026 – Index/Landing Page
   ============================================= */

/* --- Hero --- */
.wm-hero {
	position: relative;
	background: linear-gradient(135deg, var(--wm-primary) 0%, var(--wm-secondary) 100%);
	color: white;
	overflow: hidden;
	padding: 5rem 1.5rem 4rem;
	text-align: center;
}
.wm-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(200, 164, 21, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.15) 0%, transparent 50%);
}
.wm-hero__content {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}
.wm-hero__flags {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.wm-hero__flags .fi {
	font-size: 2.5rem;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.wm-hero h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 900;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}
.wm-hero__subtitle {
	font-size: 1.125rem;
	opacity: 0.9;
	margin-bottom: 0.5rem;
}
.wm-hero__meta {
	font-size: 0.875rem;
	opacity: 0.7;
	margin-bottom: 2rem;
}
.wm-hero__cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.wm-hero__closed {
	margin-top: 1rem;
	padding: 0.6rem 1.2rem;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.9);
}

/* --- Steps --- */
.wm-steps {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 4rem 1.5rem;
	text-align: center;
}
.wm-steps h2 {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--wm-primary);
	margin-bottom: 2.5rem;
}
.wm-steps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}
.wm-step {
	padding: 2rem 1.5rem;
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: transform 0.2s var(--ease);
}
.wm-step:hover { transform: translateY(-4px); }
.wm-step__icon {
	width: 3rem; height: 3rem;
	background: var(--wm-primary);
	color: var(--wm-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 auto 1rem;
}
.wm-step h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--wm-primary);
}
.wm-step p {
	font-size: 0.875rem;
	color: var(--txt-light);
	line-height: 1.5;
}

/* --- Points System --- */
.wm-points {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 2rem 1.5rem 4rem;
	text-align: center;
}
.wm-points h2 {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--wm-primary);
	margin-bottom: 2rem;
}
.wm-points__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.wm-points__card {
	padding: 1.5rem 1rem;
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.wm-points__value {
	font-size: 2.5rem;
	font-weight: 900;
}
.wm-points__label {
	font-size: 0.8125rem;
	font-weight: 600;
	margin-top: 0.25rem;
}
.wm-points__card--exact {
	background: #d1fae5; color: var(--exact);
}
.wm-points__card--diff {
	background: #fef3c7; color: var(--diff);
}
.wm-points__card--tendency {
	background: #dbeafe; color: var(--tendency);
}
.wm-points__card--wrong {
	background: #fee2e2; color: var(--wrong);
}
.wm-points__bonus {
	font-size: 0.9375rem;
	color: var(--txt-light);
}

/* --- Mobile --- */
@media (max-width: 768px) {
	.wm-hero { padding: 3rem 1rem 2.5rem; }
	.wm-hero__subtitle { font-size: 1rem; }
	.wm-hero__meta { margin-bottom: 1.5rem; }
	.wm-hero__cta { flex-direction: column; align-items: center; gap: 0.75rem; }
	.wm-hero__cta .btn { width: 100%; max-width: 320px; }
	.wm-steps { padding: 2.5rem 1rem; }
	.wm-steps h2,
	.wm-points h2 { font-size: 1.375rem; margin-bottom: 1.5rem; }
	.wm-steps__grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
	.wm-step { padding: 1.25rem 1rem; }
	.wm-points { padding: 1.5rem 1rem 2.5rem; }
	.wm-points__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.wm-hero { padding: 2rem 0.75rem 1.5rem; }
	.wm-hero__flags .fi { font-size: 2rem; }
	.wm-hero__flags { gap: 0.75rem; margin-bottom: 1rem; }
	.wm-steps__grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
	.wm-step { padding: 1rem 0.75rem; }
	.wm-step__icon { width: 2.5rem; height: 2.5rem; font-size: 1rem; }
	.wm-step h3 { font-size: 0.9375rem; }
	.wm-step p { font-size: 0.8125rem; }
	.wm-points__value { font-size: 2rem; }
	.wm-points__bonus { font-size: 0.8125rem; }
}
