/* ==========================================================================
   LAN Party — FX layer
   Logo, CTA treatment and motion. Loaded after neon.css so it wins.
   ========================================================================== */

@property --lp-ang {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}

/* --- Logo ---------------------------------------------------------------- */

.lp-logo {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	line-height: 1;
}

.lp-logo-mark {
	flex: none;
	filter: drop-shadow(0 0 14px rgba(34, 224, 255, .5));
	transition: transform .35s cubic-bezier(.2, .9, .3, 1), filter .35s ease;
}

.lp-brand:hover .lp-logo-mark {
	transform: rotate(-6deg) scale(1.06);
	filter: drop-shadow(0 0 20px rgba(196, 113, 255, .75));
}

.lp-logo-text { display: grid; gap: 3px; }

.lp-logo-kicker {
	font-family: var(--font-display);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .34em;
	text-transform: uppercase;
	color: var(--electric);
}

.lp-logo-name {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .015em;
	text-transform: uppercase;
	background: linear-gradient(96deg, #fff 10%, var(--electric-2) 55%, var(--plasma) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lp-logo--lg .lp-logo-name { font-size: 30px; }
.lp-logo--lg .lp-logo-kicker { font-size: 11px; }
.lp-logo--stacked { flex-direction: column; text-align: center; gap: 14px; }
.lp-logo--mono .lp-logo-name { background: none; color: currentColor; }
.lp-logo--mono .lp-logo-mark { filter: none; }

.lp-brand { text-decoration: none; }

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* --- Scroll progress ----------------------------------------------------- */

.lp-progress {
	position: fixed;
	inset: 0 0 auto 0;
	height: 3px;
	z-index: 60;
	pointer-events: none;
	background: rgba(255, 255, 255, .05);
}

.lp-progress span {
	display: block;
	height: 100%;
	transform: scaleX(0);
	transform-origin: 0 50%;
	background: linear-gradient(90deg, var(--electric), var(--plasma) 55%, var(--violet));
	box-shadow: 0 0 14px rgba(196, 113, 255, .8);
}

/* --- Ambient pixel field ------------------------------------------------- */

.lp-pixelfield {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: .75;
}

/* --- CTA buttons --------------------------------------------------------- */

.lp-btn {
	--btn-a: #22e0ff;
	--btn-b: #c471ff;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border: 2px solid transparent;
	background:
		linear-gradient(112deg, var(--btn-a), var(--btn-b) 78%) padding-box,
		conic-gradient(from var(--lp-ang), var(--electric), var(--plasma), var(--violet), var(--electric-2), var(--electric)) border-box;
	color: #04121a;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
	transform: translate(var(--mx, 0px), var(--my, 0px));
	animation: lp-ang 5s linear infinite;
	box-shadow:
		0 0 0 1px rgba(34, 224, 255, .35),
		0 10px 28px -12px rgba(34, 224, 255, .9),
		0 18px 50px -22px rgba(196, 113, 255, .8);
	transition: transform .18s cubic-bezier(.2, .9, .3, 1), box-shadow .28s ease, filter .2s ease;
}

@keyframes lp-ang { to { --lp-ang: 360deg; } }

/* Sheen that keeps sweeping, so the button never looks static. */
.lp-btn::before {
	content: "";
	position: absolute;
	inset: -40% -20%;
	z-index: -1;
	background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .5) 48%, transparent 60%);
	transform: translateX(-120%);
	animation: lp-sheen 3.6s ease-in-out infinite;
	pointer-events: none;
}

@keyframes lp-sheen {
	0%, 62% { transform: translateX(-120%); }
	100% { transform: translateX(120%); }
}

/* Warm blob that tracks the pointer. */
.lp-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(120px 60px at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, .45), transparent 70%);
	opacity: 0;
	transition: opacity .25s ease;
	pointer-events: none;
}

.lp-btn:hover {
	transform: translate(var(--mx, 0px), calc(var(--my, 0px) - 3px));
	filter: saturate(1.1) brightness(1.04);
	box-shadow:
		0 0 0 1px rgba(196, 113, 255, .6),
		0 14px 34px -10px rgba(34, 224, 255, 1),
		0 26px 64px -22px rgba(123, 92, 255, .9);
}

.lp-btn:hover::after { opacity: 1; }
.lp-btn:active { transform: translate(var(--mx, 0px), 0) scale(.97); }

.lp-btn--lg {
	font-size: 17px;
	letter-spacing: .06em;
	padding: 18px 38px;
}

/* Slow heartbeat on the primary hero call to action. */
.lp-hero-actions .lp-btn:first-child {
	animation: lp-ang 5s linear infinite, lp-throb 2.6s ease-in-out infinite;
}

@keyframes lp-throb {
	0%, 100% {
		box-shadow:
			0 0 0 1px rgba(34, 224, 255, .35),
			0 10px 28px -12px rgba(34, 224, 255, .9),
			0 0 0 0 rgba(196, 113, 255, .5);
	}
	60% {
		box-shadow:
			0 0 0 1px rgba(34, 224, 255, .5),
			0 14px 34px -12px rgba(34, 224, 255, 1),
			0 0 0 18px rgba(196, 113, 255, 0);
	}
}

/* The conic layer is clipped to border-box, so it shows through anything
   translucent. The ghost fill therefore has to be opaque. */
.lp-btn--ghost {
	--btn-a: #1a1029;
	--btn-b: #12091f;
	color: var(--text);
	text-shadow: none;
	box-shadow: none;
}

