/*!
Theme Name: 雷电模拟器
Theme URI: https://example.com/ldplayer-theme
Author: LDPlayer Theme Team
Author URI: https://example.com
Description: 雷电模拟器官方主题 —— 简洁专业的软件产品展示型主题，面向手游玩家、直播用户与游戏运营团队。首页展示软件产品、功能截图、数据对比、性能优势、兼容游戏、多开管理、账号同步、用户评价与立即下载。基于 _s (Underscores) 构建。
Version: 1.1.0
Tested up to: 6.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ldplayer
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout, software-landing

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

_s is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Design Tokens (CSS variables)
# Generic (Normalize, Box Sizing)
# Base (Typography, Elements, Links, Forms)
# Layouts
# Components (Site header, Hero, Sections, Cards, Footer)
# Utilities (Accessibility, Alignments)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Design Tokens
--------------------------------------------------------------*/
:root {
	/* Color palette */
	--color-primary: #2563EB;
	--color-primary-hover: #1D4ED8;
	--color-secondary: #1E293B;
	--color-accent: #38BDF8;
	--color-bg: #F8FAFC;
	--color-surface: #FFFFFF;
	--color-surface-alt: #F1F5F9;
	--color-border: #E2E8F0;
	--color-text: #0F172A;
	--color-muted: #64748B;
	--color-success: #10B981;
	--color-warning: #F59E0B;
	--color-danger: #EF4444;
	--color-overlay: rgba(15, 23, 42, 0.72);

	/* Typography */
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Roboto, Helvetica, Arial, sans-serif;
	--font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--font-size-base: 16px;
	--line-height-base: 1.65;
	--line-height-tight: 1.25;

	/* Spacing (8px rhythm) */
	--space-1: 8px;
	--space-2: 16px;
	--space-3: 24px;
	--space-4: 32px;
	--space-5: 48px;
	--space-6: 64px;
	--space-7: 96px;

	/* Radius & shadow */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-pill: 999px;
	--shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
	--shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.08);
	--shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);
	--shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.14);

	/* Container */
	--container-max: 1200px;
	--container-padding: 24px;

	/* Transitions */
	--transition-base: 200ms ease;
	--transition-fast: 150ms ease;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize */
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
main { display: block; }
h1 { font-size: 2em; margin: 0.67em 0; }
hr { box-sizing: content-box; height: 0; overflow: visible; }
pre { font-family: monospace, monospace; font-size: 1em; }
a { background-color: transparent; }
abbr[title] { border-bottom: none; text-decoration: underline; text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
code, kbd, samp { font-family: monospace, monospace; font-size: 1em; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
img { border-style: none; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }
button, input { overflow: visible; }
button, select { text-transform: none; }
button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; }
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; }
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; }
fieldset { padding: 0.35em 0.75em 0.625em; }
legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; }
progress { vertical-align: baseline; }
textarea { overflow: auto; }
[type="checkbox"], [type="radio"] { box-sizing: border-box; padding: 0; }
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; }
[type="search"] { -webkit-appearance: textfield; outline-offset: -2px; }
[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }
details { display: block; }
summary { display: list-item; }
template { display: none; }
[hidden] { display: none; }

/* Box sizing */
*, *::before, *::after { box-sizing: border-box; }
html { box-sizing: border-box; }

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

html { scroll-behavior: smooth; }

body,
button,
input,
select,
optgroup,
textarea {
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-family: var(--font-sans);
	line-height: var(--line-height-tight);
	color: var(--color-text);
	margin: 0 0 var(--space-2);
	font-weight: 700;
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 var(--space-2); }

dfn, cite, em, i { font-style: italic; }
blockquote { margin: 0 var(--space-2); }
address { margin: 0 0 var(--space-2); }
pre {
	background: var(--color-surface-alt);
	font-family: var(--font-mono);
	line-height: 1.6;
	margin-bottom: var(--space-2);
	max-width: 100%;
	overflow: auto;
	padding: var(--space-2);
	border-radius: var(--radius-sm);
}
code, kbd, tt, var { font-family: var(--font-mono); }
abbr, acronym { border-bottom: 1px dotted var(--color-muted); cursor: help; }
mark, ins { background: #fff9c0; text-decoration: none; }
big { font-size: 125%; }

ul, ol { margin: 0 0 var(--space-2) 1.5em; }
ul { list-style: disc; }
ol { list-style: decimal; }
li > ul, li > ol { margin-bottom: 0; margin-left: 1.5em; }
dt { font-weight: 700; }
dd { margin: 0 var(--space-2) var(--space-2); }

embed, iframe, object { max-width: 100%; }
img { height: auto; max-width: 100%; }
figure { margin: var(--space-2) 0; }
table { margin: 0 0 var(--space-2); width: 100%; border-collapse: collapse; }

/* Links */
a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition-fast);
}
a:hover, a:focus, a:active { color: var(--color-primary-hover); }
a:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 2px; }

