/* ───────────────────────────────────────────────────────────
   VTLog · landing.css
   Layout adapted from /centralespel.
   Colours from /legacy (VTLog app palette):
     #192230 page  ·  #1e2a38 card  ·  #ff9900 accent
     #636363 border · #1cbb8c success · #17a2b8 info
   Typography: Rajdhani (display) · Exo 2 (body) · IBM Plex Mono (labels)
   ─────────────────────────────────────────────────────────── */

/* ── Reset & tokens ────────────────────────────────────── */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--lp-bg:           #192230;
	--lp-bg-2:         #141b27;
	--lp-card:         #1e2a38;
	--lp-card-hover:   #202d3c;
	--lp-card-elev:    #243244;

	--lp-border:       rgba(255, 153, 0, 0.18);
	--lp-border-2:     rgba(255, 153, 0, 0.38);
	--lp-border-soft:  rgba(255, 255, 255, 0.06);

	--lp-accent:       #ff9900;
	--lp-accent-2:     #ffb84d;
	--lp-success:      #1cbb8c;
	--lp-info:         #17a2b8;
	--lp-danger:       #dc3545;
	--lp-discord:      #5865f2;

	--lp-text:         #e8ecf1;
	--lp-text-soft:    rgba(232, 236, 241, 0.66);
	--lp-text-muted:   rgba(232, 236, 241, 0.42);

	--lp-f-display:    'Rajdhani', system-ui, -apple-system, sans-serif;
	--lp-f-body:       'Exo 2', system-ui, -apple-system, sans-serif;
	--lp-f-mono:       'IBM Plex Mono', ui-monospace, monospace;

	--lp-ease:         cubic-bezier(.21, .61, .35, 1);
}

html {
	scroll-behavior: smooth;
	background: var(--lp-bg);
}

body.lp-body {
	font-family: var(--lp-f-body);
	color: var(--lp-text);
	background: var(--lp-bg);
	overflow-x: hidden;
	line-height: 1.6;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.lp-body.lp-modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

ul { list-style: none; }

code {
	font-family: var(--lp-f-mono);
	font-size: 0.9em;
	padding: 0.05em 0.4em;
	border-radius: 3px;
	background: rgba(255, 153, 0, 0.10);
	color: var(--lp-accent);
}

::selection { background: rgba(255, 153, 0, 0.35); color: #fff; }

/* ── Fixed nav ─────────────────────────────────────────── */
.lp-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	padding: 0 2rem;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(25, 34, 48, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--lp-border);
	transition: background 0.3s var(--lp-ease);
}

.lp-nav.scrolled {
	background: rgba(25, 34, 48, 0.96);
}

.lp-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lp-brand img {
	width: 32px;
	height: 32px;
}

.lp-brand > span {
	font-family: var(--lp-f-display);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--lp-text);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.lp-brand-dot { color: var(--lp-accent); }

.lp-nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.lp-nav-links a {
	font-family: var(--lp-f-mono);
	font-size: 0.75rem;
	color: var(--lp-text-soft);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: color 0.25s var(--lp-ease);
	position: relative;
}

.lp-nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--lp-accent);
	transition: width 0.3s var(--lp-ease);
}

.lp-nav-links a:hover { color: var(--lp-accent); }
.lp-nav-links a:hover::after { width: 100%; }

.lp-nav-cta {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 8px 18px !important;
	background: var(--lp-accent);
	border: 1px solid var(--lp-accent-2);
	border-radius: 2px;
	color: #1c130a !important;
	font-family: var(--lp-f-display) !important;
	font-weight: 600 !important;
	font-size: 0.85rem !important;
	letter-spacing: 1px !important;
	transition: all 0.25s var(--lp-ease) !important;
}

.lp-nav-cta i {
	font-size: 0.95rem;
}

.lp-nav-cta::after { display: none !important; }

.lp-nav-cta:hover {
	background: var(--lp-accent-2) !important;
	box-shadow: 0 0 22px rgba(255, 153, 0, 0.35);
	color: #1c130a !important;
}

/* ── Hero ──────────────────────────────────────────────── */
.lp-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: 80px;
	padding-bottom: 140px;
}

.lp-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse 70% 95% at 22% 50%, rgba(20, 27, 39, 0.85) 0%, rgba(20, 27, 39, 0.55) 55%, transparent 90%),
		radial-gradient(ellipse at 85% 25%, rgba(255, 153, 0, 0.07) 0%, transparent 55%),
		linear-gradient(180deg, rgba(20, 27, 39, 0.55) 0%, rgba(20, 27, 39, 0.45) 45%, rgba(20, 27, 39, 0.95) 100%);
	pointer-events: none;
}

