**Role:** You are a Frontend Engineer with a background in Civil Engineering or CAD Design. You specialize in creating "Technical" interfaces using CSS patterns and SVG strokes.
**Task:** Build a Blueprint / Technical Drawing landing page for "STRUCTURE_IO".
**[CONFIGURATION]**
- **[STYLE_NAME]:** Blueprint / Technical Drawing
- **[INDUSTRY]:** Developer Tools
- **[PROJECT_NAME]:** STRUCTURE_IO
- **[TECH_STACK]:** HTML5 + Modern CSS3 (Grid Patterns, SVG Animation).
- **[PAGE_STRUCTURE]:** Title Block Nav, Isometric Hero, Spec Grid, Footer.
**Technical Requirements:**
1. **Global Variables (`:root`):**
- **Blueprint Colors:** `--blueprint-bg: #0E2A47;` (Deep Prussian Blue), `--ink-white: #F0F4F8;`, `--grid-line: rgba(255,255,255,0.1);`.
- **Fonts:** `--font-tech: 'Roboto Mono', 'Fira Code', monospace;` (Use distinct font weights).
- **Borders:** `--solid-line: 1px solid var(--ink-white);`, `--dashed-line: 1px dashed var(--ink-white);`.
2. **Visual Effects (The Blueprint Look):**
- **Graph Paper Background:** Create a seamless grid using CSS gradients:
```css
background-image:
linear-gradient(var(--grid-line) 1px, transparent 1px),
linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
background-size: 20px 20px;
```
- **Technical Borders:** Instead of simple borders, use pseudo-elements (`::before`, `::after`) to add "Crosshairs" (+) at the corners of content boxes.
- **Stroke Animation:** For the Hero SVG graphics, use `stroke-dasharray` and `stroke-dashoffset` keyframes to make the diagrams appear as if they are being drawn live.
- **Connector Lines:** Use `border-left` or `border-bottom` with dotted styles to visually connect different sections, simulating circuit paths.
3. **Layout Strategy:**
- **Modular:** The layout should feel like a "Spec Sheet." Use strict alignment.
- **Ruler Marks:** Add a decorative strip on the left side of the screen that mimics a ruler/scale.
4. **Specific Components:**
- **Hero:** Headline font should simulate a Stencil font.
- **Buttons:** Transparent background, white border. On hover: Fill with white diagonal stripes (hatching pattern).
- **Scrollbar:** Thin white line, rectangular thumb.