/* Forms / Buttons */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-surface);
	color: var(--color-text);
	padding: 0.6em 1.2em;
	cursor: pointer;
	font-family: inherit;
	font-weight: 500;
	transition: all var(--transition-fast);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover { border-color: var(--color-primary); color: var(--color-primary); }
button:focus-visible,
input[type="button"]:focus-visible,
input[type="reset"]:focus-visible,
input[type="submit"]:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

input[type="text"], input[type="email"], input[type="url"], input[type="password"],
input[type="search"], input[type="number"], input[type="tel"], input[type="range"],
input[type="date"], input[type="month"], input[type="week"], input[type="time"],
input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
	color: var(--color-text);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	padding: 10px 14px;
	background: var(--color-surface);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	font-family: inherit;
}
input:focus, textarea:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); }
select { border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 8px 12px; background: var(--color-surface); }
textarea { width: 100%; }

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.wm-container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.wm-site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.wm-main {
	flex: 1 0 auto;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Skip link */
.wm-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--color-secondary);
	color: #fff;
	padding: 12px 20px;
	border-radius: var(--radius-sm);
	z-index: 9999;
}
.wm-skip-link:focus { left: 16px; top: 16px; }

/* Site Header */
.wm-header {
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: saturate(180%) blur(8px);
}
.wm-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	min-height: 72px;
}
.wm-header__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--color-text);
}
.wm-header__brand:hover { color: var(--color-primary); }
.wm-header__logo {
	height: 36px;
	width: auto;
	display: block;
}
.wm-header__title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0;
	color: var(--color-text);
}
.wm-header__version {
	display: inline-flex;
	align-items: center;
	padding: 2px 10px;
	background: rgba(37, 99, 235, 0.1);
	color: var(--color-primary);
	border-radius: var(--radius-pill);
	font-size: 0.75rem;
	font-weight: 600;
	margin-left: 8px;
}
.wm-header__nav { display: flex; align-items: center; gap: var(--space-2); }
.wm-nav { list-style: none; display: flex; gap: var(--space-2); margin: 0; padding: 0; }
.wm-nav a {
	color: var(--color-text);
	font-weight: 500;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	transition: background var(--transition-fast), color var(--transition-fast);
}
.wm-nav a:hover, .wm-nav .current-menu-item a { background: var(--color-surface-alt); color: var(--color-primary); }

.wm-header__actions { display: flex; align-items: center; gap: 12px; }

.wm-menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--color-border);
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	cursor: pointer;
}
.wm-menu-toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 1023px) {
	.wm-menu-toggle { display: inline-flex; }
	.wm-nav {
		display: none;
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		background: var(--color-surface);
		flex-direction: column;
		padding: var(--space-2);
		border-bottom: 1px solid var(--color-border);
		box-shadow: var(--shadow-md);
	}
	.wm-nav.is-open { display: flex; }
	.wm-nav a { padding: 12px; }
}

/* Buttons */
.wm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--radius-md);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
	cursor: pointer;
	border: 1px solid transparent;
	min-height: 44px;
	line-height: 1.2;
}
.wm-btn:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.35); outline-offset: 2px; }
.wm-btn--primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm); }
.wm-btn--primary:hover { background: var(--color-primary-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.wm-btn--secondary { background: var(--color-surface); color: var(--color-text); border-color: var(--color-border); }
.wm-btn--secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }
.wm-btn--ghost { background: transparent; color: var(--color-primary); }
.wm-btn--ghost:hover { background: rgba(37, 99, 235, 0.08); }
.wm-btn--lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-md); }

