@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@400;600;700&display=swap");

:root {
	--alllfc-red: #c8102e;
	--alllfc-red-deep: #8b0a1e;
	--alllfc-ink: #0f1419;
	--alllfc-muted: #5c6670;
	--alllfc-paper: #f7f3ee;
	--alllfc-panel: #ffffff;
	--alllfc-yes: #1db954;
	--alllfc-yes-glow: rgba(29, 185, 84, 0.55);
	--alllfc-no: #e10600;
	--alllfc-no-glow: rgba(225, 6, 0, 0.55);
	--alllfc-line: rgba(15, 20, 25, 0.12);
	--alllfc-max: 720px;
	--alllfc-chart-max: 100%;
}

* {
	box-sizing: border-box;
}

.alllfc-st-body {
	margin: 0;
	font-family: "Source Sans 3", system-ui, sans-serif;
	color: var(--alllfc-ink);
	background:
		radial-gradient(1200px 600px at 50% -10%, rgba(200, 16, 46, 0.18), transparent 60%),
		linear-gradient(180deg, #fffdf9 0%, var(--alllfc-paper) 45%, #ebe4da 100%);
	min-height: 100vh;
}

.alllfc-st {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.alllfc-st__hero {
	max-width: var(--alllfc-max);
	margin: 0 auto;
	padding: clamp(1.5rem, 4vw, 3rem) 1.25rem 2rem;
	text-align: center;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	animation: alllfc-fade-up 0.7s ease both;
}

.alllfc-st__brand {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	text-decoration: none;
	color: inherit;
}

.alllfc-st__logo {
	width: 96px;
	height: auto;
	filter: drop-shadow(0 8px 18px rgba(15, 20, 25, 0.12));
}

.alllfc-st__brand-text {
	font-family: "Bebas Neue", Impact, sans-serif;
	font-size: clamp(2.4rem, 8vw, 3.6rem);
	letter-spacing: 0.06em;
	line-height: 0.95;
	color: var(--alllfc-red);
}

.alllfc-st__eyebrow {
	margin: 0.5rem 0 0;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--alllfc-muted);
}

.alllfc-st__headline {
	margin: 0;
	font-family: "Bebas Neue", Impact, sans-serif;
	font-size: clamp(1.8rem, 6vw, 2.8rem);
	letter-spacing: 0.02em;
	line-height: 1.05;
	font-weight: 400;
	max-width: 16ch;
}

.alllfc-st__lights {
	display: flex;
	gap: 1rem;
	margin: 1rem 0 0.25rem;
	width: min(100%, 420px);
}

.alllfc-st__light {
	flex: 1;
	border-radius: 1.25rem;
	padding: 1.4rem 0.75rem;
	border: 2px solid var(--alllfc-line);
	background: #ddd6cc;
	transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease, background 0.35s ease;
}

.alllfc-st__light-label {
	font-family: "Bebas Neue", Impact, sans-serif;
	font-size: clamp(2.8rem, 12vw, 4.2rem);
	letter-spacing: 0.04em;
	line-height: 1;
	display: block;
}

.alllfc-st__light--yes.is-on {
	background: linear-gradient(160deg, #2ce36a, var(--alllfc-yes));
	color: #04150a;
	box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.25), 0 0 42px var(--alllfc-yes-glow);
	animation: alllfc-pulse-yes 2.2s ease-in-out infinite;
}

.alllfc-st__light--no.is-on {
	background: linear-gradient(160deg, #ff4d4d, var(--alllfc-no));
	color: #1a0404;
	box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.22), 0 0 42px var(--alllfc-no-glow);
	animation: alllfc-pulse-no 2.2s ease-in-out infinite;
}

.alllfc-st__light.is-off {
	filter: grayscale(0.85) brightness(0.78);
	opacity: 0.45;
	transform: scale(0.96);
}

.alllfc-st__note,
.alllfc-st__meta {
	margin: 0;
	color: var(--alllfc-muted);
	max-width: 36rem;
	line-height: 1.45;
}

.alllfc-st__meta {
	font-size: 0.92rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem 0.55rem;
}

.alllfc-st__meta-sep {
	opacity: 0.5;
}

.alllfc-st__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	margin-top: 0.75rem;
	width: 100%;
}

