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

body {
    background: #0A0A0C;
    color: #DDDDDD;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

header {
    margin-bottom: 48px;
}

header h1 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #D4A574;
    margin-bottom: 8px;
}

.tagline {
    font-size: 15px;
    color: #666666;
    font-weight: 300;
}

.hero {
    margin-bottom: 48px;
}

.hero p {
    font-size: 15px;
    color: #999999;
    margin-bottom: 16px;
    font-weight: 300;
}

section {
    margin-bottom: 48px;
}

section h2 {
    font-size: 18px;
    font-weight: 400;
    color: #DDDDDD;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

section h3 {
    font-size: 15px;
    font-weight: 500;
    color: #D4A574;
    margin-top: 24px;
    margin-bottom: 8px;
}

section p, section li {
    font-size: 14px;
    color: #999999;
    font-weight: 300;
    margin-bottom: 12px;
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    padding-left: 16px;
    position: relative;
}

section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #333333;
}

a {
    color: #D4A574;
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
}

nav {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid #1A1A1A;
    border-bottom: 1px solid #1A1A1A;
    margin-bottom: 48px;
}

nav a {
    font-size: 13px;
    letter-spacing: 0.5px;
    font-family: 'SF Mono', 'Menlo', monospace;
}

footer {
    padding-top: 24px;
}

footer p {
    font-size: 12px;
    color: #444444;
}

.back-link {
    display: inline-block;
    margin-bottom: 40px;
    font-size: 13px;
    font-family: 'SF Mono', 'Menlo', monospace;
    letter-spacing: 0.5px;
    color: #666666;
}

.back-link:hover {
    color: #D4A574;
}

.contact-link {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #1A1A1A;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 8px;
    transition: border-color 0.2s;
}

.contact-link:hover {
    border-color: #D4A574;
}
