# Legocia Systems - Corporate Website Simulation

This is a complete, static website simulation for "Legocia Systems Inc.", a fictional privacy-first hardware company.

## Quick Start
1. Create a folder named `legocia-site`.
2. Save `style.css` (The Master Stylesheet) into this folder.
3. Save `layout.html` (The Master Template) into this folder (for reference).
4. Save all other `.html` files (index, shop, about, etc.) into this folder.
5. Open `index.html` in any web browser.

## File Structure

### Core
* `index.html` - Homepage / Ecosystem Overview
* `style.css` - Global Design System
* `sitemap.html` - Master Directory

### Product
* `shop.html` - Storefront
* `optic.html` - The Wearable Camera
* `node.html` - The Home Server
* `accessories.html` - Mounts & Cables
* `enterprise.html` - B2B Solutions
* `collabs.html` - Limited Editions

### Company
* `about.html` - History
* `manifesto.html` - Philosophy
* `careers.html` - Job Board
* `investors.html` - Stock & Financials
* `transparency-report.html` - Government Requests
* `supply-chain.html` - Manufacturing Ethics

### Technical & Dev
* `developers.html` - API Docs
* `research.html` - Whitepaper
* `status.html` - Uptime Dashboard
* `security.html` - Bug Bounty
* `graveyard.html` - Killed Products
* `eol.html` - End of Life / Death Plan

### Legal & Compliance
* `privacy.html` - Privacy Policy
* `terms.html` - TOS
* `warrant.html` - Warrant Canary
* `cookies.html` - Cookie Policy
* `bias.html` - AI Ethics Report

## Customization
To change the brand color, open `style.css` and edit the `--accent` variable:
```css
:root {
    --accent: #2563eb; /* Change this hex code */
}
