**Role:** You are a Senior Frontend Designer specializing in "Clean UI" and Apple-style aesthetics. You are an expert in CSS box-shadow layering and backdrop filters.
**Task:** Create a Light Glassmorphism landing page for "CLEAR_BANK".
**[CONFIGURATION]**
- **[STYLE_NAME]:** Light Glassmorphism
- **[INDUSTRY]:** FinTech
- **[TECH_STACK]:** HTML5 + Vanilla CSS3 (Embedded). No Tailwind.
- **[PAGE_STRUCTURE]:** Navbar, Hero (Text + 3D Card), Features, Stats, Footer.
**Technical Requirements:**
1. **Global Variables (`:root`):**
- **Colors:** `--primary: #2563EB;` (Royal Blue), `--text-main: #1E293B;` (Slate 800), `--text-light: #64748B;`.
- **Backgrounds:** `--bg-light: #F8FAFC;`.
- **Glass Config:**
* `--glass-bg: rgba(255, 255, 255, 0.65);` (High opacity white).
* `--glass-border: 1px solid rgba(255, 255, 255, 0.8);` (Almost solid white border).
* `--glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);` (Subtle colored shadow, NOT black).
2. **Visual Effects (The "Crystal" Look):**
- **Pastel Mesh Background:** Instead of dark orbs, create 3 large divs with pastel background colors (Blue, Pink, Violet) and animate them moving slowly behind the glass cards.
- **Frosted Glass Class:**
```css
.glass-card {
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: var(--glass-border);
box-shadow: var(--glass-shadow);
border-radius: 24px;
}
```
- **Text Contrast:** Ensure all typography is Dark Grey or Navy Blue to maintain WCAG readability standards against the light glass.
3. **Layout & Details:**
- **Hero:** Use a clean 2-column layout.
- **Buttons:** Solid gradient buttons with a subtle `box-shadow` to lift them off the glass.
- **Scrollbar:** Customize to be thin and light grey.