/* Announcement bar */
.wm-announce {
	background: linear-gradient(135deg, var(--color-secondary), #0F172A);
	color: #fff;
	padding: 10px 0;
	font-size: 0.875rem;
	text-align: center;
}
.wm-announce a { color: var(--color-accent); text-decoration: underline; }
.wm-announce__inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Hero */
.wm-hero {
	position: relative;
	padding: var(--space-6) 0 var(--space-7);
	background:
		radial-gradient(1200px 600px at 80% -10%, rgba(56, 189, 248, 0.18), transparent 60%),
		radial-gradient(900px 500px at 10% 30%, rgba(37, 99, 235, 0.12), transparent 60%),
		var(--color-bg);
	overflow: hidden;
}
.wm-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--space-5);
	align-items: center;
}
.wm-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(37, 99, 235, 0.08);
	color: var(--color-primary);
	border-radius: var(--radius-pill);
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: var(--space-2);
}
.wm-hero__title {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: var(--space-2);
}
.wm-hero__title em {
	font-style: normal;
	background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.wm-hero__subtitle {
	font-size: 1.125rem;
	color: var(--color-muted);
	max-width: 540px;
	margin-bottom: var(--space-3);
}
.wm-hero__actions {
	display: flex;
	gap: var(--space-1);
	flex-wrap: wrap;
	margin-bottom: var(--space-4);
}
.wm-hero__meta {
	display: flex;
	gap: var(--space-3);
	flex-wrap: wrap;
	color: var(--color-muted);
	font-size: 0.875rem;
}
.wm-hero__meta-item { display: inline-flex; align-items: center; gap: 6px; }
.wm-hero__meta-item svg { width: 16px; height: 16px; color: var(--color-success); }

.wm-hero__visual {
	position: relative;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	background: var(--color-surface);
	padding: 16px;
	border: 1px solid var(--color-border);
}
.wm-hero__visual::before {
	content: "";
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	border-radius: var(--radius-lg);
	z-index: -1;
	opacity: 0.18;
	filter: blur(28px);
}
.wm-hero__visual img { border-radius: var(--radius-md); display: block; width: 100%; }
.wm-hero__caption {
	margin-top: 12px;
	color: var(--color-muted);
	font-size: 0.875rem;
	text-align: center;
}

@media (max-width: 1023px) {
	.wm-hero { padding: var(--space-5) 0 var(--space-6); }
	.wm-hero__grid { grid-template-columns: 1fr; }
	.wm-hero__visual { order: -1; max-width: 560px; margin: 0 auto; }
}

/* Sections */
.wm-section { padding: var(--space-6) 0; }
.wm-section--alt { background: var(--color-surface); }
.wm-section--dark { background: var(--color-secondary); color: rgba(255,255,255,0.92); }
.wm-section--dark h1, .wm-section--dark h2, .wm-section--dark h3 { color: #fff; }

.wm-section__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--space-4);
}
.wm-section__eyebrow {
	display: inline-block;
	color: var(--color-primary);
	font-weight: 600;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}
.wm-section__title { margin-bottom: var(--space-1); }
.wm-section__desc { color: var(--color-muted); font-size: 1.0625rem; }
.wm-section--dark .wm-section__desc { color: rgba(255,255,255,0.7); }

/* Stat band (data comparison) */
.wm-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-2);
	margin-top: var(--space-4);
}
.wm-stat {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-3);
	text-align: center;
	box-shadow: var(--shadow-xs);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.wm-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.wm-stat__value {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.1;
}
.wm-stat__label { color: var(--color-muted); font-size: 0.875rem; margin-top: 6px; }
@media (max-width: 1023px) { .wm-stats { grid-template-columns: repeat(2, 1fr); } }

/* Feature cards */
.wm-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-3);
}
.wm-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wm-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1023px) {
	.wm-grid, .wm-grid--2, .wm-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
	.wm-grid, .wm-grid--2, .wm-grid--4 { grid-template-columns: 1fr; }
}

.wm-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-3);
	box-shadow: var(--shadow-xs);
	transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
	display: flex;
	flex-direction: column;
}
.wm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37, 99, 235, 0.3); }
.wm-card__icon {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-md);
	background: rgba(37, 99, 235, 0.1);
	color: var(--color-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-2);
}
.wm-card__icon svg { width: 24px; height: 24px; }
.wm-card__title { font-size: 1.125rem; margin-bottom: 8px; }
.wm-card__text { color: var(--color-muted); font-size: 0.9375rem; margin: 0; }

.wm-section--dark .wm-card {
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.92);
}
.wm-section--dark .wm-card__icon { background: rgba(56, 189, 248, 0.15); color: var(--color-accent); }
.wm-section--dark .wm-card__text { color: rgba(255,255,255,0.75); }

