/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #fafafa 60vh, #4a4a4a 100vh);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    background: transparent;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 40px;
}

.terminal {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-size: 1.4rem;
    color: #333;
    letter-spacing: 0.5px;
}

.cursor {
    animation: blink 1s infinite step-end;
    font-weight: 400;
    color: #333;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Content */
.content {
    padding: 80px 0;
    text-align: center;
}

.content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: transparent;
    padding: 20px 0;
    text-align: center;
}

footer p {
    color: #bbb;
    font-size: 0.7rem;
    font-weight: 200;
}

footer a {
    color: #bbb;
    font-weight: 200;
    transition: color 0.3s;
}

footer a:hover {
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}