.lp-btn--ghost:hover {
	--btn-a: #241640;
	--btn-b: #180e2c;
	box-shadow: 0 12px 30px -18px rgba(34, 224, 255, .9);
}

.lp-btn--ghost::before { animation-duration: 5.4s; opacity: .3; }

.lp-ripple {
	position: absolute;
	width: 14px;
	height: 14px;
	margin: -7px 0 0 -7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .5);
	pointer-events: none;
	animation: lp-ripple .6s ease-out forwards;
}

@keyframes lp-ripple {
	to { transform: scale(14); opacity: 0; }
}

.lp-round-btn,
.lp-zoom-btn,
.lp-chip { position: relative; overflow: hidden; }

/* --- Hero: synthwave floor ------------------------------------------------ */

.lp-hero::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -30px;
	width: 260%;
	height: 46%;
	transform: translateX(-50%) perspective(340px) rotateX(66deg);
	transform-origin: 50% 100%;
	background-image:
		linear-gradient(rgba(34, 224, 255, .3) 1px, transparent 1px),
		linear-gradient(90deg, rgba(196, 113, 255, .24) 1px, transparent 1px);
	background-size: 60px 44px;
	mask-image: linear-gradient(to top, #000 4%, transparent 74%);
	-webkit-mask-image: linear-gradient(to top, #000 4%, transparent 74%);
	animation: lp-floor 5.5s linear infinite;
	pointer-events: none;
	z-index: 0;
}

@keyframes lp-floor {
	to { background-position: 0 44px, 0 0; }
}

.lp-hero-inner { z-index: 1; }

.lp-hero-title {
	background: linear-gradient(180deg, #ffffff 6%, var(--electric-2) 48%, var(--plasma) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	text-shadow: 0 0 70px rgba(34, 224, 255, .35);
}

/* --- Spotlight cards ------------------------------------------------------ */

.lp-bring-card,
.lp-suggest-card,
.lp-rules li,
.lp-map-frame { position: relative; }

.lp-bring-card::after,
.lp-suggest-card::after,
.lp-rules li::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background: radial-gradient(220px 160px at var(--px, 50%) var(--py, 0%), rgba(34, 224, 255, .14), transparent 70%);
	opacity: 0;
	transition: opacity .3s ease;
}

.lp-bring-card:hover::after,
.lp-suggest-card:hover::after,
.lp-rules li:hover::after { opacity: 1; }

/* --- Turbo mode (konami code) --------------------------------------------- */

.lp-turbo { filter: saturate(1.45) contrast(1.06); }
.lp-turbo .lp-btn { animation-duration: 1.6s, 1s; }
.lp-turbo .lp-hero::before { animation-duration: 1.4s; }
.lp-turbo .lp-seat-halo { animation-duration: .9s !important; }
.lp-turbo .lp-pixelfield { opacity: 1; }

/* --- Sticky header state --------------------------------------------------- */

body.is-scrolled .lp-header {
	box-shadow: 0 10px 40px -24px rgba(196, 113, 255, .8);
	border-bottom-color: rgba(34, 224, 255, .28);
}

/* --- Phones ----------------------------------------------------------------- */

@media (max-width: 760px) {
	.lp-logo-name { font-size: 16px; }
	.lp-logo-kicker { font-size: 8.5px; letter-spacing: .3em; }
	.lp-btn--lg { padding: 16px 28px; font-size: 16px; width: 100%; }
	.lp-hero-actions { width: 100%; }
	.lp-hero::before { height: 38%; }
	.lp-pixelfield { opacity: .5; }
}

@media (prefers-reduced-motion: reduce) {
	.lp-btn,
	.lp-btn::before,
	.lp-hero::before,
	.lp-hero-actions .lp-btn:first-child { animation: none !important; }
}

/* --- Hero: when and where -------------------------------------------------- */

.lp-hero-when {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: -18px 0 30px;
	padding: 0;
	list-style: none;
}

.lp-hero-when span {
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .04);
	box-shadow: inset 0 0 0 1px var(--line);
	font-size: 13px;
	color: var(--text-2);
}

.lp-hero-when span:first-child {
	color: var(--electric);
	box-shadow: inset 0 0 0 1px rgba(34, 224, 255, .4);
	background: rgba(34, 224, 255, .08);
	font-weight: 600;
}

/* --- Food card -------------------------------------------------------------- */

.lp-food {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-top: 16px;
	padding: 24px 26px;
	border-radius: var(--radius);
	background:
		radial-gradient(600px 200px at 0% 0%, rgba(196, 113, 255, .12), transparent 70%),
		linear-gradient(180deg, var(--panel-2), var(--panel));
	box-shadow: var(--ring), 0 24px 50px -40px #000;
}

.lp-bring-icon--lg {
	width: 54px;
	height: 54px;
	margin: 0;
	border-radius: 15px;
	background: rgba(196, 113, 255, .12);
	box-shadow: inset 0 0 0 1px rgba(196, 113, 255, .3);
	color: var(--plasma);
	flex: none;
}

.lp-bring-icon--lg svg { width: 26px; height: 26px; }
.lp-food p { margin: 0; }

/* --- Rules: prohibitions ----------------------------------------------------- */

.lp-rules li { align-items: center; }

.lp-rule-x {
	display: grid;
	place-items: center;
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 9px;
	background: rgba(255, 59, 92, .12);
	box-shadow: inset 0 0 0 1px rgba(255, 59, 92, .35);
	color: var(--red);
}

.lp-rule-x svg { width: 14px; height: 14px; }

/* --- Rules: appliance blacklist ---------------------------------------------- */

