/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-btn, .nav-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.menu-btn:hover, .nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    color: #eab308;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #eab308;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.wealth-display {
    text-align: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.wealth-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.wealth-change {
    font-size: 1.125rem;
    color: #eab308;
    margin-bottom: 0.5rem;
}

.wealth-badge {
    background-color: #eab308;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Chart Section */
.chart-section {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.chart-updated {
    font-size: 0.875rem;
    color: #6b7280;
}

.chart-container {
    height: 300px;
    margin-bottom: 1rem;
}

.chart-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.legend-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #eab308;
    border-radius: 50%;
}

.legend-line {
    width: 1rem;
    height: 2px;
    background-color: #eab308;
}

/* Compelling Statement */
.compelling-statement {
    text-align: center;
    margin-bottom: 2rem;
}

.statement-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.statement-content {
    max-width: 4xl;
    margin: 0 auto;
}

.statement-text {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.75;
}

.statement-highlights {
    margin-top: 1rem;
}

.highlight-primary {
    font-size: 1.5rem;
    font-weight: 700;
    color: #eab308;
    margin-bottom: 0.5rem;
}

.highlight-secondary {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

/* Strategic CTA */
.strategic-cta {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #eab308;
    margin-bottom: 1rem;
}

.cta-description {
    color: #d1d5db;
    margin-bottom: 1rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.benefit-icon {
    color: #eab308;
}

.cta-form {
    display: flex;
    gap: 0.75rem;
    max-width: 24rem;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.cta-form button {
    background-color: #eab308;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.cta-form button:hover {
    background-color: #d97706;
}

/* Holdings Section */
.holdings-section {
    margin-bottom: 2rem;
}

.holdings-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.holdings-list {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.holding-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
}

.holding-item:hover {
    background-color: #f9fafb;
}

.holding-item:last-child {
    border-bottom: none;
}

.holding-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.holding-logo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.holding-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.holding-info p {
    font-size: 0.875rem;
    color: #6b7280;
}

.holding-right {
    text-align: right;
}

.holding-value {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.holding-change {
    font-size: 0.875rem;
    font-weight: 500;
}

.holding-change.positive {
    color: #eab308;
}

.holding-change.negative {
    color: #ef4444;
}

/* News and Social Section */
.news-social-section {
    margin-bottom: 2rem;
}

.news-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-section, .social-section {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.news-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-btn {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #f3f4f6;
    color: #6b7280;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.tab-btn.active {
    background-color: #eab308;
    color: #000;
}

.news-item, .tweet-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.news-item:last-child, .tweet-item:last-child {
    border-bottom: none;
}

.news-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-meta {
    font-size: 0.875rem;
    color: #6b7280;
}

.tweet-text {
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.tweet-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.view-more-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #f3f4f6;
    border: none;
    border-radius: 0.5rem;
    color: #1f2937;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.2s;
}

.view-more-btn:hover {
    background-color: #e5e7eb;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.newsletter-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.newsletter-intro {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.newsletter-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 1.125rem;
}

.feature-item p {
    color: #374151;
    font-weight: 500;
}

.inner-circle-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.inner-circle-description {
    color: #374151;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.benefit-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: #eab308;
}

.edge-statement {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.access-instruction {
    color: #374151;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: white;
}

.newsletter-form button {
    background-color: #eab308;
    color: #000;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: #d97706;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #6b7280;
    font-size: 0.875rem;
    border-top: 1px solid #f3f4f6;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.modal-content button {
    background-color: #eab308;
    color: #000;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wealth-amount {
        font-size: 2rem;
    }
    
    .statement-title {
        font-size: 1.875rem;
    }
    
    .news-social-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-form, .newsletter-form {
        flex-direction: column;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-features, .benefits-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .header-content {
        padding: 0 0.5rem;
    }
    
    .main-content {
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem;
    }
    
    .wealth-amount {
        font-size: 1.75rem;
    }
    
    .statement-title {
        font-size: 1.5rem;
    }
    
    .holding-left {
        gap: 0.75rem;
    }
    
    .holding-logo {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