.alllfc-st__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.85rem 1.4rem;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.alllfc-st__btn--primary {
	background: var(--alllfc-red);
	color: #fff;
	box-shadow: 0 10px 24px rgba(200, 16, 46, 0.28);
}

.alllfc-st__btn--primary:hover,
.alllfc-st__btn--primary:focus-visible {
	transform: translateY(-2px);
	background: var(--alllfc-red-deep);
}

.alllfc-st__btn--ghost {
	background: transparent;
	color: var(--alllfc-ink);
	border: 1px solid var(--alllfc-line);
}

.alllfc-st__store img {
	display: block;
	width: 180px;
	height: auto;
}

.alllfc-st__main {
	max-width: none;
	margin: 0;
	padding: 0 0 3rem;
	width: 100%;
	animation: alllfc-fade-up 0.85s ease 0.12s both;
}

.alllfc-st__chart-section,
.alllfc-st__promo,
.alllfc-st__disclaimer {
	background: var(--alllfc-panel);
	border: 1px solid var(--alllfc-line);
	border-radius: 0;
	padding: 1.35rem clamp(0.85rem, 2vw, 1.75rem);
	margin-bottom: 1.1rem;
	box-shadow: 0 12px 30px rgba(15, 20, 25, 0.05);
}

/* Full-bleed chart across the viewport */
.alllfc-st__chart-section {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	border-left: 0;
	border-right: 0;
	box-sizing: border-box;
}

.alllfc-st__promo,
.alllfc-st__disclaimer,
.alllfc-ad {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 1.25rem;
	width: calc(100% - 2.5rem);
}

.alllfc-st__chart-section h2,
.alllfc-st__promo h2 {
	margin: 0 0 0.4rem;
	font-family: "Bebas Neue", Impact, sans-serif;
	font-size: 1.8rem;
	letter-spacing: 0.03em;
	font-weight: 400;
}

.alllfc-st__chart-intro,
.alllfc-st__promo p,
.alllfc-st__empty,
.alllfc-st__disclaimer p {
	margin: 0;
	color: var(--alllfc-muted);
	line-height: 1.5;
}

.alllfc-st__chart {
	margin-top: 1.25rem;
	display: grid;
	gap: 1rem;
}

.alllfc-st__chart-axis {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.45rem;
	align-items: end;
	font-size: 0.62rem;
	letter-spacing: 0.01em;
	color: var(--alllfc-muted);
	font-weight: 700;
	text-transform: none;
}

.alllfc-st__chart-yhead {
	display: none;
}

.alllfc-st__chart-xhead {
	display: grid;
	grid-template-columns: repeat(var(--alllfc-steps, 10), minmax(0, 1fr));
	gap: 0.15rem;
	text-align: center;
	min-width: 0;
}

.alllfc-st__chart-xhead span {
	line-height: 1.15;
	padding: 0 0.05rem;
	min-width: 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	word-break: break-word;
	hyphens: auto;
}

@media (max-width: 899px) {
	.alllfc-st__chart-xhead {
		overflow-x: auto;
		overscroll-behavior-x: contain;
		grid-template-columns: repeat(var(--alllfc-steps, 10), minmax(3.4rem, 1fr));
		padding-bottom: 0.35rem;
		-webkit-overflow-scrolling: touch;
	}

	.alllfc-st__chart-xhead span {
		font-size: 0.58rem;
		-webkit-line-clamp: 3;
		line-clamp: 3;
	}
}

@media (min-width: 900px) {
	.alllfc-st__chart-axis {
		grid-template-columns: minmax(160px, 220px) 1fr;
		gap: 0.85rem;
		font-size: 0.68rem;
	}

	.alllfc-st__chart-yhead {
		display: block;
	}
}

.alllfc-st__chart-row {
	display: grid;
	gap: 0.55rem;
}

@media (min-width: 900px) {
	.alllfc-st__chart-row {
		grid-template-columns: minmax(160px, 220px) 1fr;
		align-items: center;
	}
}

