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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-accent: #f8f8f8;
    --text-primary: #1a1a1a;
    --text-secondary: #404040;
    --text-muted: #737373;
    --accent-primary: #6b21a8;
    --gradient-primary: linear-gradient(135deg, #6b21a8 0%, #581c87 50%, #4c1d95 100%);
    --border-color: #e8e8e8;
    --shadow-sm: 0 4px 12px rgba(107, 33, 168, 0.12);
    --shadow-md: 0 8px 24px rgba(107, 33, 168, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.nav-cta-container {
    position: relative;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-cta-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-cta-container.active .nav-cta-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    min-width: 320px;
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 10000;
}

.nav-dropdown.show {
    display: block;
    animation: dropdownFadeIn 0.3s ease forwards;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-dropdown h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.nav-dropdown p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.nav-dropdown-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.nav-dropdown-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--bg-secondary);
}

.nav-dropdown-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

.nav-dropdown-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.nav-dropdown-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.breadcrumb {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Content */
.main-content {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.sample-header {
    text-align: center;
    margin-bottom: 40px;
}

.sample-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.page-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.issue-meta {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.subscribe-cta {
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.05) 0%, rgba(255,255,255,0.9) 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin: 40px 0;
}

.subscribe-cta h3 {
    color: var(--accent-primary);
    margin-bottom: 12px;
    font-size: 20px;
}

.subscribe-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.subscribe-form-inline {
    display: flex;
    gap: 6px;
    max-width: 400px;
    margin: 0 auto 16px auto;
    align-items: stretch;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 6px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.subscribe-form-inline:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1), var(--shadow-sm);
}

.subscribe-form-inline input {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    font-family: inherit;
}

.subscribe-form-inline input::placeholder {
    color: var(--text-muted);
}

.subscribe-form-inline button {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.subscribe-form-inline button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.subscribe-disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Newsletter Content */
.newsletter-content {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
}

.newsletter-header {
    text-align: left;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.newsletter-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.newsletter-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
}

.newsletter-date {
    font-size: 14px;
    color: var(--text-muted);
}

.section {
    margin: 40px 0;
}

.section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.section .section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 16px;
}

.section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 12px;
}

.section p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.section li {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.highlight-section {
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.08) 0%, rgba(255,255,255,0.9) 100%);
    border: 1px solid rgba(107, 33, 168, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.bottom-line {
    background: var(--accent-primary);
    color: white;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
}

.bottom-line p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.number-stat {
    text-align: center;
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.number-stat .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.number-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.poll-options {
    margin: 16px 0;
}

.poll-option {
    margin: 8px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.poll-cta {
    text-align: center;
    margin: 20px 0;
}

.poll-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .container {
        padding: 0 20px;
    }

    .main-content {
        padding: 100px 0 60px;
    }

    .nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .newsletter-content {
        padding: 24px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .subscribe-form-inline {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

    .subscribe-form-inline input {
        width: 100%;
        padding: 16px;
    }

    .subscribe-form-inline button {
        width: 100%;
        padding: 16px;
    }
}





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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f8f9fa;
    --text-primary: #1f2937;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --accent-primary: #6b21a8;
    --gradient-primary: linear-gradient(135deg, #6b21a8 0%, #581c87 50%, #4c1d95 100%);
    --border-color: #e5e7eb;
    --border-light: #f1f5f9;
    --shadow-sm: 0 4px 12px rgba(107, 33, 168, 0.12);
    --shadow-md: 0 8px 24px rgba(107, 33, 168, 0.15);
    --warning-bg: #fef3c7;
    --warning-border: #f59e0b;
    --warning-text: #92400e;
    --info-bg: #f8fafc;
    --info-border: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.breadcrumb {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

    .breadcrumb a {
        color: var(--accent-primary);
        text-decoration: none;
        font-size: 14px;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

/* Main Content */
.main-content {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.archive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.page-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.issue-meta {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.subscribe-cta {
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.05) 0%, rgba(255,255,255,0.9) 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin: 40px 0;
}

    .subscribe-cta h3 {
        color: var(--accent-primary);
        margin-bottom: 12px;
        font-size: 20px;
    }

    .subscribe-cta p {
        color: var(--text-secondary);
        margin-bottom: 20px;
        font-size: 16px;
    }

.subscribe-form-inline {
    display: flex;
    gap: 6px;
    max-width: 400px;
    margin: 0 auto 16px auto;
    align-items: stretch;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 6px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

    .subscribe-form-inline:focus-within {
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1), var(--shadow-sm);
    }

    .subscribe-form-inline input {
        flex: 1;
        min-width: 0;
        padding: 14px 16px;
        border: none;
        background: transparent;
        color: var(--text-primary);
        font-size: 16px;
        outline: none;
        font-family: inherit;
    }

        .subscribe-form-inline input::placeholder {
            color: var(--text-muted);
        }

    .subscribe-form-inline button {
        background: var(--gradient-primary);
        color: white;
        padding: 14px 20px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
        flex-shrink: 0;
    }

        .subscribe-form-inline button:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

.subscribe-disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Newsletter Content */
.newsletter-content {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
}

.newsletter-header {
    text-align: center;
    background-color: var(--bg-primary);
    padding-bottom: 24px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-light);
}

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.newsletter-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.newsletter-tagline {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

.featured-image {
    text-align: center;
    margin-bottom: 20px;
}

    .featured-image img {
        width: 100%;
        max-width: 552px;
        height: 300px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }

.image-caption {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

.section {
    margin: 40px 0;
}

.intro-section {
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 20px;
    margin-bottom: 32px;
}

    .intro-section h2 {
        font-size: 18px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 12px;
    }

.story-section {
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
}

    .story-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

.section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 12px;
}

.section p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.section li {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.stats-box {
    background: var(--info-bg);
    border: 1px solid var(--info-border);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

    .stats-box h3 {
        margin: 0 0 12px;
        font-size: 16px;
        font-weight: 600;
        color: var(--accent-primary);
    }

    .stats-box ul {
        margin: 0;
        padding-left: 20px;
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-secondary);
    }

.money-tip {
    background: var(--warning-bg);
    border-left: 4px solid var(--warning-border);
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 0 4px 4px 0;
}

    .money-tip p {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        color: var(--warning-text);
    }

.native-ad {
    background: var(--info-bg);
    border: 1px solid var(--info-border);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--accent-primary);
    margin: 32px 0;
}

    .native-ad .sponsor-label {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }

    .native-ad h3 {
        margin: 0 0 12px;
        font-size: 18px;
        font-weight: 600;
        color: var(--text-primary);
    }

    .native-ad p {
        margin: 0 0 16px;
        font-size: 15px;
        color: var(--text-muted);
    }

    .native-ad .cta {
        text-align: center;
    }

        .native-ad .cta a {
            display: inline-block;
            background: var(--accent-primary);
            color: white;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

            .native-ad .cta a:hover {
                transform: translateY(-1px);
                box-shadow: var(--shadow-sm);
            }

.engagement-section {
    text-align: center;
    padding: 24px;
    background: var(--accent-primary);
    border-radius: 8px;
    margin: 32px 0;
    color: white;
}

    .engagement-section h3 {
        margin: 0 0 12px;
        font-size: 18px;
        font-weight: 600;
        color: white;
    }

    .engagement-section p {
        margin: 0 0 16px;
        font-size: 15px;
        color: rgba(255,255,255,0.9);
    }

    .engagement-section .author {
        margin: 0;
        font-size: 14px;
        color: rgba(255,255,255,0.8);
    }

.footer-content {
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 0 0 16px 16px;
}

    .footer-content p {
        margin-bottom: 12px;
        color: var(--text-secondary);
    }

    .footer-content .forward-message {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .footer-content .subscribe-link {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .footer-content .archive-link {
        font-size: 12px;
        font-style: italic;
        margin-bottom: 8px;
    }

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

    .footer-bottom .tagline {
        font-size: 13px;
        color: var(--text-light);
        margin-bottom: 8px;
    }

    .footer-bottom .links {
        font-size: 12px;
        color: var(--text-light);
    }

.footer-content a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
}

    .footer-content a:hover {
        text-decoration: underline;
    }

code {
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 14px;
    color: var(--accent-primary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .container {
        padding: 0 20px;
    }

    .main-content {
        padding: 100px 0 60px;
    }

    .nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .newsletter-content {
        padding: 24px;
    }

    .subscribe-form-inline {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

        .subscribe-form-inline input {
            width: 100%;
            padding: 16px;
        }

        .subscribe-form-inline button {
            width: 100%;
            padding: 16px;
        }

    .featured-image img {
        height: 200px;
    }

    .section h2 {
        font-size: 20px;
    }

    .newsletter-title {
        font-size: 24px;
    }
}