* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: #0a0a0f;
    color: #e0e0e8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.container { max-width: 600px; }
.brand {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #8888a0;
    margin-bottom: 2rem;
}
h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}
h1 span { color: #ff6b4a; }
.tagline {
    font-size: 1.1rem;
    color: #8888a0;
    margin-bottom: 3rem;
    line-height: 1.6;
}
.products {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}
.product {
    background: #12121a;
    border: 1px solid #1e1e2e;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: left;
}
.product h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.product h3 span { color: #ff6b4a; }
.product p {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
}
.contact {
    color: #8888a0;
    font-size: 0.85rem;
}
.contact a {
    color: #ff6b4a;
    text-decoration: none;
}
.contact a:hover { text-decoration: underline; }
.footer {
    margin-top: 3rem;
    color: #444;
    font-size: 0.75rem;
}
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .brand { letter-spacing: 4px; font-size: 0.8rem; }
}
