<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Ceytrex Labs</title> <style> * { box-sizing: border-box; } body { margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color: #1a1a1a; background: #fafafa; } main { text-align: center; padding: 2rem; max-width: 28rem; } h1 { font-size: 1.5rem; font-weight: 600; letter-spacing: 0.02em; margin: 0 0 0.75rem; } p { margin: 0; font-size: 0.95rem; line-height: 1.5; color: #444; } a { color: inherit; text-decoration: none; border-bottom: 1px solid #ccc; } a:hover { border-bottom-color: #1a1a1a; } </style> </head> <body> <main> <h1>Ceytrex Labs</h1> <p>Web & product studio.</p> </main> </body> </html>