* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0A0A0A;
    color: #E0E0E0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.mono, .specs table, .price, .badge, nav a, .btn, .product-card .price {
    font-family: 'JetBrains Mono', 'SF Mono', 'IBM Plex Mono', monospace;
}

h1 {
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -2px;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
}

h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

h3 {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 32px 0 16px;
}

/* Header */
/* Header */
header {
    border-bottom: 1px solid #1A1A1A;
    padding: 24px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

nav a:hover {
    color: #FFFFFF;
}

/* Mobile */
@media (max-width: 700px) {
    header .container {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }
    
    .logo img {
        height: 60px;
    }
    
    nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Hero */
.hero {
    padding: 80px 0 64px;
}

.hero p {
    font-size: 18px;
    color: #999;
    max-width: 600px;
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #FFFFFF;
    color: #0A0A0A;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-outline {
    background: transparent;
    border: 1px solid #333;
    color: #E0E0E0;
    margin-left: 12px;
}

.btn-sm {
    display: inline-block;
    background: #222;
    color: #E0E0E0;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 12px;
    font-family: monospace;
    margin-right: 12px;
    margin-bottom: 12px;
    transition: background 0.2s;
}

.btn-sm:hover {
    background: #333;
}

.btn-primary {
    background: #FFFFFF;
    color: #0A0A0A;
}

/* Cards */
.product-card {
    background: #111111;
    padding: 32px;
    margin: 32px 0;
    border: 1px solid #222;
}

.product-card h3 {
    margin-top: 0;
}

.badge {
    display: inline-block;
    background: #1A1A1A;
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 16px;
}

.price {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 16px 0;
}

.price small {
    font-size: 13px;
    color: #666;
}

/* Specs table */
.specs {
    background: #111111;
    padding: 32px;
    margin: 32px 0;
}

.specs table {
    width: 100%;
    border-collapse: collapse;
}

.specs td {
    padding: 12px 0;
    border-bottom: 1px solid #222;
    font-size: 13px;
}

.specs td:first-child {
    color: #888;
    width: 200px;
}

.specs td:last-child {
    color: #E0E0E0;
    font-family: monospace;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.gallery-item {
    background: #111111;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #222;
    color: #555;
    font-size: 12px;
    font-family: monospace;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

input, textarea, select {
    width: 100%;
    background: #111111;
    border: 1px solid #333;
    padding: 12px;
    color: #E0E0E0;
    font-family: monospace;
    font-size: 13px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    background: #FFFFFF;
    color: #0A0A0A;
    border: none;
    padding: 12px 28px;
    font-family: monospace;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

/* Support cards */
.support-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.support-card {
    background: #111111;
    padding: 24px;
    flex: 1;
    min-width: 140px;
    border: 1px solid #222;
}

/* Sections */
section {
    padding: 64px 0;
    border-top: 1px solid #1A1A1A;
}

section:first-of-type {
    border-top: none;
}

/* Footer */
footer {
    border-top: 1px solid #1A1A1A;
    padding: 48px 0;
    font-size: 12px;
    color: #555;
    text-align: center;
    margin-top: 64px;
}

/* Utilities */
.text-muted {
    color: #666;
    font-size: 13px;
}

hr {
    border: none;
    border-top: 1px solid #1A1A1A;
    margin: 32px 0;
}

@media (max-width: 700px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 24px;
    }
    .hero {
        padding: 48px 0;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
    .specs td:first-child {
        width: 120px;
    }
}