/* Screenshot / showcase */
.wm-screenshots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-2);
}
@media (max-width: 1023px) { .wm-screenshots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .wm-screenshots { grid-template-columns: 1fr; } }
.wm-shot {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--color-surface-alt);
	aspect-ratio: 4 / 3;
	border: 1px solid var(--color-border);
}
.wm-shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--transition-base); }
.wm-shot:hover img { transform: scale(1.04); }
.wm-shot__caption {
	position: absolute;
	left: 12px;
	bottom: 12px;
	background: var(--color-overlay);
	color: #fff;
	padding: 6px 12px;
	border-radius: var(--radius-pill);
	font-size: 0.8125rem;
}

/* Compatible games (logo cloud) */
.wm-games {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--space-2);
}
@media (max-width: 1023px) { .wm-games { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 639px) { .wm-games { grid-template-columns: repeat(3, 1fr); } }
.wm-game {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-2);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-weight: 600;
	color: var(--color-text);
	min-height: 80px;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.wm-game:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--color-primary); }
.wm-game__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}

/* Comparison table */
.wm-compare {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.wm-compare table { margin: 0; }
.wm-compare th, .wm-compare td {
	padding: 14px 20px;
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}
.wm-compare thead th { background: var(--color-surface-alt); font-weight: 600; color: var(--color-text); }
.wm-compare tbody tr:last-child td { border-bottom: 0; }
.wm-compare td.is-highlight, .wm-compare th.is-highlight { background: rgba(37, 99, 235, 0.05); color: var(--color-primary); font-weight: 600; }

/* Testimonials */
.wm-testimonial {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-3);
	box-shadow: var(--shadow-xs);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}
.wm-testimonial__rating { color: var(--color-warning); letter-spacing: 2px; }
.wm-testimonial__quote { font-size: 1rem; color: var(--color-text); margin: 0; }
.wm-testimonial__author { display: flex; align-items: center; gap: 12px; }
.wm-testimonial__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}
.wm-testimonial__name { font-weight: 600; margin: 0; font-size: 0.9375rem; }
.wm-testimonial__role { color: var(--color-muted); font-size: 0.8125rem; margin: 0; }

/* Download CTA */
.wm-download {
	background: linear-gradient(135deg, var(--color-secondary), #0F172A);
	color: #fff;
	padding: var(--space-6) 0;
	text-align: center;
}
.wm-download__title { color: #fff; margin-bottom: var(--space-1); }
.wm-download__desc { color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto var(--space-3); }
.wm-download__actions { display: inline-flex; gap: var(--space-1); flex-wrap: wrap; justify-content: center; }
.wm-download__meta {
	display: flex;
	justify-content: center;
	gap: var(--space-3);
	margin-top: var(--space-3);
	color: rgba(255,255,255,0.6);
	font-size: 0.875rem;
	flex-wrap: wrap;
}

/* Footer */
.wm-footer {
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	padding: var(--space-5) 0 var(--space-3);
	color: var(--color-muted);
}
.wm-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: var(--space-3);
	margin-bottom: var(--space-3);
}
@media (max-width: 1023px) {
	.wm-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
	.wm-footer__grid { grid-template-columns: 1fr; }
}
.wm-footer__brand { color: var(--color-text); font-weight: 700; margin-bottom: 12px; display: block; }
.wm-footer h4 { font-size: 0.9375rem; margin-bottom: 12px; color: var(--color-text); }
.wm-footer ul { list-style: none; margin: 0; padding: 0; }
.wm-footer li { margin-bottom: 8px; }
.wm-footer a { color: var(--color-muted); }
.wm-footer a:hover { color: var(--color-primary); }
.wm-footer__bottom {
	border-top: 1px solid var(--color-border);
	padding-top: var(--space-2);
	font-size: 0.8125rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-2);
	flex-wrap: wrap;
}

/* 404 */
.wm-error {
	text-align: center;
	padding: var(--space-7) var(--space-2);
}
.wm-error__code { font-size: clamp(4rem, 12vw, 8rem); font-weight: 800; color: var(--color-primary); margin: 0; line-height: 1; }

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.wm-sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.alignleft { float: left; margin-right: var(--space-2); margin-bottom: var(--space-2); }
.alignright { float: right; margin-left: var(--space-2); margin-bottom: var(--space-2); }
.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; margin-bottom: var(--space-2); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}
