/* Modern CSS Variables */
:root {
    /* Colors */
    --primary-blue: #007aff;
    --primary-magenta: #ff006e;
    --primary-gradient: linear-gradient(135deg, #007aff 0%, #ff006e 100%);
    --secondary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --accent-color: #007aff;
    --success-color: #00ff88;
    --text-light: #ffffff;

    /* Backgrounds */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.1);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-tertiary: #b3b3b3;
    --text-muted: #888888;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 32px rgba(0, 122, 255, 0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
}

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

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ANTI-OVERLAP RULES - CRITICAL */
main, section, div, article {
    position: static !important;
    z-index: auto !important;
}

/* Exceptions for elements that need special positioning */
.header,
.modal,
.back-to-top,
.floating-cta,
.mobile-menu,
.timeline-container,
.timeline-item,
.timeline-container::before,
.timeline-item::before,
.timeline-chart,
.timeline-line,
.growth-line,
.startup-line,
.moderate-line,
.point-marker,
.projection-card,
.result-card,
.tweet-card,
.hero::before,
.hero::after {
    /* These can have special positioning */
}

/* Modern Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(0, 122, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 122, 255, 0.3));
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #007aff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #aaa;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #007aff;
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 0.8rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    z-index: 1600;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 1500;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(0, 122, 255, 0.2);
    display: none;
}

.mobile-menu.active {
    display: block;
    right: 0;
}

/* Removed duplicate rule */

