:root {
    --navy: #1a2332;
    --navy-dark: #0f1419;
    --muted-grey: #6b7280;
    --muted-grey-light: #9ca3af;
    --muted-grey-lighter: #e5e7eb;
    --background: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border: #d1d5db;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--background);
}

.logo {
    height: 48px;
    width: auto;
    display: block;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.hero {
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.status {
    font-size: 0.9375rem;
    color: var(--muted-grey);
    font-style: italic;
    padding-top: 1.5rem;
    border-top: 1px solid var(--muted-grey-lighter);
}

.content-section {
    margin-bottom: 3.5rem;
}

.content-section h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.content-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.content-card ul,
.content-card ol {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    line-height: 1.9;
}

.content-card li {
    margin-bottom: 0.875rem;
}

.content-card li:last-child {
    margin-bottom: 0;
}

.content-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

.execution-flow {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.execution-flow li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.execution-flow li:last-child {
    margin-bottom: 0;
}

.execution-flow li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--navy);
    color: var(--background);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 1rem;
    text-align: center;
    background-color: var(--background);
    margin-top: 4rem;
}

.company-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.ceo {
    font-size: 0.9375rem;
    color: var(--muted-grey);
    margin-bottom: 0.5rem;
}

.hq {
    font-size: 0.9375rem;
    color: var(--muted-grey);
    margin-bottom: 0.5rem;
}

.contact {
    font-size: 0.9375rem;
    color: var(--muted-grey);
    margin-bottom: 0.75rem;
}

.contact a {
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.contact a:hover {
    border-bottom-color: var(--navy);
}

.tagline {
    font-size: 0.875rem;
    color: var(--muted-grey-light);
    font-style: italic;
}

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

    .logo {
        height: 40px;
    }

    main {
        padding: 2rem 1rem;
    }

    .hero {
        margin-bottom: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .content-section {
        margin-bottom: 2.5rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .execution-flow li {
        padding-left: 2.25rem;
    }

    .execution-flow li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8125rem;
    }

    footer {
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1200px) {
    main {
        max-width: 1000px;
    }
}
