:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    /* --text-primary: #2F2722;
    --text-secondary: #2F2722; */
    --text-primary: #003b16;
    /* --text-primary: #002e59; */
    --text-secondary: #2F2722;
    --text-light: #999999;
    --background: #F8F5F0;
    --surface: #EFE8DE;
}

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

body {
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    font-weight: 400;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

body strong {
    font-weight: 600;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.005) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: var(--background);
    /* background: var(--surface); */
    /* border-bottom: 1px solid rgba(47, 39, 34, 0.1); */
    z-index: 100;
}

.nav-logo {
    text-decoration: none;
}

.nav-logo img {
    height: 55px;
    width: auto;
    display: block;
}

.nav-logo h1 {
    /* font-family: 'IBM Plex Mono', monospace, sans-serif; */
    font-family: 'Lexend', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-decoration: none !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    text-transform: none;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.5;
}

.nav-links a.nav-active {
    font-weight: 500;
}

.nav-links a.nav-emph {
    font-weight: 500;
    padding: 0.4rem 1rem;
    background: var(--text-primary);
    color: var(--background);
    transition: opacity 0.2s ease;
    border-radius: 4px;
}

.nav-links a.nav-emph:hover {
    opacity: 0.75;
}

/* Layout */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.logo {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    text-align: center;
    white-space: nowrap;
}

.tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
    max-width: 700px;
    line-height: 1.6;
    text-align: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.hero-logo img {
    height: 120px;
    width: auto;
}

.launch-post {
    text-align: left;
    margin: 2rem 0;
    padding: 0 2rem;
}

.launch-post a {
    color: #c5a354;
    text-decoration: underline;
}

.launch-post h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.launch-post p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.launch-post ul,
.launch-post ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.launch-post li {
    margin-bottom: 0.5rem;
}

.contact-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Lexend', sans-serif;
}

.contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    /* background: var(--surface); */
    background: var(--background);
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--text-primary);
    border-radius: 7px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.contact:hover {
    color: var(--surface);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--text-primary);
}

.contact:hover::before {
    opacity: 1;
}

.email-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact:hover .email-icon {
    transform: scale(1.1);
}

/* Latest Updates */
.updates-section {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--surface);
    margin-bottom: 2rem;
    border-radius: 10px;
}

.updates-title {
    font-family: 'Lexend', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.update-item {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    font-size: 0.9rem;
}

.update-date {
    font-family: 'Lexend', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    white-space: nowrap;
    min-width: 5rem;
}

.update-text {
    color: var(--text-secondary);
    line-height: 1.5;
}

.update-text a {
    color: #c5a354;
    text-decoration: underline;
}

/* Blog index */
.blog-index {
    width: 100%;
    padding: 0 2rem;
}

.blog-index-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.post-item {
    display: block;
    padding: 2rem 0;
    border-top: 1px solid rgba(47, 39, 34, 0.12);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.post-item:last-child {
    border-bottom: 1px solid rgba(47, 39, 34, 0.12);
}

.post-item:hover {
    opacity: 0.7;
}

.post-meta {
    margin-bottom: 0.5rem;
}

.post-date {
    font-family: 'Lexend', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.post-item .post-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.post-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Blog post */
.post-header {
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-link {
    font-family: 'Lexend', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.back-link:hover {
    opacity: 0.6;
}

.post-header-meta .post-date {
    font-family: 'Lexend', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-footer {
    margin-top: 4rem;
}

footer {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .container {
        padding: 5rem 1rem 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .tagline {
        font-size: 1rem;
    }
}
