/* Fair Search Coalition - Founder's Letter Style */
/* Design: White, minimal, typography-focused, mobile-first */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

/* Main Container */
main {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #000;
}

h2 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    margin-top: 3rem;
    color: #000;
}

p {
    margin-bottom: 1.25rem;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

/* Links */
.link {
    color: #0891b2;
    text-decoration: none;
    transition: color 0.15s ease;
}

.link:hover {
    color: #0e7490;
    text-decoration: underline;
}

/* Highlight (cyan numbers) */
.highlight {
    color: #0891b2;
    font-weight: 600;
}

/* Header Section */
.header {
    text-align: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 2.5rem;
}

.photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid #f5f5f5;
}

.subtitle {
    font-size: 1.1rem;
    color: #525252;
    margin-bottom: 1rem;
}

/* Content Sections */
.content {
    margin-bottom: 2rem;
}

.content:last-of-type {
    margin-bottom: 3rem;
}

/* Blockquotes */
blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 3px solid #0891b2;
    background: #fafafa;
}

blockquote p {
    margin-bottom: 0.5rem;
    font-style: italic;
    color: #404040;
}

blockquote cite {
    font-size: 0.9rem;
    color: #737373;
    font-style: normal;
}

/* LinkedIn Embed */
.linkedin-embed {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 8px;
}

.linkedin-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat {
    font-size: 0.95rem;
    color: #525252;
}

.linkedin-screenshot {
    width: 100%;
    border-radius: 4px;
    margin: 1rem 0;
    border: 1px solid #e5e5e5;
}

/* Status Box */
.status-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.status-line {
    margin-bottom: 0.5rem;
}

.status-line:last-child {
    margin-bottom: 0;
}

/* Lists */
.benefits,
.commitments {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.benefits li,
.commitments li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.benefits li::marker,
.commitments li::marker {
    color: #0891b2;
}

/* Form Container */
.form-container {
    margin: 2rem 0;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
    min-height: 200px;
}

/* P.S. Section */
.ps-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.ps-section p {
    font-size: 0.95rem;
    color: #404040;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    font-size: 0.9rem;
    color: #737373;
}

.footer p {
    margin-bottom: 0.75rem;
}

.footer .mission {
    font-style: italic;
    color: #525252;
}

.footer .legal {
    font-size: 0.8rem;
    margin-top: 1rem;
}

.footer .link {
    color: #737373;
}

.footer .link:hover {
    color: #0891b2;
}

/* Responsive */
@media (max-width: 600px) {
    html {
        font-size: 16px;
    }
    
    main {
        padding: 2rem 1.25rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    .photo {
        width: 100px;
        height: 100px;
    }
    
    .linkedin-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    blockquote {
        padding: 1rem;
    }
    
    .form-container {
        padding: 1.25rem;
    }
}

/* Subtle Animation */
@media (prefers-reduced-motion: no-preference) {
    .link {
        transition: color 0.15s ease;
    }
    
    .photo {
        transition: transform 0.2s ease;
    }
    
    .photo:hover {
        transform: scale(1.02);
    }
}

/* Print Styles */
@media print {
    body {
        font-size: 12pt;
    }
    
    main {
        max-width: 100%;
    }
    
    .form-container,
    .linkedin-embed {
        break-inside: avoid;
    }
}
