/*
Theme Name: Simple Capture
Description: Hub site for the Simple Capture family of Chrome extensions
Version: 1.0.0
*/

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

:root {
    --bg: #0f0f1a;
    --bg-card: #13131f;
    --accent: #ef4444;
    --text: #e0e0e0;
    --text-muted: #888;
    --radius: 12px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Hero */
.hero {
    text-align: center;
    padding: 80px 0 60px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* Extension Grid */
.extensions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 80px;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.card h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.price {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Philosophy */
.philosophy {
    padding-bottom: 80px;
}

.philosophy h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.philosophy p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 640px;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    border-top: 1px solid #1e1e2e;
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.site-footer a {
    color: var(--text-muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--text);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Inner pages */
.inner-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.inner-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.inner-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.inner-content a {
    color: var(--accent);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 640px) {
    .hero {
        padding: 56px 0 40px;
    }

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

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

    .extensions {
        grid-template-columns: 1fr;
        padding-bottom: 56px;
    }

    .card {
        padding: 24px 20px;
    }

    .philosophy {
        padding-bottom: 56px;
    }

    .philosophy h2 {
        font-size: 1.4rem;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