.lp-gear {
	margin-top: 20px;
	padding: 24px 26px;
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 59, 92, .07), rgba(255, 59, 92, .02));
	box-shadow: inset 0 0 0 1px rgba(255, 59, 92, .22);
}

.lp-gear-head { margin-bottom: 14px; }
.lp-gear-head p { margin: 0; font-size: 14px; }

.lp-gear-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lp-gear-list li {
	padding: 7px 14px;
	border-radius: 999px;
	background: rgba(8, 4, 14, .6);
	box-shadow: inset 0 0 0 1px rgba(255, 59, 92, .28);
	font-size: 13.5px;
	color: var(--text-2);
	text-decoration: line-through;
	text-decoration-color: rgba(255, 59, 92, .55);
}

@media (max-width: 560px) {
	.lp-food { flex-direction: column; gap: 14px; }
	.lp-hero-when { margin-top: -10px; }
}

/* --- Logo image ------------------------------------------------------------ */

img.lp-logo-mark {
	display: block;
	border-radius: 11px;
	object-fit: cover;
}

.lp-logo-full { display: block; max-width: 100%; height: auto; }

/* --- Hero: date still to be decided ---------------------------------------- */

.lp-datepick {
	display: inline-grid;
	gap: 10px;
	justify-items: center;
	padding: 22px 30px;
	margin-bottom: 30px;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, rgba(196, 113, 255, .1), rgba(34, 224, 255, .04));
	box-shadow: inset 0 0 0 1px rgba(196, 113, 255, .3);
	max-width: 100%;
}

.lp-datepick-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 14px;
	border-radius: 999px;
	background: rgba(196, 113, 255, .16);
	color: var(--plasma);
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.lp-datepick-text { margin: 0; max-width: 46ch; color: var(--text-2); font-size: 15px; }

.lp-datepick-stat {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.lp-datepick-stat strong {
	font-family: var(--font-display);
	font-size: 26px;
	color: var(--electric);
}

/* --- Date poll -------------------------------------------------------------- */

.lp-poll-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.lp-poll-bar .lp-counter-pill { margin-left: 0; }

.lp-poll-lead {
	margin: 0;
	padding: 7px 15px;
	border-radius: 999px;
	background: rgba(196, 113, 255, .1);
	box-shadow: inset 0 0 0 1px rgba(196, 113, 255, .3);
	font-size: 13px;
	color: var(--text-2);
}

.lp-poll-lead strong { color: var(--plasma); }

.lp-poll-months { display: grid; gap: 22px; margin-bottom: 26px; }
.lp-poll-month-name {
	margin: 0 0 10px;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--muted);
}

.lp-poll-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lp-day { display: block; cursor: pointer; }
.lp-day input { position: absolute; opacity: 0; width: 0; height: 0; }

.lp-day-inner {
	display: grid;
	gap: 3px;
	padding: 12px 12px 10px;
	border-radius: 14px;
	background: linear-gradient(180deg, var(--panel-2), var(--panel));
	box-shadow: inset 0 0 0 1px var(--line);
	transition: transform .18s cubic-bezier(.2, .9, .3, 1), box-shadow .2s ease, background .2s ease;
}

.lp-day:hover .lp-day-inner { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(34, 224, 255, .5); }

.lp-day-dow {
	font-size: 10.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--muted);
}

.lp-day-num {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	color: var(--text);
}

.lp-day-count { font-size: 11.5px; color: var(--muted); }

.lp-day-bar {
	display: block;
	height: 4px;
	margin-top: 6px;
	border-radius: 99px;
	background: rgba(255, 255, 255, .07);
	overflow: hidden;
}

.lp-day-bar i {
	display: block;
	height: 100%;
	width: var(--fill, 0%);
	border-radius: 99px;
	background: linear-gradient(90deg, var(--electric), var(--plasma));
	transition: width .4s cubic-bezier(.2, .9, .3, 1);
}

.lp-day.is-picked .lp-day-inner {
	background: linear-gradient(180deg, rgba(34, 224, 255, .16), rgba(196, 113, 255, .08));
	box-shadow: inset 0 0 0 2px var(--electric), 0 14px 30px -18px rgba(34, 224, 255, .9);
}

.lp-day.is-picked .lp-day-num { color: #fff; }
.lp-day.is-picked .lp-day-count { color: var(--electric); }

.lp-day.is-lead .lp-day-inner { box-shadow: inset 0 0 0 1px rgba(196, 113, 255, .65); }
.lp-day.is-lead.is-picked .lp-day-inner { box-shadow: inset 0 0 0 2px var(--electric), 0 14px 30px -18px rgba(34, 224, 255, .9); }

.lp-day input:focus-visible + .lp-day-inner { outline: 2px solid var(--electric); outline-offset: 3px; }

.lp-poll-form {
	display: grid;
	gap: 14px;
	max-width: 560px;
	padding: clamp(20px, 3.4vw, 28px);
	border-radius: var(--radius);
	background: linear-gradient(180deg, var(--panel-2), var(--panel));
	box-shadow: var(--ring), 0 30px 60px -46px #000;
}

.lp-field-note {
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	background: rgba(34, 224, 255, .07);
	box-shadow: inset 0 0 0 1px rgba(34, 224, 255, .25);
	font-size: 13px;
	color: var(--text-2);
}

.lp-field-note svg { width: 18px; height: 18px; flex: none; color: var(--electric); margin-top: 1px; }

.lp-poll.is-done .lp-poll-form { box-shadow: var(--ring), 0 0 0 1px rgba(67, 255, 154, .4); }

/* --- Locked map ------------------------------------------------------------- */

.lp-locked {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 16px;
	padding: 14px 18px;
	border-radius: var(--radius-sm);
	background: rgba(196, 113, 255, .09);
	box-shadow: inset 0 0 0 1px rgba(196, 113, 255, .32);
	font-size: 14.5px;
	color: var(--text-2);
}

.lp-locked-icon { color: var(--plasma); flex: none; }
.lp-locked-icon svg { width: 20px; height: 20px; display: block; }
.lp-locked a { color: var(--electric); white-space: nowrap; }

.lp-locked ~ .lp-map-frame .lp-seat { cursor: help; }
.lp-locked ~ .lp-map-frame .lp-seat--free { opacity: .8; }

/* ==========================================================================
   Hero logo and the date wizard
   ========================================================================== */

.lp-hero-logo {
	margin: 0 auto 18px;
	max-width: min(420px, 74vw);
}

.lp-hero-logo img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 0 46px rgba(34, 224, 255, .3));
}