.lp-hero-grid {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-image:
		linear-gradient(rgba(255, 153, 0, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 153, 0, 0.035) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

/* In-game video display (random clip rotator) */
.lp-hero-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	background: #0c1219;
}

.lp-hero-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	filter: saturate(0.85) contrast(1.02) brightness(0.7);
	transition: opacity 1.2s var(--lp-ease);
}

.lp-hero-video video.lp-ready {
	opacity: 0.55;
}

.lp-hero-content {
	position: relative;
	z-index: 4;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.lp-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--lp-f-mono);
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--lp-accent);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 1.6rem;
	opacity: 0;
	animation: lp-fadeSlideUp 0.8s var(--lp-ease) forwards;
	animation-delay: 0.3s;
}

.lp-pulse {
	width: 7px;
	height: 7px;
	background: var(--lp-accent);
	border-radius: 50%;
	animation: lp-pulse 2s var(--lp-ease) infinite;
}

@keyframes lp-pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.4); }
	50%      { opacity: 0.55; box-shadow: 0 0 0 6px rgba(255, 153, 0, 0); }
}

.lp-hero-title {
	font-family: var(--lp-f-display);
	font-size: clamp(2.6rem, 6vw, 5.2rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -1px;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	opacity: 0;
	animation: lp-fadeSlideUp 0.8s var(--lp-ease) forwards;
	animation-delay: 0.5s;
	color: var(--lp-text);
}

.lp-highlight {
	color: var(--lp-accent);
	position: relative;
}

.lp-hero-line2 {
	display: block;
	color: var(--lp-text-soft);
	font-weight: 500;
	font-size: 0.45em;
	letter-spacing: 2px;
	margin-top: 0.5rem;
}

.lp-hero-desc {
	max-width: 560px;
	font-size: 1.05rem;
	color: var(--lp-text-soft);
	line-height: 1.7;
	margin-bottom: 2.4rem;
	font-weight: 300;
	opacity: 0;
	animation: lp-fadeSlideUp 0.8s var(--lp-ease) forwards;
	animation-delay: 0.7s;
}

/* Hero login buttons (clip-path corners) */
.lp-hero-login-buttons {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	opacity: 0;
	animation: lp-fadeSlideUp 0.8s var(--lp-ease) forwards;
	animation-delay: 0.9s;
}

.lp-hero-login-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	font-family: var(--lp-f-display);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--lp-text);
	background: rgba(30, 42, 56, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s var(--lp-ease);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.lp-hero-login-btn i { font-size: 1.1rem; }

.lp-hero-login-btn:hover { transform: translateY(-2px); }

.lp-hero-login-btn.lp-steam:hover {
	background: rgba(255, 153, 0, 0.10);
	border-color: var(--lp-accent);
	box-shadow: 0 0 24px rgba(255, 153, 0, 0.25);
	color: var(--lp-accent);
}

.lp-hero-login-btn.lp-discord:hover {
	background: rgba(88, 101, 242, 0.14);
	border-color: var(--lp-discord);
	box-shadow: 0 0 24px rgba(88, 101, 242, 0.25);
}

.lp-hero-login-hint {
	font-family: var(--lp-f-mono);
	font-size: 0.75rem;
	color: var(--lp-text-muted);
	letter-spacing: 1px;
	margin-top: 1rem;
	opacity: 0;
	animation: lp-fadeSlideUp 0.8s var(--lp-ease) forwards;
	animation-delay: 1.1s;
}

/* Hero status bar */
.lp-status-bar {
	position: absolute;
	left: 0; right: 0;
	bottom: 0;
	z-index: 4;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	background: rgba(20, 27, 39, 0.85);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-top: 1px solid var(--lp-border);
	opacity: 0;
	animation: lp-fadeSlideUp 0.8s var(--lp-ease) forwards;
	animation-delay: 1.3s;
}

.lp-status-item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1.5rem;
	border-right: 1px solid var(--lp-border-soft);
}

.lp-status-item:last-child { border-right: 0; }

.lp-status-icon {
	width: 38px; height: 38px;
	display: grid;
	place-items: center;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--lp-border-soft);
	border-radius: 4px;
}

