/* WPShieldX License Manager — front-end design system.
   Self-contained: no theme or external framework dependency.
   System font stack only, so it renders consistently with zero
   network requests and zero theme conflicts. */

.wpsxlm-page-root {
	--wpsxlm-bg: #0b1120;
	--wpsxlm-bg-soft: #f8fafc;
	--wpsxlm-ink: #0f172a;
	--wpsxlm-ink-soft: #475569;
	--wpsxlm-border: #e2e8f0;
	--wpsxlm-accent: #4f46e5;
	--wpsxlm-accent-2: #7c3aed;
	--wpsxlm-accent-soft: #eef2ff;
	--wpsxlm-success: #16a34a;
	--wpsxlm-warn: #d97706;
	--wpsxlm-danger: #dc2626;
	--wpsxlm-radius: 14px;
	--wpsxlm-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
	--wpsxlm-shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.18);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--wpsxlm-ink);
	line-height: 1.55;
	background: #fff;
}

.wpsxlm-page-root * { box-sizing: border-box; }

.wpsxlm-container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

/* --- Nav ------------------------------------------------------- */
.wpsxlm-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}
.wpsxlm-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.wpsxlm-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 20px;
	letter-spacing: -0.02em;
	color: var(--wpsxlm-ink);
	text-decoration: none;
}
.wpsxlm-logo-mark {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--wpsxlm-accent), var(--wpsxlm-accent-2));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
}
.wpsxlm-nav-links { display: flex; align-items: center; gap: 28px; }
.wpsxlm-nav-links a { color: var(--wpsxlm-ink-soft); text-decoration: none; font-size: 15px; font-weight: 500; }
.wpsxlm-nav-links a:hover { color: var(--wpsxlm-ink); }

/* --- Buttons ----------------------------------------------------- */
.wpsxlm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.wpsxlm-btn-primary {
	background: linear-gradient(135deg, var(--wpsxlm-accent), var(--wpsxlm-accent-2));
	color: #fff;
	box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}
.wpsxlm-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(79, 70, 229, 0.4); }
.wpsxlm-btn-secondary {
	background: #fff;
	color: var(--wpsxlm-ink);
	border-color: var(--wpsxlm-border);
}
.wpsxlm-btn-secondary:hover { border-color: var(--wpsxlm-accent); color: var(--wpsxlm-accent); }
.wpsxlm-btn-block { width: 100%; }
.wpsxlm-btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 8px; }

/* --- Hero ---------------------------------------------------------- */
.wpsxlm-hero {
	background: radial-gradient(ellipse at top, #1e1b4b 0%, var(--wpsxlm-bg) 60%);
	color: #fff;
	padding: 90px 0 110px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.wpsxlm-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: #c7d2fe;
	margin-bottom: 24px;
}
.wpsxlm-hero h1 {
	font-size: 52px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0 0 20px;
}
.wpsxlm-hero h1 span {
	background: linear-gradient(135deg, #818cf8, #c084fc);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.wpsxlm-hero p.lead {
	font-size: 19px;
	color: #cbd5e1;
	max-width: 620px;
	margin: 0 auto 36px;
}
.wpsxlm-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.wpsxlm-hero-note { margin-top: 20px; font-size: 13px; color: #94a3b8; }

/* --- Sections -------------------------------------------------------- */
.wpsxlm-section { padding: 80px 0; }
.wpsxlm-section-soft { background: var(--wpsxlm-bg-soft); }
.wpsxlm-section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.wpsxlm-eyebrow {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--wpsxlm-accent);
	margin-bottom: 10px;
}
.wpsxlm-section-head h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px; }
.wpsxlm-section-head p { color: var(--wpsxlm-ink-soft); font-size: 16px; margin: 0; }

/* --- Feature grid -------------------------------------------------- */
.wpsxlm-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.wpsxlm-feature-card {
	background: #fff;
	border: 1px solid var(--wpsxlm-border);
	border-radius: var(--wpsxlm-radius);
	padding: 28px;
}
.wpsxlm-feature-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--wpsxlm-accent-soft);
	color: var(--wpsxlm-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 16px;
}
.wpsxlm-feature-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.wpsxlm-feature-card p { font-size: 14.5px; color: var(--wpsxlm-ink-soft); margin: 0; }