.lp-hero--wizard .lp-hero-logo { max-width: min(340px, 62vw); }
.lp-hero--wizard .lp-hero-tagline { margin-bottom: 26px; }

.lp-wizard {
	width: min(760px, 100%);
	margin: 0 auto 28px;
	padding: clamp(18px, 3vw, 26px);
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, rgba(26, 15, 42, .92), rgba(12, 6, 22, .92));
	box-shadow: inset 0 0 0 1px rgba(196, 113, 255, .28), 0 40px 90px -50px #000;
	text-align: left;
	backdrop-filter: blur(6px);
}

.lp-wizard-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 16px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--line-soft);
}

.lp-steps {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lp-step {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 11px;
	border-radius: 999px;
	font-size: 12.5px;
	color: var(--muted);
	transition: color .25s ease, background .25s ease;
}

.lp-step + .lp-step::before {
	content: "";
	width: 14px;
	height: 1px;
	margin-right: 4px;
	background: var(--line);
}

.lp-step-n {
	display: grid;
	place-items: center;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	box-shadow: inset 0 0 0 1px var(--line);
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 700;
}

.lp-step.is-current { color: var(--text); background: rgba(34, 224, 255, .1); }
.lp-step.is-current .lp-step-n {
	background: linear-gradient(135deg, var(--electric), var(--plasma));
	box-shadow: 0 0 14px rgba(34, 224, 255, .7);
	color: #04121a;
}

.lp-step.is-done { color: var(--text-2); }
.lp-step.is-done .lp-step-n {
	background: rgba(67, 255, 154, .16);
	box-shadow: inset 0 0 0 1px rgba(67, 255, 154, .5);
	color: var(--lime);
	font-size: 0;
}

.lp-step.is-done .lp-step-n::after { content: "✓"; font-size: 11px; }

@media (max-width: 620px) {
	.lp-step-l { display: none; }
	.lp-step { padding: 5px 7px; }
	.lp-wizard-head { justify-content: center; }
}

.lp-panel { animation: lp-panel-in .3s cubic-bezier(.2, .9, .3, 1); }

@keyframes lp-panel-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: none; }
}

.lp-panel-intro { margin: 0 0 16px; color: var(--text-2); font-size: 14.5px; }

.lp-panel--done { text-align: center; display: grid; gap: 12px; padding-block: 8px; }
.lp-panel--done .lp-done-mark { justify-self: center; }

.lp-wizard-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
}

.lp-wizard-nav--center { justify-content: center; }

.lp-picked-note { margin: 0; font-size: 13.5px; color: var(--muted); }
.lp-picked-note.is-ready { color: var(--electric); font-weight: 600; }

.lp-picked-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	justify-content: inherit;
}

.lp-picked-list li {
	padding: 6px 13px;
	border-radius: 999px;
	background: rgba(34, 224, 255, .1);
	box-shadow: inset 0 0 0 1px rgba(34, 224, 255, .35);
	font-size: 13px;
	color: var(--text);
}

.lp-panel--done .lp-picked-list { justify-content: center; }

/* --- Compact month calendar ------------------------------------------------ */

.lp-cal {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 18px 20px;
}

.lp-cal-month { min-width: 0; }

.lp-cal-title {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--text);
}

.lp-cal-title span { font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .1em; }

.lp-cal-dows,
.lp-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
}

.lp-cal-dows {
	margin-bottom: 4px;
	font-size: 9.5px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--muted);
	text-align: center;
}

.lp-cal-blank { aspect-ratio: 1; }

.lp-cal-day {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border-radius: 8px;
	font-size: 12.5px;
	line-height: 1;
}

.lp-cal-day--off {
	color: #4a3d5e;
	background: rgba(255, 255, 255, .015);
}

.lp-cal-day--past { text-decoration: line-through; opacity: .55; }

.lp-cal-num { font-variant-numeric: tabular-nums; }

/* Selectable days */
label.lp-cal-day {
	cursor: pointer;
	color: var(--text);
	background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
	box-shadow: inset 0 0 0 1px var(--line);
	overflow: hidden;
	transition: transform .16s cubic-bezier(.2, .9, .3, 1), box-shadow .18s ease, background .18s ease;
}

label.lp-cal-day:hover {
	transform: translateY(-2px);
	box-shadow: inset 0 0 0 1px rgba(34, 224, 255, .6);
}

label.lp-cal-day input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.lp-cal-count {
	position: absolute;
	top: 2px;
	right: 3px;
	min-width: 13px;
	height: 13px;
	padding: 0 3px;
	border-radius: 99px;
	background: rgba(196, 113, 255, .3);
	font-size: 9px;
	font-weight: 700;
	line-height: 13px;
	text-align: center;
	color: #fff;
}