.lp-status-label {
	font-family: var(--lp-f-mono);
	font-size: 0.65rem;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--lp-text-muted);
}

.lp-status-value {
	font-family: var(--lp-f-display);
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--lp-text);
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.5px;
	line-height: 1.15;
}

.lp-status-body {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.lp-status-delta {
	font-family: var(--lp-f-mono);
	font-size: 0.66rem;
	color: var(--lp-success);
	letter-spacing: 0.4px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 2px;
	font-variant-numeric: tabular-nums;
}

.lp-status-delta i {
	font-size: 0.7em;
}

/* ── Generic section ───────────────────────────────────── */
.lp-section {
	padding: 6rem 0;
	position: relative;
}

.lp-section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.lp-section-tag {
	font-family: var(--lp-f-mono);
	font-size: 0.72rem;
	color: var(--lp-accent);
	text-transform: uppercase;
	letter-spacing: 2.5px;
	margin-bottom: 1rem;
	font-weight: 500;
}

.lp-section-title {
	font-family: var(--lp-f-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.5px;
	text-transform: uppercase;
	margin-bottom: 1rem;
	color: var(--lp-text);
}

.lp-section-subtitle {
	font-size: 1.05rem;
	color: var(--lp-text-soft);
	max-width: 620px;
	margin-bottom: 3.5rem;
	font-weight: 300;
	line-height: 1.7;
}

/* ── Features grid ─────────────────────────────────────── */
.lp-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}

.lp-feature-card {
	position: relative;
	background: var(--lp-card);
	border: 1px solid var(--lp-border-soft);
	border-radius: 4px;
	padding: 2rem 1.6rem 1.8rem 1.6rem;
	overflow: hidden;
	transition:
		border-color 0.25s var(--lp-ease),
		background 0.25s var(--lp-ease),
		transform 0.25s var(--lp-ease);
}

.lp-feature-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 0;
	height: 2px;
	background: var(--lp-accent);
	transition: width 0.45s var(--lp-ease);
}

.lp-feature-card:hover {
	background: var(--lp-card-hover);
	border-color: var(--lp-border-2);
	transform: translateY(-2px);
}

.lp-feature-card:hover::before {
	width: 100%;
}

.lp-feature-number {
	position: absolute;
	top: 1rem;
	right: 1.2rem;
	font-family: var(--lp-f-display);
	font-weight: 700;
	font-size: 2.4rem;
	color: rgba(255, 255, 255, 0.04);
	line-height: 1;
	pointer-events: none;
}

.lp-feature-icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	font-size: 1.25rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--lp-border-soft);
	border-radius: 4px;
	margin-bottom: 1.2rem;
}

.lp-feature-title {
	font-family: var(--lp-f-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--lp-text);
	margin-bottom: 0.55rem;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.lp-feature-desc {
	font-size: 0.92rem;
	color: var(--lp-text-soft);
	line-height: 1.6;
	font-weight: 300;
}

/* ── How it works ──────────────────────────────────────── */
.lp-how-section {
	background:
		linear-gradient(180deg, transparent, rgba(255, 153, 0, 0.025) 50%, transparent),
		var(--lp-bg);
	border-top: 1px solid var(--lp-border);
	border-bottom: 1px solid var(--lp-border);
}

.lp-how-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}

.lp-how-step {
	position: relative;
	background: var(--lp-card);
	border: 1px solid var(--lp-border-soft);
	border-radius: 4px;
	padding: 2rem 1.6rem;
}

.lp-step-number {
	font-family: var(--lp-f-display);
	font-weight: 700;
	font-size: 2.6rem;
	color: var(--lp-accent);
	line-height: 1;
	margin-bottom: 1rem;
	letter-spacing: -0.5px;
}

.lp-step-title {
	font-family: var(--lp-f-display);
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--lp-text);
	margin-bottom: 0.55rem;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.lp-step-desc {
	font-size: 0.95rem;
	color: var(--lp-text-soft);
	line-height: 1.65;
	font-weight: 300;
}

.lp-step-ref {
	color: var(--lp-accent);
	font-weight: 500;
	font-family: var(--lp-f-mono);
	font-size: 0.88em;
	padding: 0.05em 0.4em;
	background: rgba(255, 153, 0, 0.10);
	border-radius: 3px;
	white-space: nowrap;
}

/* ── Auth section ──────────────────────────────────────── */
.lp-auth-section {
	background: var(--lp-bg-2);
}

