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

:root {
    --text-color: #57544F;
    --text-color-secondary: #737070;
    --font-family: 'Prime Courier New', Courier, 'SF Mono', Monaco, Consolas, 'Liberation Mono', 'Menlo', monospace;
}

body {
    font-family: var(--font-family);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 600;
    min-height: 100vh;
    position: relative;
    padding: 2rem;
    background-color: #ffffff ;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Header styles */
.site-header {
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.company-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.tagline {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-align: center;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: left;
}

/* Typography */

/* Company title styling */
.site-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-color);
}

/* These styles are handled by .markdown-content selectors below */

em {
    color: var(--text-color);
    font-style: italic;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
}

.breadcrumbs a {
    color: var(--text-color);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
    opacity: 0.8;
}

/* Lists */
ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-color-secondary);
    line-height: 1.6;
    font-weight: 500;
    font-size: inherit;
}

/* Markdown content styles */
.markdown-content {
    color: var(--text-color);
}

.markdown-content h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--text-color);
}

.markdown-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
    color: var(--text-color);
}

.markdown-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    color: var(--text-color);
}

.markdown-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color-secondary);
    font-weight: 500;
}

.markdown-content strong {
    color: var(--text-color);
    font-weight: 700;
}

.markdown-content em {
    color: var(--text-color);
    font-style: italic;
}

.markdown-content a {
    color: var(--text-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.markdown-content a:hover {
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    margin-top: 3rem;
}

.cta-section a {
    color: var(--text-color);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.cta-section a:hover {
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 1.8rem;
    }

    .markdown-content h1 {
        font-size: 1.3rem;
    }

    .markdown-content h2 {
        font-size: 1.2rem;
    }

    .site-header {
        padding: 3rem 2rem 1.5rem 2rem;
    }

    .manifesto-content {
        padding: 1rem;
    }

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

@media (max-width: 480px) {
    .site-header h1 {
        font-size: 1.6rem;
    }

    .markdown-content h1 {
        font-size: 1.2rem;
    }

    .markdown-content h2 {
        font-size: 1.1rem;
    }

    .site-header {
        padding: 2rem 1rem 1rem 1rem;
    }

    .manifesto-content {
        padding: 0.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    body {
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styles */
::selection {
    background: rgba(236, 228, 217, 0.8);
    color: var(--text-color);
}

::-moz-selection {
    background: rgba(236, 228, 217, 0.8);
    color: var(--text-color);
}