.lp-cal-count:empty { display: none; }

.lp-cal-day .lp-day-bar {
	position: absolute;
	left: 4px;
	right: 4px;
	bottom: 3px;
	height: 2.5px;
	border-radius: 99px;
	background: rgba(255, 255, 255, .1);
	overflow: hidden;
}

.lp-cal-day .lp-day-bar i {
	display: block;
	height: 100%;
	width: var(--fill, 0%);
	background: linear-gradient(90deg, var(--electric), var(--plasma));
	transition: width .4s cubic-bezier(.2, .9, .3, 1);
}

label.lp-cal-day.is-lead { box-shadow: inset 0 0 0 1.5px rgba(196, 113, 255, .75); }

label.lp-cal-day.is-picked {
	background: linear-gradient(180deg, rgba(34, 224, 255, .3), rgba(196, 113, 255, .16));
	box-shadow: inset 0 0 0 2px var(--electric), 0 10px 22px -14px rgba(34, 224, 255, 1);
	color: #fff;
	font-weight: 700;
}

label.lp-cal-day input:focus-visible ~ .lp-cal-num {
	outline: 2px solid var(--electric);
	outline-offset: 4px;
	border-radius: 4px;
}

/* Legend */

.lp-cal-legend {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--line-soft);
	font-size: 12px;
	color: var(--muted);
}

.lp-cal-legend span { display: inline-flex; align-items: center; gap: 6px; }

.lp-swatch {
	width: 11px;
	height: 11px;
	border-radius: 4px;
	flex: none;
}

.lp-swatch--pick { background: linear-gradient(180deg, var(--electric), var(--plasma)); }
.lp-swatch--lead { background: transparent; box-shadow: inset 0 0 0 1.5px rgba(196, 113, 255, .8); }
.lp-swatch--off { background: rgba(255, 255, 255, .06); }

.lp-cal-total { margin-left: auto; }
.lp-cal-total strong { color: var(--electric); font-family: var(--font-display); font-size: 14px; }

/* Two months side by side squeezes the cells below a tappable size, so
   narrow screens get one month at a time. */
@media (max-width: 700px) {
	.lp-cal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
	.lp-cal { grid-template-columns: minmax(0, 1fr); gap: 20px; }
	.lp-cal-dows, .lp-cal-grid { gap: 4px; }
	.lp-cal-day { font-size: 14px; border-radius: 10px; }
	.lp-cal-count { top: 3px; right: 4px; min-width: 15px; height: 15px; line-height: 15px; font-size: 10px; }
	.lp-cal-title { font-size: 12.5px; }
	.lp-cal-total { margin-left: 0; width: 100%; }
	.lp-wizard-nav { flex-direction: column-reverse; align-items: stretch; }
	.lp-wizard-nav .lp-btn { width: 100%; }
	.lp-picked-note { text-align: center; }
}

/* --- Hero sits higher now the eyebrow is gone ------------------------------ */

.lp-hero {
	padding-block: clamp(20px, 3.5vw, 44px) clamp(40px, 6vw, 80px);
}

.lp-hero-logo { margin-top: 0; }
.lp-hero-glow { top: -260px; }

@media (max-width: 560px) {
	.lp-hero { padding-block: 14px 34px; }
}

/* --- Calendar: four months across, with a real weekday header band --------- */

.lp-hero--wizard .lp-wizard { width: min(1120px, 100%); }

.lp-cal { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.lp-cal-month {
	padding: 12px 12px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .022);
	box-shadow: inset 0 0 0 1px var(--line-soft);
}

.lp-cal-title {
	justify-content: center;
	margin-bottom: 10px;
	padding-bottom: 9px;
	border-bottom: 1px solid var(--line-soft);
}

.lp-cal-dows {
	margin-bottom: 6px;
	padding: 5px 0;
	border-radius: 8px;
	background: rgba(34, 224, 255, .07);
	box-shadow: inset 0 0 0 1px rgba(34, 224, 255, .16);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--electric);
}

/* Weekend columns read a touch warmer, since those are the live options. */
.lp-cal-dows span:nth-child(5),
.lp-cal-dows span:nth-child(6) { color: #fff; }
.lp-cal-dows span:nth-child(7) { opacity: .5; }

@media (max-width: 1080px) {
	.lp-cal { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}

@media (max-width: 560px) {
	.lp-cal { grid-template-columns: minmax(0, 1fr); gap: 14px; }
	.lp-cal-month { padding: 12px 14px 16px; }
	.lp-cal-dows { font-size: 10.5px; padding: 6px 0; }
}

/* ==========================================================================
   CTA typography
   Uppercase Chakra Petch echoes the wordmark in the logo. Caps need real
   tracking; the matching text-indent cancels the trailing gap tracking leaves
   behind, so the label stays optically centred.
   ========================================================================== */

.lp-btn {
	--btn-track: .12em;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14.5px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: var(--btn-track);
	text-indent: var(--btn-track);
	text-shadow: none;
	padding: 15px 28px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .55),
		0 0 0 1px rgba(34, 224, 255, .35),
		0 10px 28px -12px rgba(34, 224, 255, .9),
		0 18px 50px -22px rgba(196, 113, 255, .8);
}

.lp-btn--lg {
	--btn-track: .14em;
	font-size: 16px;
	padding: 19px 42px;
}

.lp-btn--sm {
	--btn-track: .1em;
	font-size: 12.5px;
	padding: 11px 20px;
}

.lp-btn:hover {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .7),
		0 0 0 1px rgba(196, 113, 255, .6),
		0 14px 34px -10px rgba(34, 224, 255, 1),
		0 26px 64px -22px rgba(123, 92, 255, .9);
}

