* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    background-color: #fafafa;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    max-width: 680px;
    margin: 0 auto;
    padding: 120px 40px;
}

header {
    margin-bottom: 120px;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h2 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

section {
    margin-bottom: 96px;
}

section.statement {
    margin-bottom: 80px;
}

section.statement p {
    font-size: 1.125rem;
    font-weight: 400;
}

p {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

.archive-list {
    list-style: none;
    margin-top: 32px;
    margin-bottom: 0;
}

.archive-list li {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9375rem;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.link-item {
    margin-top: 32px;
}

.external-link {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

@media (max-width: 768px) {
    main {
        padding: 80px 24px;
    }
    
    header {
        margin-bottom: 80px;
    }
    
    section {
        margin-bottom: 64px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
}