.mobile-menu-content {
    padding: 100px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-menu-link:hover {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: translateX(5px);
}

.mobile-menu-link i {
    font-size: 1.2rem;
    color: #007aff;
}

.mobile-menu-social {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-social-link:hover {
    transform: translateY(-3px);
}

.mobile-social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.mobile-social-link.instagram:hover {
    background: linear-gradient(45deg, #e4405f, #fd1d1d);
    border-color: #e4405f;
}

.mobile-social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.mobile-social-link.email:hover {
    background: #007aff;
    border-color: #007aff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #007aff, #0056cc);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.6);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-logo {
    height: 80px;
    width: auto;
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #007aff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 122, 255, 0.3);
    border-top: 3px solid #007aff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Modern Buttons */
.btn {
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-decoration: none;
    font-size: var(--text-base);
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 122, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-magenta), #e91e63);
    color: var(--text-primary);
    box-shadow: var(--shadow-md), 0 0 32px rgba(255, 0, 110, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px) scale(1.02);
    backdrop-filter: blur(10px);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

/* Download button specific styling */
.btn-secondary i.fa-download {
    animation: downloadPulse 2s infinite;
}

@keyframes downloadPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.btn-outline {
    background: var(--bg-glass);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--text-primary);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
    border-radius: var(--radius-lg);
}

.btn-xl {
    padding: var(--space-xl) var(--space-3xl);
    font-size: var(--text-xl);
    border-radius: var(--radius-xl);
    font-weight: 700;
}

/* Modern Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 122, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 110, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(0, 122, 255, 0.03) 60deg,
            transparent 120deg,
            rgba(255, 0, 110, 0.02) 180deg,
            transparent 240deg,
            rgba(0, 122, 255, 0.03) 300deg,
            transparent 360deg);
    animation: rotate 60s linear infinite;
    z-index: 0;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
}

/* Hero Header */
.hero-header {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    display: block;
    background: linear-gradient(45deg, #007aff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Hero Projection */
.hero-projection {
    width: 100%;
    max-width: 900px;
}

/* Hero CTA */
.hero-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-main {
    font-size: 1.3rem;
    padding: 20px 50px;
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
    transition: all 0.3s ease;
}

.cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.6);
}

.cta-subtitle {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
}

/* Modern Projection Card */
.projection-card {
    background: linear-gradient(135deg,
        rgba(0, 122, 255, 0.1) 0%,
        rgba(255, 0, 110, 0.05) 50%,
        rgba(0, 122, 255, 0.08) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow:
        var(--shadow-xl),
        0 0 80px rgba(0, 122, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.projection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.projection-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(0, 122, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.projection-header {
    text-align: center;
    margin-bottom: 35px;
}

.projection-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #007aff, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

.projection-card h3 {
    font-size: 2rem;
    margin-bottom: 0;
    background: linear-gradient(45deg, #007aff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
    line-height: 1.2;
}

.projection-table {
    display: grid;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    min-width: 100%;
}

.projection-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1.2fr;
    gap: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.projection-row:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 122, 255, 0.3);
}

.projection-row.header {
    background: linear-gradient(45deg, rgba(0, 122, 255, 0.3), rgba(255, 0, 110, 0.2));
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    border: 1px solid rgba(0, 122, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.projection-row.header:hover {
    transform: none;
}

.projection-row.highlight-row {
    background: linear-gradient(45deg, rgba(0, 122, 255, 0.15), rgba(0, 122, 255, 0.05));
    border: 2px solid rgba(0, 122, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.2);
}

.projection-row.ultimate {
    background: linear-gradient(45deg, rgba(255, 0, 110, 0.2), rgba(255, 0, 110, 0.1));
    border: 2px solid rgba(255, 0, 110, 0.5);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.projection-row span {
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.target-label {
    font-weight: 700;
    color: #ffffff;
}

.target-label i {
    color: #007aff;
    font-size: 0.9rem;
}

.price-value {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #ffd700;
}

.value-brl {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.05rem;
}

.roi-positive {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.roi-ultimate {
    color: #ff006e;
    font-weight: 800;
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.7);
    animation: pulse 2s ease-in-out infinite;
}

.projection-footer {
    margin-top: 25px;
}

.projection-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.projection-stats .stat-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.projection-stats .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 4px;
}

.projection-stats .stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #007aff;
}

.projection-note {
    font-size: 0.85rem;
    color: #e0e0e0;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border-left: 3px solid #007aff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.4;
}

.projection-note i {
    color: #007aff;
    font-size: 1rem;
}

/* Projection Row States */
.projection-row.active {
    background: rgba(0, 122, 255, 0.2) !important;
    border-color: rgba(0, 122, 255, 0.6) !important;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.4) !important;
}

.projection-row:not(.header) {
    cursor: pointer;
    user-select: none;
}

/* Projection Tooltip */
.projection-tooltip {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 2px solid rgba(0, 122, 255, 0.4);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.3s ease-out;
    max-width: 300px;
}

.tooltip-content h4 {
    color: #007aff;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 700;
}

.tooltip-content p {
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.tooltip-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* Enhanced projection table animations */
@keyframes projectionGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 122, 255, 0.6);
    }
}

.projection-row.ultimate {
    animation: projectionGlow 3s ease-in-out infinite;
}

/* Responsive projection table */
@media (max-width: 768px) {
    .projection-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .projection-stats .stat-item {
        padding: 8px;
    }

    .projection-tooltip {
        max-width: 250px;
        padding: 15px;
    }
}

/* Section Transitions - NO OVERLAPPING */
section {
    display: block;
    width: 100%;
    position: static !important;
    z-index: auto !important;
    margin: 0 !important;
    clear: both;
}

/* Ensure NO overlapping - but allow timeline positioning */
.hero,
.results,
.methodology,
.reports,
.investment-cta,
.footer {
    position: static !important;
    z-index: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Timeline section needs relative positioning for its children */
.timeline {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Modern Results Section */
.results {
    background: var(--bg-gradient-dark);
    padding: 80px 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Performance Overview */
.performance-overview {
    margin-bottom: 60px;
}

.overview-card.main {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card.main:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 122, 255, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-header i {
    font-size: 2rem;
    background: linear-gradient(135deg, #007aff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-highlight {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.highlight-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #2b8cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    position: relative;
}

.highlight-number::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.2), transparent 70%);
    z-index: -1;
    animation: pulse 2s infinite;
}

.highlight-period {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.card-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.metric:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-value.positive {
    background: linear-gradient(135deg, #00ff88, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Portfolio Performance */
.portfolio-performance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.portfolio-card.startup {
    background: linear-gradient(135deg, rgba(43, 140, 255, 0.1), rgba(0, 0, 0, 0.2));
}

.portfolio-card.moderate {
    background: linear-gradient(135deg, rgba(255, 43, 140, 0.1), rgba(0, 0, 0, 0.2));
}

.header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.startup .header-icon {
    background: rgba(43, 140, 255, 0.2);
    color: #2b8cff;
}

.moderate .header-icon {
    background: rgba(255, 43, 140, 0.2);
    color: #ff2b8c;
}

.header-text {
    flex-grow: 1;
    margin-left: 16px;
}

.header-text h3 {
    margin: 0;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-type {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.performance-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ff88;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .performance-badge {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.performance-chart {
    margin: 30px 0;
    position: relative;
}

.chart-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    margin: 20px 0;
    overflow: hidden;
}

.progress-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(var(--progress) * 0.4%);
    max-width: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
    border-radius: 4px;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.chart-values {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.value {
    text-align: center;
}

.value .label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.value .amount {
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.value.current .amount {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.key-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.key-metrics .metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.key-metrics .metric:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.metric-info {
    text-align: left;
}

.metric-info .label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.metric-info .value {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

/* Advanced Metrics */
.advanced-metrics {
    margin: 60px 0;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.metric-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.metric-box .metric-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.metric-box:hover .metric-icon {
    transform: scale(1.1);
}

.metric-box .metric-content {
    flex-grow: 1;
}

.metric-box .metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-box .metric-label {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 4px;
}

.metric-box .metric-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Risk Management */
.risk-management {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.risk-management h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.risk-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.risk-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.risk-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.risk-item:hover i {
    transform: scale(1.1);
}

.risk-item h4 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.risk-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Results CTA */
.results-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(43, 140, 255, 0.1), rgba(255, 43, 140, 0.1));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.results-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.results-cta p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-metrics {
        grid-template-columns: 1fr;
    }

    .portfolio-performance {
        grid-template-columns: 1fr;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .highlight-number {
        font-size: 3rem;
    }

    .card-header h3 {
        font-size: 1.6rem;
    }

    .portfolio-card {
        padding: 20px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes timelineProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes timelineGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
}

/* Methodology Section */
.methodology {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, rgba(255, 0, 110, 0.6) 50%, transparent 100%) 1;
}

/* Methodology Overview */
.methodology-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.overview-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(0, 122, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.overview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 122, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.1);
}

.overview-icon {
    font-size: 3rem;
    color: #007aff;
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.overview-card p {
    color: #cccccc;
    line-height: 1.6;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step.enhanced {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step.enhanced:hover {
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-3px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #007aff, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #007aff;
    font-weight: 700;
}

.step-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(0, 122, 255, 0.2);
    color: #4da6ff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 122, 255, 0.3);
}

/* Methodology Stats */
.methodology-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 122, 255, 0.4);
}

.stat-icon {
    font-size: 2.5rem;
    color: #007aff;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.stat-label {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

.methodology-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Timeline Section */
.timeline {
    padding: 100px 0 140px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, rgba(0, 122, 255, 0.8) 50%, transparent 100%) 1;
    position: relative;
    overflow: hidden;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.timeline-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.timeline-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.timeline-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #007aff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 122, 255, 0.3);
}

.timeline-stat .stat-label {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Central Timeline Line - Main Visual Guide */
.timeline-progress {
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 60px;
    width: 8px;
    background: linear-gradient(to bottom, 
        #007aff 0%,
        #00ff88 25%,
        #ffa500 50%,
        #ff006e 75%,
        #007aff 100%
    );
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 1;
    box-shadow: 
        0 0 30px rgba(0, 122, 255, 0.8),
        0 0 60px rgba(0, 255, 136, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Animated Progress Bar */
.timeline-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, 
        #007aff 0%,
        #00ff88 30%,
        #ffa500 60%,
        #ff006e 100%
    );
    border-radius: 3px;
    animation: timelineProgress 4s ease-out forwards;
    box-shadow: 
        0 0 30px rgba(0, 122, 255, 0.6),
        0 0 60px rgba(0, 255, 136, 0.3);
}

@keyframes timelineProgress {
    from { height: 0%; }
    to { height: 100%; }
}

.timeline-item {
    position: relative;
    margin-bottom: 120px;
    width: 90%;
    padding-left: 3vw !important;
    padding-right: 3vw !important;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 100px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 55%;
    padding-left: 100px;
    text-align: left;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 250px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05), rgba(255, 0, 110, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.timeline-item:hover .timeline-content::before {
    opacity: 1;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.timeline-badge.start {
    background: linear-gradient(135deg, #007aff, #4da6ff);
    color: white;
}

.timeline-badge.success {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: white;
}

.timeline-badge.strategy {
    background: linear-gradient(135deg, #ff006e, #cc0055);
    color: white;
}

.timeline-badge.growth {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: white;
}

.timeline-badge.correction {
    background: linear-gradient(135deg, #666, #888);
    color: white;
}

.timeline-badge.breakthrough {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.timeline-badge.current {
    background: linear-gradient(135deg, #007aff, #ff006e);
    color: white;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(0, 122, 255, 0.5); }
    to { box-shadow: 0 0 20px rgba(255, 0, 110, 0.5); }
}

.timeline-content h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.timeline-content p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.timeline-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-content.expanded .timeline-details {
    max-height: 200px;
    opacity: 1;
}

.timeline-content {
    cursor: pointer;
}

.timeline-content::after {
    content: '▼';
    position: absolute;
    top: 15px;
    right: 20px;
    color: #007aff;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.timeline-content.expanded::after {
    transform: rotate(180deg);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaaaaa;
    font-size: 0.9rem;
}

.detail-item i {
    color: #007aff;
    width: 16px;
    text-align: center;
}

.timeline-cta {
    margin-top: 25px;
    text-align: center;
}

.timeline-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007aff, #ff006e);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.timeline-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.3);
}

/* Date positioning */
.timeline-item::after {
    content: attr(data-date);
    position: absolute;
    top: 25px;
    font-size: 0.85rem;
    color: #007aff;
    font-weight: 600;
    background: rgba(0, 122, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    white-space: nowrap;
}

.timeline-item:nth-child(odd)::after {
    right: -120px;
}

.timeline-item:nth-child(even)::after {
    left: -120px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .timeline-stats {
        gap: 30px;
    }

    .timeline-stat .stat-number {
        font-size: 2rem;
    }

    .timeline-container {
        padding: 0 20px;
    }

    .timeline-progress {
        left: 50px;
        transform: none;
        width: 6px;
        top: 20px;
        bottom: 20px;
    }

    .timeline-progress-glow {
        left: 50px;
        transform: none;
        width: 18px;
        top: 20px;
        bottom: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 120px !important;
        padding-right: 30px !important;
        text-align: left !important;
        margin-bottom: 100px;
    }

    .timeline-content {
        padding: 35px;
        min-height: 180px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .timeline-details {
        gap: 10px;
    }

    .detail-item {
        font-size: 0.85rem;
    }

    .timeline-portfolios {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dual-portfolio-performance {
        flex-direction: column;
        gap: 20px;
    }

    .strategy-flow {
        flex-direction: column;
        gap: 15px;
    }

    .strategy-arrow {
        transform: rotate(90deg);
    }

    .risk-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-item::before {
        display: none;
    }
}

/* Reports Section */
.reports {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, rgba(255, 0, 110, 0.6) 50%, transparent 100%) 1;
}

/* Douglas Profile */
.douglas-profile {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 80px;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #007aff, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

.profile-info {
    flex: 1;
    min-width: 300px;
}

.profile-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #007aff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-title {
    font-size: 1.2rem;
    color: #007aff;
    font-weight: 600;
    margin-bottom: 15px;
}

.profile-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.profile-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 122, 255, 0.4);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #e4405f, #fd1d1d);
    color: white;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.email:hover {
    background: #007aff;
    color: white;
}

.tweets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Modern Tweet Cards */
.tweet-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: var(--bg-glass);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: var(--shadow-sm);
}

.tweet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
}

.tweet-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(0, 122, 255, 0.4);
    box-shadow:
        var(--shadow-xl),
        0 0 60px rgba(0, 122, 255, 0.25);
    background: var(--bg-glass-hover);
}

.tweet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 122, 255, 0.95) 0%,
        rgba(255, 0, 110, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    backdrop-filter: blur(8px);
}

.tweet-card:hover .tweet-overlay {
    opacity: 1;
}

.tweet-overlay i {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    animation: bounce 2s infinite;
}

.tweet-overlay span {
    font-weight: 600;
    font-size: var(--text-base);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tweet-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tweet-card:hover img {
    transform: scale(1.08);
}

/* Investment CTA Section */
.investment-cta {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
    background-image: radial-gradient(ellipse at center, rgba(0, 122, 255, 0.1) 0%, rgba(255, 0, 110, 0.05) 50%, transparent 100%);
    text-align: center;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, rgba(0, 122, 255, 0.8) 25%, rgba(255, 0, 110, 0.8) 75%, transparent 100%) 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
}

.trust-item i {
    color: #007aff;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    border-top: 2px solid rgba(0, 122, 255, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(0, 122, 255, 0.3));
}

.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #007aff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #007aff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #007aff;
    transform: translateX(5px);
}

.footer-section a i {
    font-size: 1rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-disclaimer {
    flex: 1;
    min-width: 300px;
}

.disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #007aff;
}

.footer-copyright {
    text-align: right;
    color: #888;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin-bottom: 5px;
}

.footer-copyright a {
    color: #007aff;
    text-decoration: none;
}

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

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 5% auto;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 1px solid rgba(0, 122, 255, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #007aff;
}

#tweetImage {
    width: 100%;
    height: auto;
    border-radius: 8px;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .chart-bars {
        height: 150px;
    }

    .methodology-overview {
        grid-template-columns: 1fr;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .profile-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-item {
        width: 98%;
        padding-left: 2vw !important;
        padding-right: 2vw !important;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .brand-info {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .highlight {
        font-size: 1.8rem;
    }

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

    .cta-main {
        font-size: 1.1rem;
        padding: 16px 32px;
    }

    .projection-card {
        padding: 20px;
    }

    .projection-row {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
        padding: 16px;
        background: rgba(255, 255, 255, 0.08);
    }

    .projection-row span {
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .projection-row span:last-child {
        border-bottom: none;
    }

    .projection-row.header span {
        font-weight: 700;
        color: #007aff;
        text-transform: uppercase;
        font-size: 0.9rem;
    }

    .performance-chart {
        padding: 30px 20px;
    }

    .chart-header h3 {
        font-size: 1.5rem;
    }

    .chart-legend {
        gap: 20px;
    }

    .timeline-chart {
        padding: 25px 15px;
    }

    .timeline-axis {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }

    .timeline-line {
        display: none;
    }

    .performance-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .metric-values {
        justify-content: center;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-card {
        padding: 25px;
    }

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

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

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step.enhanced {
        padding: 20px;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item::before {
        left: -40px !important;
        right: auto !important;
        font-size: 0.8rem;
    }

    .douglas-profile {
        padding: 25px;
    }

    .profile-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .profile-social {
        justify-content: center;
    }

    .tweets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

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

    .highlight {
        font-size: 1.5rem;
    }

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

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

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

    .avatar-placeholder {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .profile-info h3 {
        font-size: 1.5rem;
    }
}

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 122, 255, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Apply animations */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.result-card {
    animation: scaleIn 0.6s ease-out;
}

.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.2s; }
.result-card:nth-child(3) { animation-delay: 0.3s; }
.result-card:nth-child(4) { animation-delay: 0.4s; }

.step {
    animation: slideInLeft 0.6s ease-out;
}

.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.4s; }

.timeline-item:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out;
}

.timeline-item:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

.tweet-card {
    animation: scaleIn 0.5s ease-out;
}

.tweet-card:nth-child(1) { animation-delay: 0.1s; }
.tweet-card:nth-child(2) { animation-delay: 0.15s; }
.tweet-card:nth-child(3) { animation-delay: 0.2s; }
.tweet-card:nth-child(4) { animation-delay: 0.25s; }
.tweet-card:nth-child(5) { animation-delay: 0.3s; }
.tweet-card:nth-child(6) { animation-delay: 0.35s; }
.tweet-card:nth-child(7) { animation-delay: 0.4s; }
.tweet-card:nth-child(8) { animation-delay: 0.45s; }

/* Floating elements */
.logo {
    animation: float 3s ease-in-out infinite;
}

.step-number {
    animation: pulse 2s ease-in-out infinite;
}

/* Gradient animations */
.brand-name,
.section-title,
.footer-brand-name {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* Glow effects */
.btn-primary:hover {
    animation: glow 1s ease-in-out infinite alternate;
}

.result-card.premium:hover {
    animation: glow 1s ease-in-out infinite alternate;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #007aff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-8px);
    }
    70% {
        transform: translateY(-4px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 122, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 122, 255, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Modern Interactive Elements */
.modern-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.modern-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

.modern-cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(0, 122, 255, 0.1);
    border-color: var(--primary-magenta);
}

.modern-cursor-dot.hover {
    width: 8px;
    height: 8px;
    background: var(--primary-magenta);
}

/* Enhanced Hover Effects */
.btn, .result-card, .tweet-card, .projection-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    filter: brightness(1.1);
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Focus States */
button:focus,
a:focus,
input:focus,
select:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s infinite;
}

/* Micro-interactions */
.result-card:active {
    transform: translateY(-4px) scale(0.98);
}

.btn:active {
    transform: translateY(1px) scale(0.98);
}

/* Scroll Indicators */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform-origin: left;
    z-index: 1001;
    transition: transform 0.1s ease;
}

/* Parallax effect */
.hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Enhanced hover effects */
.nav-link,
.social-link,
.footer-section a {
    position: relative;
    overflow: hidden;
}

.nav-link::before,
.social-link::before,
.footer-section a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #007aff, #ff006e);
    transition: left 0.3s ease;
}

.nav-link:hover::before,
.social-link:hover::before,
.footer-section a:hover::before {
    left: 0;
}

/* Enhanced Timeline Styles */

/* Enhanced Timeline Overview */
.timeline-overview {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.timeline-metric {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.timeline-metric:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.08);
}

.timeline-metric.featured {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2), rgba(255, 0, 110, 0.2));
    border: 1px solid rgba(0, 122, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.2);
}

.timeline-metric .metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
}

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

.timeline-metric .metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.timeline-metric .metric-label {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 2px;
}

/* Timeline Navigation */
.timeline-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.timeline-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.timeline-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.timeline-nav-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
}

/* Enhanced Timeline Progress */
.timeline-progress-glow {
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background: linear-gradient(to bottom, 
        rgba(0, 122, 255, 0.8),
        rgba(0, 255, 136, 0.8),
        rgba(255, 165, 0, 0.6),
        rgba(255, 0, 110, 0.8)
    );
    border-radius: 12px;
    filter: blur(15px);
    animation: timelineGlow 3s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes timelineGlow {
    0%, 100% { 
        opacity: 0.8;
        filter: blur(12px);
    }
    50% { 
        opacity: 1;
        filter: blur(15px);
    }
}

/* Enhanced Marker Design */
.marker-icon {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 0 40px rgba(0, 122, 255, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: markerPulse 2s infinite;
    opacity: 0.3;
}

.success-pulse { background: linear-gradient(135deg, #00b894, #00a085); }
.strategy-pulse { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.growth-pulse { background: linear-gradient(135deg, #fdcb6e, #e17055); }
.correction-pulse { background: linear-gradient(135deg, #fd79a8, #e84393); }
.breakthrough-pulse { background: linear-gradient(135deg, #00b894, #00cec9); }
.current-pulse { background: var(--primary-gradient); }

@keyframes markerPulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Enhanced Content Design */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timeline-date {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Portfolio Cards */
.timeline-portfolios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.portfolio-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.startup-portfolio { border-left: 4px solid #007aff; }
.moderate-portfolio { border-left: 4px solid #00d4aa; }

.portfolio-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.portfolio-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.portfolio-strategy {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* Performance Card */
.performance-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.performance-metrics .metric {
    text-align: center;
}

.performance-metrics .metric.featured {
    background: rgba(0, 122, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 15px;
}

.performance-metrics .metric-label {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.performance-metrics .metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.performance-metrics .metric-value.growth { color: #00b894; }
.performance-metrics .metric-value.positive { color: #00d4aa; }

.performance-percentage {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00b894, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Strategy Flow */
.strategy-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
    gap: 20px;
}

.token-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.token-card.exit {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.token-card.entry {
    background: rgba(0, 184, 148, 0.1);
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.token-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.token-name {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.token-type {
    display: block;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.action-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategy-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--primary-blue);
}

.strategy-arrow i {
    font-size: 1.5rem;
}

/* Portfolio Performance */
.dual-portfolio-performance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.portfolio-performance {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.perf-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.perf-chart {
    margin: 20px 0;
}

.chart-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.bar-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    transition: width 2s ease;
}

.chart-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.chart-values .initial {
    color: var(--text-tertiary);
}

.chart-values .current {
    color: var(--primary-blue);
    font-weight: 600;
}

.perf-gain {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00b894, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Top Tokens */
.top-tokens {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.token-performance {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.token-performance .token {
    font-weight: 600;
    color: var(--text-primary);
}

.token-performance .performance.positive {
    color: #00d4aa;
    font-weight: 700;
}

/* Risk Comparison */
.risk-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.comparison-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.market {
    border-left: 4px solid #ff6b6b;
}

.comparison-card.portfolio {
    border-left: 4px solid #00b894;
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.comparison-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.comparison-value.negative {
    color: #ff6b6b;
}

.comparison-value.protected {
    color: #00b894;
}

.vs-indicator {
    font-weight: 800;
    color: var(--text-tertiary);
    font-size: 1.2rem;
}

/* Enhanced Detail Groups */
.detail-group {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-blue);
}

.detail-group h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.detail-item.highlighted {
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.detail-label {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 80px;
}

/* Milestone Achievement */
.milestone-achievement {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.achievement-title h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.final-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
}

.result-portfolio {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    gap: 15px;
}

.initial-amount {
    color: var(--text-tertiary);
    font-weight: 600;
}

.final-amount {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.2rem;
}

.result-flow .arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--primary-blue);
}

.profit-amount {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #00d4aa;
}

.achievement-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.summary-metric {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.summary-metric .metric-label {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.summary-metric .metric-value {
    font-weight: 700;
    color: var(--text-primary);
}

/* Future Roadmap */
.future-roadmap {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roadmap-header {
    margin-bottom: 25px;
}

.roadmap-header h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.roadmap-items {
    display: grid;
    gap: 20px;
}

.roadmap-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-blue);
}

.item-number {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.item-content h6 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-primary);
}

.item-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Enhanced CTA */
.timeline-cta-enhanced {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

.cta-content {
    margin-bottom: 25px;
}

.cta-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.enhanced {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary.enhanced:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Timeline Controls */
.timeline-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
}

/* Media Queries for Enhanced Timeline */
@media (max-width: 768px) {
    .timeline-overview {
        gap: 20px;
    }
    
    .timeline-metric {
        min-width: 150px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-metric .metric-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-portfolios {
        grid-template-columns: 1fr;
    }
    
    .dual-portfolio-performance {
        grid-template-columns: 1fr;
    }
    
    .final-results {
        grid-template-columns: 1fr;
    }
    
    .achievement-summary {
        grid-template-columns: 1fr;
    }
    
    .strategy-flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .risk-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-controls {
        flex-direction: column;
        align-items: center;
    }
}