/* Pressed: the lit edge goes, a shadow appears inside. */
.lp-btn:active {
	box-shadow:
		inset 0 2px 5px rgba(4, 18, 26, .35),
		0 0 0 1px rgba(34, 224, 255, .5),
		0 6px 16px -10px rgba(34, 224, 255, .9);
}

/* Secondary reads quieter: same caps, less shout. */
.lp-btn--ghost {
	font-weight: 600;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}

.lp-btn--ghost:hover {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .12),
		0 12px 30px -18px rgba(34, 224, 255, .9);
}

.lp-btn--ghost:active { box-shadow: inset 0 2px 6px rgba(0, 0, 0, .45); }

/* The throb keyframes carry their own box-shadow, so they need the lit edge
   baked in or it flickers on the hero button. */
@keyframes lp-throb {
	0%, 100% {
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, .55),
			0 0 0 1px rgba(34, 224, 255, .35),
			0 10px 28px -12px rgba(34, 224, 255, .9),
			0 0 0 0 rgba(196, 113, 255, .5);
	}
	60% {
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, .55),
			0 0 0 1px rgba(34, 224, 255, .5),
			0 14px 34px -12px rgba(34, 224, 255, 1),
			0 0 0 18px rgba(196, 113, 255, 0);
	}
}

@media (max-width: 560px) {
	.lp-btn--lg { --btn-track: .11em; font-size: 15px; padding: 17px 26px; }
}

/* ==========================================================================
   Glass buttons
   The fill is translucent blue-to-purple over a blurred backdrop, so the label
   has to switch from dark ink to lit neon or it disappears.
   ========================================================================== */

.lp-btn {
	--glass-a: rgba(34, 224, 255, .18);
	--glass-b: rgba(196, 113, 255, .26);
	background:
		linear-gradient(135deg, var(--glass-a), var(--glass-b) 85%) padding-box,
		conic-gradient(from var(--lp-ang), var(--electric), var(--plasma), var(--violet), var(--electric-2), var(--electric)) border-box;
	backdrop-filter: blur(16px) saturate(1.5);
	-webkit-backdrop-filter: blur(16px) saturate(1.5);
	color: #ffffff;
	text-shadow:
		0 0 10px rgba(34, 224, 255, .85),
		0 0 26px rgba(196, 113, 255, .55);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .42),
		inset 0 -14px 26px -18px rgba(196, 113, 255, .8),
		0 0 0 1px rgba(34, 224, 255, .22),
		0 12px 34px -16px rgba(34, 224, 255, .85),
		0 22px 56px -26px rgba(196, 113, 255, .8);
}

.lp-btn:hover {
	--glass-a: rgba(34, 224, 255, .3);
	--glass-b: rgba(196, 113, 255, .4);
	color: #ffffff;
	text-shadow:
		0 0 12px rgba(34, 224, 255, 1),
		0 0 34px rgba(196, 113, 255, .8);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .6),
		inset 0 -16px 30px -18px rgba(196, 113, 255, 1),
		0 0 0 1px rgba(196, 113, 255, .5),
		0 16px 40px -14px rgba(34, 224, 255, 1),
		0 30px 70px -26px rgba(123, 92, 255, .95);
}

.lp-btn:active {
	--glass-a: rgba(34, 224, 255, .34);
	--glass-b: rgba(196, 113, 255, .44);
	box-shadow:
		inset 0 3px 10px rgba(4, 12, 26, .55),
		0 0 0 1px rgba(34, 224, 255, .45),
		0 6px 18px -12px rgba(34, 224, 255, .9);
}

/* The sheen has to sit above a translucent fill, not behind it. */
.lp-btn::before {
	z-index: 0;
	background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .28) 48%, transparent 60%);
}

.lp-btn::after { z-index: 0; }

/* Secondary: thinner glass, cooler tint. */
.lp-btn--ghost {
	--glass-a: rgba(123, 92, 255, .1);
	--glass-b: rgba(34, 224, 255, .07);
	color: var(--text);
	text-shadow: 0 0 12px rgba(34, 224, 255, .45);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .14),
		0 0 0 1px rgba(123, 92, 255, .22),
		0 10px 30px -22px rgba(34, 224, 255, .8);
}

.lp-btn--ghost:hover {
	--glass-a: rgba(123, 92, 255, .2);
	--glass-b: rgba(34, 224, 255, .16);
	color: #fff;
	text-shadow: 0 0 14px rgba(34, 224, 255, .8);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .22),
		0 0 0 1px rgba(34, 224, 255, .45),
		0 14px 36px -20px rgba(34, 224, 255, .9);
}

.lp-btn--ghost:active { box-shadow: inset 0 3px 9px rgba(0, 0, 0, .5); }

.lp-btn:disabled,
.lp-btn[disabled] {
	--glass-a: rgba(255, 255, 255, .04);
	--glass-b: rgba(255, 255, 255, .02);
	color: var(--muted);
	text-shadow: none;
	box-shadow: inset 0 0 0 1px var(--line);
	animation: none;
	opacity: 1;
}

