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

body {
    font-family: Georgia, "Times New Roman", serif;
    background-color: #F5F0E8;
    color: #2C2C2C;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px;
    text-align: center;
}

.logo {
    margin-bottom: 32px;
}

.logo-svg {
    width: 120px;
    height: 60px;
}

.tagline {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 12px;
    line-height: 1.2;
}

.highlight {
    color: #5B7B3A;
}

.subhead {
    font-size: 1.2rem;
    color: #5B7B3A;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form {
    margin-bottom: 48px;
}

.input-group {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto 12px;
}

.email-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #D4A843;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #FFFFFF;
    color: #2C2C2C;
    outline: none;
    transition: border-color 0.2s;
}

.email-input:focus {
    border-color: #5B7B3A;
}

.submit-btn {
    padding: 14px 24px;
    background-color: #5B7B3A;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.submit-btn:hover {
    background-color: #4A6A2F;
}

.form-note {
    font-size: 0.85rem;
    color: #7B3F65;
    margin-top: 4px;
}

.social-proof {
    border-top: 1px solid #D4A843;
    padding-top: 32px;
}

.social-proof p {
    font-size: 1rem;
    color: #5B7B3A;
    margin-bottom: 12px;
}

.social-links a {
    color: #7B3F65;
    text-decoration: none;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
}

.social-links a:hover {
    color: #5B7B3A;
    text-decoration: underline;
}

.sep {
    color: #D4A843;
    margin: 0 8px;
}

footer {
    padding: 24px 0;
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    color: #7B3F65;
    opacity: 0.7;
}

.latest-issue {
    margin-top: 40px;
    padding: 32px 24px;
    background-color: #FFFFFF;
    border-radius: 8px;
    border: 2px solid #D4A843;
    text-align: center;
}

.issue-badge {
    display: inline-block;
    background-color: #5B7B3A;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.issue-title {
    font-size: 1.5rem;
    color: #2C2C2C;
    margin-bottom: 8px;
    line-height: 1.2;
}

.issue-excerpt {
    font-size: 1rem;
    color: #5B7B3A;
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.issue-link {
    display: inline-block;
    background-color: #7B3F65;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.issue-link:hover {
    background-color: #5A2F4A;
}

.issue-note {
    font-size: 0.8rem;
    color: #7B3F65;
    margin-top: 10px;
    opacity: 0.7;
}

@media (max-width: 540px) {
    .tagline { font-size: 1.8rem; }
    .subhead { font-size: 1rem; }
    .input-group { flex-direction: column; }
    .submit-btn { width: 100%; }
    .issue-title { font-size: 1.3rem; }
}
