/* ========================================
   SHL Labs - Minimal Design System
   ======================================== */

:root {
    --black: #000000;
    --gray-dark: #666666;
    --gray-light: #999999;
    --accent: #2563eb;
    --white: #ffffff;
    --border: #e5e7eb;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-top: 120px;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.logo img {
    display: block;
    transition: opacity 0.2s ease;
}

.logo:hover img {
    opacity: 0.8;
}

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

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    width: min(960px, 100%);
    margin: 0 auto;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 24px;
    gap: 1.5rem;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.1;
    max-width: 800px;
    letter-spacing: -0.02em;
}

.hero-subhead {
    max-width: 600px;
    color: var(--gray-dark);
    font-size: 1.125rem;
}

/* ========================================
   CTA Button
   ======================================== */

.cta {
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent);
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s ease;
    text-align: center;
}

.cta-solid {
    background: var(--accent);
    color: var(--white);
}

.cta-ghost {
    background: transparent;
}

.cta:hover {
    background: var(--accent);
    color: var(--white);
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========================================
   Services Section
   ======================================== */

.services {
    max-width: 600px;
    margin: 10rem auto;
    padding: 0 2rem;
    text-align: center;
}

.services h2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-list p {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-dark);
    line-height: 1.8;
}

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

.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 10rem;
}

.site-footer p {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--gray-light);
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--black);
}

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

@media (max-width: 640px) {
    body {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        min-height: 70vh;
        padding: 3rem 1.5rem;
        gap: 1rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-group .cta {
        width: 100%;
    }

    .services {
        margin: 6rem auto;
    }

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

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