/* Same glass on the small controls. */
.lp-round-btn,
.lp-zoom-btn,
.lp-chip,
.lp-vote {
	background: linear-gradient(135deg, rgba(123, 92, 255, .12), rgba(34, 224, 255, .07));
	backdrop-filter: blur(12px) saturate(1.3);
	-webkit-backdrop-filter: blur(12px) saturate(1.3);
	border-color: rgba(123, 92, 255, .3);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.lp-round-btn:hover,
.lp-zoom-btn:hover,
.lp-chip:hover,
.lp-vote:hover {
	background: linear-gradient(135deg, rgba(34, 224, 255, .2), rgba(196, 113, 255, .16));
	border-color: rgba(34, 224, 255, .55);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 0 18px -6px rgba(34, 224, 255, .7);
}

.lp-chip.is-active {
	background: linear-gradient(135deg, rgba(34, 224, 255, .26), rgba(196, 113, 255, .22));
	border-color: var(--electric);
	color: #fff;
	text-shadow: 0 0 10px rgba(34, 224, 255, .8);
}

@media (prefers-reduced-transparency: reduce) {
	.lp-btn { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* ==========================================================================
   Section framing
   Sections were running into each other. Each now opens with a HUD rail: a
   numbered chip, a rule, and a status word — and every other one sits on a
   slightly raised panel so the eye can find the seams.
   ========================================================================== */

body.lp-body { counter-reset: lpsec; }

.lp-section {
	position: relative;
	counter-increment: lpsec;
	border-top: 1px solid var(--line-soft);
}

.lp-section::before {
	content: "";
	position: absolute;
	inset: -1px 0 auto 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(34, 224, 255, .55) 18%, rgba(196, 113, 255, .5) 62%, transparent);
	pointer-events: none;
}

/* The numbered chip riding on the rule. */
.lp-section::after {
	content: "[ " counter( lpsec, decimal-leading-zero ) " ]";
	position: absolute;
	top: -11px;
	left: var(--gutter);
	padding: 3px 10px;
	border-radius: 6px;
	background: var(--ink);
	box-shadow: 0 0 0 1px rgba(34, 224, 255, .35);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: .12em;
	color: var(--electric);
	text-shadow: 0 0 12px rgba(34, 224, 255, .8);
	pointer-events: none;
}

/* Alternate the ground so neighbouring sections separate. */
.lp-section:nth-of-type(even) {
	background:
		linear-gradient(180deg, rgba(196, 113, 255, .05), transparent 40%),
		rgba(255, 255, 255, .014);
}

/* Eyebrows go terminal. */
.lp-eyebrow {
	font-family: var(--font-mono);
	font-weight: 400;
	font-size: 12.5px;
	letter-spacing: .18em;
	color: var(--electric);
	text-shadow: 0 0 14px rgba(34, 224, 255, .55);
}

.lp-eyebrow::before { content: "// "; opacity: .55; }
.lp-eyebrow--hero::before { content: none; }

/* --- HUD corner brackets --------------------------------------------------- */

.lp-hud { position: relative; }

.lp-hud > .lp-hud-c {
	position: absolute;
	width: 16px;
	height: 16px;
	border: 1.5px solid rgba(34, 224, 255, .55);
	pointer-events: none;
	z-index: 4;
}

.lp-hud > .lp-hud-c--tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; border-radius: 5px 0 0 0; }
.lp-hud > .lp-hud-c--tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; border-radius: 0 5px 0 0; }
.lp-hud > .lp-hud-c--bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; border-radius: 0 0 0 5px; }
.lp-hud > .lp-hud-c--br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; border-radius: 0 0 5px 0; }

/* --- Mono data readouts ---------------------------------------------------- */

.lp-readout {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 16px;
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: .08em;
	color: var(--muted);
	text-transform: uppercase;
}

.lp-readout b {
	font-weight: 400;
	color: var(--electric);
	text-shadow: 0 0 10px rgba(34, 224, 255, .6);
}

.lp-readout .lp-readout-ok { color: var(--lime); text-shadow: 0 0 10px rgba(67, 255, 154, .6); }
.lp-readout .lp-readout-wait { color: var(--plasma); text-shadow: 0 0 10px rgba(196, 113, 255, .6); }
.lp-readout span { display: inline-flex; align-items: center; gap: 6px; }

.lp-readout i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 8px currentColor;
	animation: lp-pulse 2s ease-in-out infinite;
}

/* Numbers everywhere read as data. */
.lp-cd-n,
.lp-cal-num,
.lp-cal-count,
.lp-hero-stats dd,
.lp-counter-pill strong,
.lp-cal-total strong,
.lp-seatlist-code { font-family: var(--font-mono); }

/* --- Packing list as an accordion ------------------------------------------ */

.lp-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
	max-width: 760px;
}

.lp-check {
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012));
	box-shadow: inset 0 0 0 1px var(--line);
	overflow: hidden;
	transition: box-shadow .25s ease, background .25s ease;
}

.lp-check[open] {
	background: linear-gradient(180deg, rgba(34, 224, 255, .08), rgba(196, 113, 255, .04));
	box-shadow: inset 0 0 0 1px rgba(34, 224, 255, .4), 0 14px 34px -28px rgba(34, 224, 255, .9);
}