.alllfc-st__chart-player {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.alllfc-st__chart-player strong {
	font-size: 1.05rem;
}

.alllfc-st__chart-player span {
	font-size: 0.85rem;
	color: var(--alllfc-muted);
}

.alllfc-st__bar-wrap {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.65rem;
	align-items: center;
}

.alllfc-st__bar-track {
	position: relative;
	height: 2rem;
	border-radius: 999px;
	background: #efe8df;
	overflow: hidden;
	border: 1px solid var(--alllfc-line);
}

.alllfc-st__bar-fill {
	position: absolute;
	inset: 0 auto 0 0;
	background: linear-gradient(90deg, #f0a500, var(--alllfc-red), #1a7a3c);
	border-radius: inherit;
	transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.alllfc-st__bar-steps {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.alllfc-st__bar-steps span {
	border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.alllfc-st__bar-steps span:last-child {
	border-right: 0;
	background: linear-gradient(90deg, transparent, rgba(26, 122, 60, 0.18));
}

.alllfc-st__bar-pct {
	font-weight: 700;
	font-size: 0.9rem;
	min-width: 3.25rem;
	text-align: right;
	color: transparent;
}

.alllfc-st__bar-pct:not(:empty) {
	color: inherit;
}

.alllfc-st__chart-row.is-confirmed .alllfc-st__bar-fill {
	background: linear-gradient(90deg, #2ce36a, #1db954);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.alllfc-st__chart-row.is-confirmed .alllfc-st__bar-pct {
	color: #147a38;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.alllfc-st__promo {
	text-align: center;
}

.alllfc-st__promo .alllfc-st__btn {
	margin-top: 1rem;
}

.alllfc-ad {
	margin: 0 0 1.1rem;
	min-height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.55);
	border: 1px dashed var(--alllfc-line);
	border-radius: 1rem;
	overflow: hidden;
}

.alllfc-st__disclaimer {
	font-size: 0.88rem;
}

.alllfc-st__footer {
	margin-top: auto;
	padding: 1.5rem 1.25rem 2rem;
	text-align: center;
	color: var(--alllfc-muted);
	font-size: 0.9rem;
}

.alllfc-st__footer a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.alllfc-st__footer p {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	justify-content: center;
}

.alllfc-st--privacy {
	max-width: 46rem;
	margin: 0 auto;
}

.alllfc-st__legal-header {
	padding: 2.5rem 1.25rem 1rem;
	text-align: center;
}

.alllfc-st__legal-header .alllfc-st__brand {
	margin: 0 0 0.75rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.alllfc-st__legal-header .alllfc-st__brand a {
	color: var(--alllfc-red);
	text-decoration: none;
}

.alllfc-st__legal-header h1 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.alllfc-st__legal-meta {
	margin: 0;
	color: var(--alllfc-muted);
}

.alllfc-st__legal-main {
	padding: 0 1.25rem 2rem;
}

.alllfc-st__legal-prose {
	line-height: 1.65;
	color: #1c1a17;
}

.alllfc-st__legal-prose h2 {
	margin: 2rem 0 0.75rem;
	font-size: 1.2rem;
}

.alllfc-st__legal-prose h3 {
	margin: 1.35rem 0 0.5rem;
	font-size: 1.05rem;
}

.alllfc-st__legal-prose p,
.alllfc-st__legal-prose ul {
	margin: 0 0 1rem;
}

.alllfc-st__legal-prose ul {
	padding-left: 1.2rem;
}

.alllfc-st__legal-prose li {
	margin: 0 0 0.55rem;
}

.alllfc-st__legal-prose a {
	color: var(--alllfc-red);
}

@keyframes alllfc-fade-up {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes alllfc-pulse-yes {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.25), 0 0 34px var(--alllfc-yes-glow);
	}
	50% {
		box-shadow: 0 0 0 5px rgba(29, 185, 84, 0.35), 0 0 54px var(--alllfc-yes-glow);
	}
}

@keyframes alllfc-pulse-no {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.22), 0 0 34px var(--alllfc-no-glow);
	}
	50% {
		box-shadow: 0 0 0 5px rgba(225, 6, 0, 0.32), 0 0 54px var(--alllfc-no-glow);
	}
}

@media (prefers-reduced-motion: reduce) {
	.alllfc-st__hero,
	.alllfc-st__main,
	.alllfc-st__light--yes.is-on,
	.alllfc-st__light--no.is-on,
	.alllfc-st__bar-fill {
		animation: none;
		transition: none;
	}
}