.lp-auth-layout {
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 4rem;
	align-items: center;
}

.lp-auth-info .lp-section-title { margin-bottom: 1rem; }

.lp-auth-info .lp-section-subtitle { margin-bottom: 2rem; }

.lp-auth-perks {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-family: var(--lp-f-mono);
	font-size: 0.82rem;
	color: var(--lp-text-soft);
	letter-spacing: 0.4px;
}

.lp-auth-perks li {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.lp-auth-perks i {
	color: var(--lp-success);
	font-size: 0.85em;
}

.lp-auth-card {
	background: var(--lp-card);
	border: 1px solid var(--lp-border);
	border-radius: 4px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.6);
}

.lp-auth-card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-bottom: 1.2rem;
	margin-bottom: 0.4rem;
	border-bottom: 1px solid var(--lp-border-soft);
}

.lp-auth-card-header img {
	width: 44px;
	height: 44px;
}

.lp-auth-title {
	font-family: var(--lp-f-display);
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--lp-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lp-auth-subtitle {
	font-family: var(--lp-f-mono);
	font-size: 0.72rem;
	color: var(--lp-text-muted);
	letter-spacing: 1.4px;
	margin-top: 2px;
	text-transform: uppercase;
}

.lp-auth-btn {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.95rem 1.1rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--lp-border-soft);
	border-radius: 3px;
	font-family: var(--lp-f-display);
	font-weight: 600;
	font-size: 1rem;
	color: var(--lp-text);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: all 0.25s var(--lp-ease);
}

.lp-auth-btn > i:first-child {
	font-size: 1.25rem;
	width: 22px;
	text-align: center;
}

.lp-auth-btn > span {
	flex: 1;
}

.lp-auth-arrow {
	font-size: 0.85rem;
	color: var(--lp-text-muted);
	transition: transform 0.25s var(--lp-ease), color 0.25s var(--lp-ease);
}

.lp-auth-btn:hover .lp-auth-arrow {
	transform: translateX(3px);
	color: var(--lp-accent);
}

.lp-auth-btn.lp-steam:hover {
	background: rgba(255, 153, 0, 0.10);
	border-color: var(--lp-accent);
	color: var(--lp-accent);
}

.lp-auth-btn.lp-discord:hover {
	background: rgba(88, 101, 242, 0.14);
	border-color: var(--lp-discord);
	color: #c7caff;
}

.lp-auth-note {
	margin-top: 0.6rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--lp-border-soft);
	font-family: var(--lp-f-mono);
	font-size: 0.72rem;
	color: var(--lp-text-muted);
	line-height: 1.6;
	letter-spacing: 0.3px;
}

.lp-auth-note strong {
	color: var(--lp-text-soft);
	font-weight: 500;
}

/* ── Community ─────────────────────────────────────────── */
.lp-community-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}

.lp-community-card {
	position: relative;
	background: var(--lp-card);
	border: 1px solid var(--lp-border-soft);
	border-radius: 4px;
	padding: 2rem 1.6rem;
	transition: all 0.25s var(--lp-ease);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.lp-community-card:hover {
	background: var(--lp-card-hover);
	border-color: var(--lp-border-2);
	transform: translateY(-2px);
}

.lp-community-card > i:first-child {
	font-size: 1.5rem;
	color: var(--lp-accent);
	margin-bottom: 0.5rem;
	transition: color 0.25s var(--lp-ease);
}

.lp-community-card:hover > i:first-child { color: var(--lp-accent-2); }

.lp-community-card .lp-card-title {
	font-family: var(--lp-f-display);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--lp-text);
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.lp-community-card .lp-card-desc {
	font-size: 0.92rem;
	color: var(--lp-text-soft);
	line-height: 1.6;
	font-weight: 300;
}

/* ── Footer ────────────────────────────────────────────── */
.lp-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	padding: 1.6rem 2rem;
	background: var(--lp-bg-2);
	border-top: 1px solid var(--lp-border);
	font-family: var(--lp-f-mono);
	font-size: 0.75rem;
	color: var(--lp-text-muted);
	letter-spacing: 0.3px;
}

