/* Industrial Minimalism */
:root {
    --bg: #1a1a1a;
    --text: #e0e0e0;
    --accent: #ff4500; /* High-contrast industrial orange */
    --grid: #333333;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Courier New', Courier, monospace; /* Monospaced for raw feel */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(var(--grid) 1px, transparent 1px),
                      linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 40px 40px;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    border: 1px solid var(--grid);
    margin-top: 5rem;
    background: rgba(26, 26, 26, 0.95);
}

header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--grid);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.logo {
    font-weight: bold;
    letter-spacing: 2px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    margin-left: 1rem;
    font-size: 0.8rem;
}

h1 {
    font-size: 4rem;
    line-height: 1;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.cta {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 1rem 2rem;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta:hover {
    background: var(--accent);
    color: var(--bg);
}

footer {
    margin-top: 5rem;
    font-size: 0.7rem;
    border-top: 1px solid var(--grid);
    padding-top: 1rem;
    color: #666;
}
