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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #64748b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--gray-50);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s;
    z-index: 1001;
}

.nav-brand:hover {
    transform: scale(1.02);
}

.nav-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 0.75rem;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    transition: all 0.3s;
}

.nav-brand:hover .nav-icon {
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    transform: rotate(5deg);
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.938rem;
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-link.active {
    color: var(--primary);
    background: #dbeafe;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-900);
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    margin-top: 0.5rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: var(--gray-200);
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2.5px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

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

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    animation: slideDown 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

.mobile-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 2rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.mobile-link:hover {
    background: var(--gray-50);
    color: var(--primary);
    border-left-color: var(--primary);
}

.mobile-link.active {
    background: #dbeafe;
    color: var(--primary);
    border-left-color: var(--primary);
}

.mobile-btn {
    margin: 1rem 2rem;
}

.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, #dbeafe 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge-icon {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.stocks-section {
    padding: 5rem 0;
}

.stocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stock-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    cursor: pointer;
}

.stock-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: #bfdbfe;
    transform: translateY(-4px);
}

.stock-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.stock-icon {
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: transform 0.3s;
}

.stock-card:hover .stock-icon {
    transform: scale(1.1);
}

.stock-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.tesla-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.spacex-icon {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
}

.x-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.starlink-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.neuralink-icon {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.boring-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-public {
    background: #d1fae5;
    color: #065f46;
}

.badge-private {
    background: var(--gray-100);
    color: var(--gray-700);
}

.badge-sector {
    background: #dbeafe;
    color: var(--primary);
}

.stock-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.stock-ticker {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stock-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stock-metrics {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.metric-value.positive {
    color: var(--success);
}

.stock-highlights {
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: var(--success);
    flex-shrink: 0;
}

.stock-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.stock-card:hover .stock-link {
    transform: translateX(0.25rem);
}

.stock-link svg {
    width: 1rem;
    height: 1rem;
}

.features-section {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-brand-name {
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-description {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.social-link:hover {
    color: white;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    color: var(--gray-400);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.company-hero {
    padding: 3rem 0 5rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, #dbeafe 100%);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary);
}

.back-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.company-icon-large {
    width: 6rem;
    height: 6rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-icon-large svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

.company-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.company-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.company-ticker {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
}

.company-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.metric-card-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.metric-card-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.metric-card-change {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.metric-card-change.positive {
    color: var(--success);
}

.company-content {
    padding: 5rem 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 24rem;
    gap: 3rem;
}

.content-section {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.section-text {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.segments-grid {
    display: grid;
    gap: 1.5rem;
}

.segment-card {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
}

.segment-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.segment-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.segment-stat {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.highlights-list {
    display: grid;
    gap: 1rem;
}

.highlight-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
}

.highlight-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
}

.highlight-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: var(--gray-600);
    line-height: 1.6;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.financial-card {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
}

.financial-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.financial-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.financial-change {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.financial-change.positive {
    color: var(--success);
}

.catalysts-grid {
    display: grid;
    gap: 1.5rem;
}

.catalyst-item {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary);
}

.catalyst-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.catalyst-text {
    color: var(--gray-600);
    line-height: 1.6;
}

.risks-list {
    display: grid;
    gap: 1rem;
}

.risk-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.risk-badge {
    padding: 0.25rem 0.75rem;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.risk-text {
    color: var(--gray-600);
    line-height: 1.6;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.fact-list {
    display: grid;
    gap: 0.75rem;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.fact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fact-label {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.fact-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.875rem;
}

.rating-content {
    text-align: center;
}

.rating-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.rating-label {
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1rem;
}

.rating-bar {
    height: 0.5rem;
    background: var(--gray-200);
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.rating-fill {
    height: 100%;
    background: var(--primary);
}

.rating-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.target-list {
    display: grid;
    gap: 0.75rem;
}

.target-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.target-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.target-value {
    font-weight: 700;
    color: var(--gray-900);
}

.target-value.current {
    color: var(--primary);
}

.related-list {
    display: grid;
    gap: 0.5rem;
}

.related-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--gray-900);
    transition: all 0.2s;
}

.related-item:hover {
    background: var(--gray-100);
}

.related-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--gray-400);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

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

.sidebar-cta .cta-text {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.sidebar-cta .btn-primary {
    background: white;
    color: var(--primary);
}

.sidebar-cta .btn-primary:hover {
    background: var(--gray-100);
}

.sidebar-cta .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, #dbeafe 100%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

.analysis-section {
    padding: 5rem 0;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.analysis-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.analysis-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.analysis-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.analysis-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.analysis-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.analysis-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.analysis-excerpt {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.analysis-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.research-reports {
    margin-bottom: 5rem;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.reports-list {
    display: grid;
    gap: 1.5rem;
}

.report-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.report-icon {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.report-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.report-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.report-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.analysts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.analyst-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.analyst-avatar {
    width: 5rem;
    height: 5rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.analyst-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.analyst-title {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.analyst-bio {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

.insights-section {
    padding: 3rem 0 5rem;
}

.insights-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.insight-highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.insight-highlight-card.urgent {
    border-left-color: var(--danger);
}

.insight-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.insight-highlight-card.urgent .insight-badge {
    background: #fee2e2;
    color: var(--danger);
}

.insight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.insight-text {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.insight-time {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.insights-layout {
    display: grid;
    grid-template-columns: 1fr 24rem;
    gap: 3rem;
}

.insight-article {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

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

.article-category {
    padding: 0.25rem 0.75rem;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-date {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.article-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.trending-list {
    display: grid;
    gap: 0.75rem;
}

.trending-item {
    display: grid;
    grid-template-columns: 2rem 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.trending-rank {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.trending-topic {
    font-weight: 500;
    color: var(--gray-900);
}

.trending-count {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.sentiment-meter {
    text-align: center;
}

.sentiment-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.sentiment-label {
    font-weight: 600;
    color: var(--gray-900);
}

.sentiment-percentage {
    font-size: 1.5rem;
    font-weight: 800;
}

.sentiment-percentage.bullish,
.sentiment-label.bullish {
    color: var(--success);
}

.sentiment-bar {
    height: 0.75rem;
    background: var(--gray-200);
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.sentiment-fill {
    height: 100%;
}

.sentiment-fill.bullish {
    background: var(--success);
}

.sentiment-description {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.events-list {
    display: grid;
    gap: 1rem;
}

.event-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.event-date {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-day {
    font-size: 1.25rem;
    font-weight: 700;
}

.event-month {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.event-location {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-widget .widget-title {
    color: white;
}

.widget-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.input-email {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.input-email:focus {
    outline: 2px solid white;
}

.cta-widget .btn-primary {
    background: white;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats,
    .stocks-grid,
    .features-grid,
    .analysts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-layout,
    .insights-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .company-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats,
    .stocks-grid,
    .features-grid,
    .analysis-grid,
    .insights-highlights,
    .analysts-grid {
        grid-template-columns: 1fr;
    }

    .company-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-title {
        font-size: 2rem;
    }

    .company-metrics-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }
}

/* Investment Thesis Section */
.investment-thesis-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid #bae6fd;
}

.thesis-intro {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #7dd3fc;
}

.thesis-intro .section-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.8;
}

.thesis-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thesis-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thesis-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.thesis-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.thesis-content {
    flex: 1;
}

.thesis-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.thesis-text {
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.thesis-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.thesis-metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thesis-metric .metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.thesis-metric .metric-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.investment-action {
    margin-top: 2.5rem;
}

.action-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 2.5rem;
    color: white;
}

.action-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.action-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.action-suitability {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

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

.suitability-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.suitability-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.suitability-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Responsive Design for Investment Thesis */
@media (max-width: 768px) {
    .investment-thesis-section {
        padding: 2rem 1.5rem;
    }

    .thesis-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .thesis-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .thesis-title {
        font-size: 1.15rem;
    }

    .thesis-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .thesis-metric .metric-value {
        font-size: 1.5rem;
    }

    .action-card {
        padding: 1.5rem;
    }

    .action-title {
        font-size: 1.25rem;
    }

    .action-text {
        font-size: 1rem;
    }
}

/* Investment Plans Page */
.plans-section {
    padding: 4rem 0;
}

.plans-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-top: 1rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.growth-plan {
    border-color: var(--primary);
}

.aggressive-plan {
    border-color: #7c3aed;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
}

.conservative-plan {
    border-color: #10b981;
}

.thematic-plan {
    border-color: #f59e0b;
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.plan-badge.premium {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

.plan-allocation {
    margin-bottom: 2rem;
}

.allocation-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.allocation-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.allocation-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.allocation-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.925rem;
}

.allocation-percent {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1rem;
}

.allocation-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.allocation-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.plan-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.plan-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.plan-stat .stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
}

.plan-stat .stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.plan-benefits {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.benefits-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.925rem;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.btn-plan {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-plan:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* Comparison Section */
.comparison-section {
    margin: 5rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--gray-900);
    color: white;
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.925rem;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--gray-900);
}

/* FAQ Section */
.faq-section {
    margin: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.975rem;
}

/* CTA Section */
.cta-section {
    margin: 5rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0f2fe;
}

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

.btn-cta-primary {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary);
}

.cta-disclaimer {
    font-size: 0.825rem;
    color: #bae6fd;
    margin-top: 2rem;
}

/* Responsive Design for Plans Page */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        padding: 2rem 1.5rem;
    }

    .plan-stats {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.875rem 0.5rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.about-content {
    padding: 5rem 0;
}

.mission-section,
.values-section,
.team-section,
.approach-section,
.stats-section {
    margin-bottom: 6rem;
}

.mission-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--gray-700);
    line-height: 1.7;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto 3rem;
    font-size: 1.125rem;
    color: var(--gray-700);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-avatar svg {
    width: 48px;
    height: 48px;
    color: var(--gray-400);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.approach-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.approach-text {
    color: var(--gray-700);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
}

/* Research Page Styles */
.research-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.research-content {
    padding: 4rem 0;
}

.research-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.featured-report {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.featured-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.meta-item svg {
    width: 18px;
    height: 18px;
}

.btn-download {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-download:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.report-preview {
    width: 200px;
    height: 260px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.report-preview svg {
    width: 80px;
    height: 80px;
    color: var(--gray-300);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.report-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.report-type {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.report-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.report-excerpt {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.report-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.btn-report {
    width: 100%;
    padding: 0.875rem;
    background: var(--gray-100);
    color: var(--gray-900);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-report:hover {
    background: var(--gray-200);
}

.research-subscribe {
    margin: 5rem 0;
}

.subscribe-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.subscribe-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.subscribe-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.subscribe-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tier-card {
    background: var(--gray-50);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    position: relative;
}

.featured-tier {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #7c3aed;
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #7c3aed;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.tier-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
}

.tier-price span {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-600);
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.tier-features li:last-child {
    border-bottom: none;
}

.btn-tier {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-tier:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* News Page Styles */
.news-hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

.news-content {
    padding: 4rem 0;
}

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

.news-featured {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.featured-label {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.news-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-date,
.news-category {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.news-category {
    background: var(--gray-100);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.news-excerpt {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.news-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
}

.news-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.news-item-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-item-date {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.news-item-category {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tesla-cat { background: #fecaca; color: #991b1b; }
.spacex-cat { background: #bfdbfe; color: #1e40af; }
.starlink-cat { background: #ddd6fe; color: #5b21b6; }
.neuralink-cat { background: #fbcfe8; color: #9f1239; }
.boring-cat { background: #fed7aa; color: #9a3412; }
.x-cat { background: #e5e7eb; color: #1f2937; }

.news-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.news-item-excerpt {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-item-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.news-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.sidebar-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.market-widget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.market-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.market-symbol {
    font-weight: 700;
    color: var(--gray-900);
}

.market-data {
    text-align: right;
}

.market-price {
    display: block;
    font-weight: 700;
    color: var(--gray-900);
}

.market-change {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.market-change.positive {
    color: var(--success);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

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

.event-date {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.event-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.event-time {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.newsletter-text {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.875rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.95rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-btn {
    padding: 0.875rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .values-grid,
    .team-grid,
    .approach-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .featured-content {
        grid-template-columns: 1fr;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .subscribe-tiers {
        grid-template-columns: 1fr;
    }

    .featured-tier {
        transform: none;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        position: static;
    }

    .research-filters {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}

/* FAQ Page Styles */
.faq-content {
    padding: 4rem 0;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.faq-category-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.faq-category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-detailed {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.faq-question-detailed {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-answer-detailed {
    color: var(--gray-700);
    line-height: 1.8;
}

.faq-answer-detailed p {
    margin-bottom: 1rem;
}

.faq-answer-detailed ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style: disc;
}

.faq-answer-detailed li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.faq-answer-detailed strong {
    color: var(--gray-900);
    font-weight: 600;
}

.faq-cta {
    max-width: 700px;
    margin: 5rem auto 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 3rem;
    border-radius: 16px;
    color: white;
}

.faq-cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.faq-cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #e0f2fe;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .faq-categories {
        flex-direction: column;
    }

    .faq-category-btn {
        width: 100%;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    .faq-cta-buttons .btn-cta-primary,
    .faq-cta-buttons .btn-cta-secondary {
        width: 100%;
    }
}