/* --- Pricing --------------------------------------------------------- */
.wpsxlm-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	align-items: stretch;
}
.wpsxlm-plan-card {
	background: #fff;
	border: 1px solid var(--wpsxlm-border);
	border-radius: var(--wpsxlm-radius);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wpsxlm-plan-card:hover { transform: translateY(-4px); box-shadow: var(--wpsxlm-shadow-lg); }
.wpsxlm-plan-card.featured { border: 2px solid var(--wpsxlm-accent); box-shadow: var(--wpsxlm-shadow-lg); }
.wpsxlm-plan-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--wpsxlm-accent), var(--wpsxlm-accent-2));
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 5px 14px;
	border-radius: 999px;
}
.wpsxlm-plan-name { font-size: 16px; font-weight: 700; color: var(--wpsxlm-ink-soft); margin: 0 0 6px; }
.wpsxlm-plan-price { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 4px; }
.wpsxlm-plan-price small { font-size: 14px; font-weight: 500; color: var(--wpsxlm-ink-soft); }
.wpsxlm-plan-sub { font-size: 13.5px; color: var(--wpsxlm-ink-soft); margin: 0 0 22px; }
.wpsxlm-plan-features { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.wpsxlm-plan-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
	color: var(--wpsxlm-ink);
	margin-bottom: 11px;
}
.wpsxlm-plan-features li::before {
	content: "✓";
	color: var(--wpsxlm-success);
	font-weight: 700;
	flex-shrink: 0;
}

/* --- Forms (login / register / account) ------------------------------ */
.wpsxlm-auth-wrap {
	max-width: 420px;
	margin: 60px auto;
	background: #fff;
	border: 1px solid var(--wpsxlm-border);
	border-radius: var(--wpsxlm-radius);
	padding: 40px 36px;
	box-shadow: var(--wpsxlm-shadow);
}
.wpsxlm-auth-wrap h1 { font-size: 24px; font-weight: 800; margin: 0 0 6px; text-align: center; }
.wpsxlm-auth-wrap p.sub { text-align: center; color: var(--wpsxlm-ink-soft); font-size: 14.5px; margin: 0 0 28px; }
.wpsxlm-field { margin-bottom: 18px; }
.wpsxlm-field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.wpsxlm-field input[type="text"],
.wpsxlm-field input[type="email"],
.wpsxlm-field input[type="password"] {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--wpsxlm-border);
	border-radius: 9px;
	font-size: 15px;
	background: #fff;
}
.wpsxlm-field input:focus { outline: none; border-color: var(--wpsxlm-accent); box-shadow: 0 0 0 3px var(--wpsxlm-accent-soft); }
.wpsxlm-auth-footer { text-align: center; font-size: 13.5px; color: var(--wpsxlm-ink-soft); margin-top: 20px; }
.wpsxlm-auth-footer a { color: var(--wpsxlm-accent); font-weight: 600; text-decoration: none; }
.wpsxlm-hp-field { position: absolute; left: -9999px; }

.wpsxlm-alert {
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 14px;
	margin-bottom: 20px;
}
.wpsxlm-alert-success { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
.wpsxlm-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* --- Account page ------------------------------------------------- */
.wpsxlm-account-header {
	background: linear-gradient(135deg, #1e1b4b, #312e81);
	color: #fff;
	padding: 50px 0 60px;
}
.wpsxlm-account-header h1 { font-size: 28px; font-weight: 800; margin: 0 0 6px; }
.wpsxlm-account-header p { color: #c7d2fe; margin: 0; font-size: 15px; }
.wpsxlm-license-card {
	background: #fff;
	border: 1px solid var(--wpsxlm-border);
	border-radius: var(--wpsxlm-radius);
	padding: 26px;
	margin-bottom: 18px;
	box-shadow: var(--wpsxlm-shadow);
}
.wpsxlm-license-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.wpsxlm-license-key {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	background: var(--wpsxlm-bg-soft);
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 14px;
	letter-spacing: 0.02em;
}
.wpsxlm-badge { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; text-transform: capitalize; }
.wpsxlm-badge-active { background: #ecfdf3; color: #166534; }
.wpsxlm-badge-expired, .wpsxlm-badge-cancelled, .wpsxlm-badge-revoked, .wpsxlm-badge-invalid { background: #fef2f2; color: #991b1b; }
.wpsxlm-badge-past_due { background: #fffbeb; color: #92400e; }
.wpsxlm-license-meta { display: flex; gap: 32px; flex-wrap: wrap; font-size: 13.5px; color: var(--wpsxlm-ink-soft); }
.wpsxlm-license-meta strong { display: block; color: var(--wpsxlm-ink); font-size: 14.5px; font-weight: 600; }

/* --- Footer ------------------------------------------------------- */
.wpsxlm-footer { border-top: 1px solid var(--wpsxlm-border); padding: 40px 0; text-align: center; color: var(--wpsxlm-ink-soft); font-size: 13.5px; }

/* --- Responsive ------------------------------------------------------ */
@media (max-width: 900px) {
	.wpsxlm-grid { grid-template-columns: 1fr 1fr; }
	.wpsxlm-hero h1 { font-size: 38px; }
}
@media (max-width: 640px) {
	.wpsxlm-grid { grid-template-columns: 1fr; }
	.wpsxlm-nav-links { display: none; }
	.wpsxlm-hero { padding: 60px 0 70px; }
	.wpsxlm-hero h1 { font-size: 32px; }
	.wpsxlm-auth-wrap { margin: 30px 20px; padding: 30px 24px; }
}