.lp-check summary {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.lp-check summary::-webkit-details-marker { display: none; }
.lp-check summary:hover { background: rgba(255, 255, 255, .03); }

.lp-check-no {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: .1em;
	color: var(--muted);
	flex: none;
	min-width: 20px;
}

.lp-check[open] .lp-check-no { color: var(--electric); text-shadow: 0 0 10px rgba(34, 224, 255, .7); }

.lp-check .lp-bring-icon {
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 11px;
	flex: none;
}

.lp-check .lp-bring-icon svg { width: 19px; height: 19px; }

.lp-check-title {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	flex: 1;
	min-width: 0;
}

.lp-check-chevron {
	flex: none;
	color: var(--muted);
	transition: transform .25s cubic-bezier(.2, .9, .3, 1), color .2s;
}

.lp-check-chevron svg { width: 18px; height: 18px; display: block; }
.lp-check[open] .lp-check-chevron { transform: rotate(180deg); color: var(--electric); }

.lp-check-body {
	padding: 0 18px 16px 70px;
	animation: lp-check-open .28s cubic-bezier(.2, .9, .3, 1);
}

.lp-check-body p { margin: 0; color: var(--text-2); font-size: 14.5px; }

@keyframes lp-check-open {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
	.lp-check summary { gap: 10px; padding: 12px 14px; }
	.lp-check-body { padding-left: 14px; }
	.lp-check-title { font-size: 15px; }
}

/* Food card lines up with the checklist. */
.lp-food { max-width: 760px; }

.lp-readout--wizard {
	justify-content: center;
	margin: 0 0 14px;
	padding-bottom: 12px;
	border-bottom: 1px dashed var(--line-soft);
}

.lp-readout { margin: 0 0 14px; }

/* --- Footer: just the mark, centred ---------------------------------------- */

.lp-footer { padding-block: 44px 40px; }

.lp-footer-inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.lp-footer-logo {
	display: block;
	width: 128px;
	opacity: .55;
	transition: opacity .3s ease, transform .3s cubic-bezier(.2, .9, .3, 1);
}

.lp-footer-logo:hover { opacity: 1; transform: translateY(-2px); }
.lp-footer-logo img { width: 100%; height: auto; }

/* ==========================================================================
   Floating game menu
   A pill that hovers over the page. The cursor block slides to whatever
   section you are in, the way a console menu highlights the current entry.
   ========================================================================== */

.lp-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	display: flex;
	justify-content: center;
	padding: 14px var(--gutter) 0;
	background: none;
	border: 0;
	backdrop-filter: none;
	pointer-events: none;
}

.lp-menu {
	position: relative;
	display: flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	padding: 7px;
	border: 1.5px solid transparent;
	border-radius: 999px;
	pointer-events: auto;
	background:
		linear-gradient(135deg, rgba(20, 11, 32, .82), rgba(12, 6, 22, .82)) padding-box,
		linear-gradient(120deg, rgba(34, 224, 255, .55), rgba(123, 92, 255, .5) 55%, rgba(196, 113, 255, .55)) border-box;
	backdrop-filter: blur(20px) saturate(1.5);
	-webkit-backdrop-filter: blur(20px) saturate(1.5);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .1),
		0 10px 40px -18px rgba(34, 224, 255, .7),
		0 20px 60px -30px rgba(196, 113, 255, .8);
	transition: box-shadow .3s ease, transform .3s cubic-bezier(.2, .9, .3, 1);
}

body.is-scrolled .lp-menu {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .16),
		0 14px 46px -16px rgba(34, 224, 255, .85),
		0 26px 70px -30px rgba(196, 113, 255, .9);
}

.lp-menu-list {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.lp-menu-item {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 15px;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	color: var(--text-2);
	transition: color .22s ease, text-shadow .22s ease;
}

/* The little pointer that only shows on the active entry. */
.lp-menu-tick {
	width: 0;
	height: 5px;
	border-radius: 99px;
	background: var(--electric);
	box-shadow: 0 0 10px var(--electric);
	opacity: 0;
	transition: width .25s cubic-bezier(.2, .9, .3, 1), opacity .2s ease;
}

.lp-menu-item:hover { color: var(--text); }

.lp-menu-item.is-active {
	color: #fff;
	text-shadow: 0 0 14px rgba(34, 224, 255, .8);
}

.lp-menu-item.is-active .lp-menu-tick { width: 5px; opacity: 1; }

/* Sliding highlight behind the active entry. */
.lp-menu-cursor {
	position: absolute;
	z-index: 0;
	top: 7px;
	left: 0;
	height: calc(100% - 14px);
	width: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(34, 224, 255, .2), rgba(196, 113, 255, .18));
	box-shadow: inset 0 0 0 1px rgba(34, 224, 255, .45);
	opacity: 0;
	transition: transform .35s cubic-bezier(.3, 1.2, .4, 1), width .35s cubic-bezier(.3, 1.2, .4, 1), opacity .25s ease;
	pointer-events: none;
}

.lp-menu-cta {
	margin-left: 4px;
	flex: none;
}

/* Anchors must clear the floating pill. */
:where(#plattegrond, #meenemen, #games, #suggesties, #regels, #datum) { scroll-margin-top: 96px; }

@media (max-width: 900px) {
	.lp-menu-item { padding: 9px 11px; font-size: 11.5px; letter-spacing: .07em; }
	.lp-menu-cta { font-size: 11.5px; padding: 9px 15px; }
}

@media (max-width: 720px) {
	.lp-header { padding-top: 10px; }
	.lp-menu { gap: 2px; padding: 5px; }
	.lp-menu-cta { display: none; }
	.lp-menu-item { padding: 8px 10px; font-size: 11px; }
	.lp-menu-tick { display: none; }
	:where(#plattegrond, #meenemen, #games, #suggesties, #regels, #datum) { scroll-margin-top: 74px; }
}

@media (max-width: 400px) {
	.lp-menu-item { padding: 8px 7px; font-size: 10px; letter-spacing: .04em; }
}
