Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Beyond Logic Labs</title> | |
| <style> | |
| * { margin: 0; padding: 0; box-sizing: border-box; } | |
| body { | |
| font-family: 'SF Mono', 'Fira Code', monospace; | |
| min-height: 100vh; | |
| background: linear-gradient(135deg, #e0f7fa 0%, #fce4ec 50%, #fff 100%); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| padding: 3rem; | |
| } | |
| .container { | |
| max-width: 700px; | |
| } | |
| .label { | |
| color: #00bcd4; | |
| font-size: 0.75rem; | |
| letter-spacing: 0.2em; | |
| margin-bottom: 1rem; | |
| } | |
| h1 { | |
| font-size: 3.5rem; | |
| font-weight: 800; | |
| margin-bottom: 1.5rem; | |
| line-height: 1.1; | |
| } | |
| h1 span { | |
| background: linear-gradient(90deg, #00bcd4, #e91e63); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| p { | |
| font-family: -apple-system, BlinkMacSystemFont, sans-serif; | |
| color: #444; | |
| font-size: 1.1rem; | |
| line-height: 1.7; | |
| margin-bottom: 2rem; | |
| } | |
| .buttons { | |
| display: flex; | |
| gap: 1rem; | |
| flex-wrap: wrap; | |
| } | |
| .btn { | |
| padding: 0.875rem 1.75rem; | |
| border-radius: 8px; | |
| text-decoration: none; | |
| font-weight: 600; | |
| font-size: 0.85rem; | |
| letter-spacing: 0.05em; | |
| transition: transform 0.2s; | |
| } | |
| .btn:hover { transform: translateY(-2px); } | |
| .btn-primary { | |
| background: linear-gradient(90deg, #00bcd4, #26c6da); | |
| color: white; | |
| } | |
| .btn-secondary { | |
| background: white; | |
| color: #333; | |
| border: 1px solid #ddd; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="label">> EXPERIMENTAL SOFTWARE LAB</div> | |
| <h1>Building <span>Beyond</span></h1> | |
| <p>Fine-tuned LLMs for game NPCs. Knowledge-grounded generation with hallucination prevention via multi-pass verification.</p> | |
| <div class="buttons"> | |
| <a href="https://beyondlogiclabs.com/loreguard" class="btn btn-primary">EXPLORE LOREGUARD</a> | |
| <a href="https://github.com/beyond-logic-labs" class="btn btn-secondary">GITHUB</a> | |
| </div> | |
| </div> | |
| </body> | |
| </html> | |