/*
 * Outcome Owl
 * Copyright 2024-2026 Seattle Software Works, Inc.
 *
 * style.css — Public website styles (outcomeowl.com)
 *
 * Outcome Owl Change Log
 * ----------------------
 * Apr 2026  P Samson  Simplified to three-section layout; replaced buttons with text links
 * Apr 2026  P Samson  Initial creation — pilot-phase single-page landing
 */

/* =========================================================
   Reset & Base
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                 Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2d353c;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #348fe2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.logo-outcome {
    color: #2d4a6a;
    margin-right: 4px;
}

.logo-owl {
    color: #3a90d4;
}

a:hover {
    color: #1a6dbf;
}

/* =========================================================
   Layout
   ========================================================= */

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

/* =========================================================
   Header
   ========================================================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e8eaed;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.header-contact {
    font-size: 14px;
    font-weight: 500;
    color: #2d353c;
}

.header-contact:hover {
    color: #348fe2;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
    background: linear-gradient(160deg, #1a3a5c 0%, #2d353c 100%);
    color: #ffffff;
    padding: 100px 0 90px;
    text-align: center;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-tagline {
    font-size: 22px;
    font-weight: 500;
    color: #5cc5c5;
    margin-bottom: 28px;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #c8d0d8;
    max-width: 680px;
    margin: 0 auto 36px;
    text-align: left;
}

.hero-links {
    font-size: 16px;
}

.hero-link {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 1px;
    transition: border-color 0.2s ease;
}

.hero-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.hero-link-sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 12px;
}

/* =========================================================
   Sections
   ========================================================= */

.section {
    padding: 80px 0;
}

.section-dark {
    background: #2d353c;
    color: #ffffff;
}

/* =========================================================
   Features Grid
   ========================================================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 8px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #5cc5c5;
}

.feature-card p {
    font-size: 15px;
    color: #a8b0b8;
    line-height: 1.7;
}

/* =========================================================
   CTA Section
   ========================================================= */

.section-cta {
    background: #f7f8fa;
    text-align: center;
    padding: 80px 0;
}

.cta-logo {
    width: 300px;
    height: auto;
    margin: 0 auto 36px;
}

.section-cta h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d353c;
    letter-spacing: -0.3px;
}

.section-cta p {
    font-size: 18px;
    color: #5a6370;
    max-width: 540px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.cta-links {
    font-size: 16px;
}

.cta-link {
    color: #348fe2;
    border-bottom: 1px solid rgba(52, 143, 226, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.2s ease;
}

.cta-link:hover {
    border-bottom-color: #348fe2;
}

.cta-link-sep {
    color: #c8d0d8;
    margin: 0 12px;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    background: #1a1f24;
    color: #8a929a;
    padding: 32px 0;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer a {
    color: #8a929a;
}

.site-footer a:hover {
    color: #ffffff;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 768px) {
    .hero {
        padding: 64px 0 56px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section {
        padding: 56px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .header-contact {
        font-size: 13px;
    }



    .section-cta h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-links,
    .cta-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-link-sep,
    .cta-link-sep {
        display: none;
    }
}