.lp-footer-right {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.lp-footer-right a,
.lp-footer-right button {
	color: var(--lp-text-muted);
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-size: 0.7rem;
	font-family: var(--lp-f-mono);
	transition: color 0.2s var(--lp-ease);
	cursor: pointer;
}

.lp-footer-right a:hover,
.lp-footer-right button:hover { color: var(--lp-accent); }

/* ── Modal ─────────────────────────────────────────────── */
.lp-modal-backdrop {
	position: fixed; inset: 0;
	z-index: 2000;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 220ms var(--lp-ease), visibility 220ms var(--lp-ease);
	display: grid;
	place-items: center;
	padding: 2rem;
}

.lp-modal-backdrop.open {
	opacity: 1;
	visibility: visible;
}

.lp-modal {
	background: var(--lp-card);
	border: 1px solid var(--lp-border);
	border-radius: 4px;
	width: 100%;
	max-width: 760px;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
	transform: translateY(8px);
	opacity: 0;
	transition: transform 240ms var(--lp-ease), opacity 240ms var(--lp-ease);
}

.lp-modal-backdrop.open .lp-modal {
	transform: none;
	opacity: 1;
}

.lp-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.3rem;
	border-bottom: 1px solid var(--lp-border-soft);
}

.lp-modal-title {
	font-family: var(--lp-f-display);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--lp-text);
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.lp-modal-close {
	width: 32px; height: 32px;
	display: grid; place-items: center;
	font-size: 1.5rem;
	color: var(--lp-text-muted);
	border-radius: 4px;
	transition: color 160ms var(--lp-ease), background 160ms var(--lp-ease);
}

.lp-modal-close:hover {
	color: var(--lp-text);
	background: rgba(255, 255, 255, 0.06);
}

.lp-modal-body {
	padding: 1.4rem 1.6rem 1.8rem 1.6rem;
	overflow-y: auto;
	color: var(--lp-text-soft);
	line-height: 1.65;
	font-size: 0.95rem;
}

.lp-modal-body h1, .lp-modal-body h2, .lp-modal-body h3, .lp-modal-body h4 {
	font-family: var(--lp-f-display);
	color: var(--lp-text);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.lp-modal-body a {
	color: var(--lp-accent);
	border-bottom: 1px solid transparent;
	transition: border-color 160ms var(--lp-ease);
}

.lp-modal-body a:hover { border-color: currentColor; }

.lp-modal-loading {
	font-family: var(--lp-f-mono);
	font-size: 0.78rem;
	letter-spacing: 1.4px;
	color: var(--lp-text-muted);
	text-align: center;
	padding: 2rem 0;
	text-transform: uppercase;
}

/* ── Reveal animation ──────────────────────────────────── */
.lp-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 700ms var(--lp-ease),
		transform 700ms var(--lp-ease);
}

.lp-reveal.in {
	opacity: 1;
	transform: none;
}

@keyframes lp-fadeSlideUp {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.lp-reveal, .lp-reveal.in,
	.lp-hero-tag, .lp-hero-title, .lp-hero-desc,
	.lp-hero-login-buttons, .lp-hero-login-hint, .lp-status-bar {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}
	.lp-pulse { animation: none; }

	/* Hide the background video entirely when reduced motion is preferred */
	.lp-hero-video { display: none; }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
	.lp-features-grid,
	.lp-how-steps,
	.lp-community-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lp-auth-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.lp-status-bar {
		grid-template-columns: repeat(2, 1fr);
	}
	.lp-status-item:nth-child(2) { border-right: 0; }
	.lp-status-item:nth-child(1),
	.lp-status-item:nth-child(2) { border-bottom: 1px solid var(--lp-border-soft); }
}

@media (max-width: 720px) {
	.lp-nav { padding: 0 1.2rem; }
	.lp-nav-links { gap: 1rem; }
	.lp-nav-links li:not(:last-child) { display: none; }

	.lp-section { padding: 4.5rem 0; }
	.lp-section-inner { padding: 0 1.2rem; }
	.lp-hero-content { padding: 0 1.2rem; }

	.lp-features-grid,
	.lp-how-steps,
	.lp-community-grid {
		grid-template-columns: 1fr;
	}

	.lp-hero { padding-bottom: 200px; }
	.lp-status-item { padding: 0.75rem 1rem; }
	.lp-status-value { font-size: 1rem; }

	.lp-footer { flex-direction: column; align-items: flex-start; padding: 1.4rem 1.2rem; }
}

@media (max-width: 480px) {
	.lp-hero-line2 { font-size: 0.55em; }
	.lp-hero-login-btn { padding: 12px 22px; font-size: 0.88rem; }
	.lp-auth-card { padding: 1.5rem; }
}
