:root {
    --bg: #020617;
    --blueprint-line: rgba(56, 189, 248, 0.12);
    --accent: #38bdf8;
    --text-main: #94a3b8;
    --text-bright: #f8fafc;
    --mono: 'ui-monospace', 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg); color: var(--text-main); font-family: var(--mono); text-transform: uppercase; overflow-x: hidden; min-height: 100vh; }
.grid-bg { position: fixed; inset: 0; background-image: linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px), linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px); background-size: 50px 50px; z-index: -1; }
#cursor-glow { position: fixed; width: 500px; height: 500px; background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); z-index: 0; }
.wrapper { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; position: relative; z-index: 10; }
.frame { border: 1px solid var(--blueprint-line); background: rgba(2, 6, 23, 0.8); backdrop-filter: blur(8px); padding: 3rem; max-width: 900px; width: 100%; }
h1 { font-size: clamp(3rem, 10vw, 6.5rem); color: var(--text-bright); font-weight: 900; letter-spacing: -5px; line-height: 0.8; }
.version-info { position: absolute; top: 2rem; right: 2rem; font-size: 10px; text-align: right; color: var(--accent); }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 3rem 0; padding-top: 2rem; border-top: 1px solid var(--blueprint-line); }
.service-card { border: 1px solid var(--blueprint-line); padding: 1.5rem; }
.service-card h3 { color: var(--text-bright); font-size: 13px; margin: 10px 0; }
.service-card p { text-transform: none; font-size: 11px; color: #64748b; }
.form-container { display: flex; border: 1px solid var(--accent); margin-top: 1rem; }
input { background: transparent; border: none; padding: 1rem; color: white; flex-grow: 1; outline: none; font-family: var(--mono); }
button { background: var(--accent); color: var(--bg); border: none; padding: 0 2rem; font-weight: bold; cursor: pointer; }